Files
2018-09-22 10:13:20 +08:00

64 lines
1.4 KiB
CSS

@charset "UTF-8";
/**
* Stylesheet: example.css
*
* (c) 2011-2012 Zazar Ltd
*
* Description: Stylesheet for examples
*
**/
.weatherFeed {
font-family: Arial, Helvetica, sans-serif;
font-size: 90%;
overflow: hidden;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
}
.weatherFeed a { color: #888; }
.weatherFeed a:hover {
color: #000;
text-decoration: none;
}
.weatherItem {
padding: 0.8em;
text-align: right;
}
.weatherCity { text-transform: uppercase; }
.weatherTemp {
font-size: 2.8em;
font-weight: bold;
}
.weatherDesc, .weatherCity, .weatherForecastDay { font-weight: bold; }
.weatherDesc { margin-bottom: 0.4em; }
.weatherRange, .weatherWind, .weatherLink, .weatherForecastItem { font-size: 0.8em; }
.weatherLink, .weatherForecastItem {
margin-top: 0.5em;
text-align: left;
}
.weatherForecastItem {
padding: 0.5em 0.5em 0.5em 60px;
background-color: #000;
background-position: left center;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.weatherForecastDay { font-size: 1.1em; }
.odd { background-color: #e8e8fc; }
.even { background-color: #d4d4e8; }
.day {
border: 4px solid #555;
background: #222 url(../img/bg.jpg) repeat-x;
color: #fff
}
.day a { color: #555; }
.night {
border: 4px solid #555;
background: #222 url(../img/bg.jpg) repeat-x;
}
.night a:hover { color: #fff; }