First iteration of weather icons

This commit is contained in:
zeeZ 2011-05-09 07:07:46 +02:00 committed by FrozenCow
parent 7f5d3ab23d
commit 619485212d
6 changed files with 55 additions and 0 deletions

View file

@ -294,6 +294,39 @@
bottom: 16px;
}
/*******************
* Clock weather style
*/
.weather {
position: absolute;
top: 17px;
right: 5px;
width: 25px;
height: 23px;
display: block;
background-repeat: no-repeat;
}
.weather.sunny {
background-image: url(../images/weather_sunny.png);
}
.weather.stormy {
background-image: url(../images/weather_stormy.png);
}
.weather .thunder {
position: absolute;
top: 0;
left: 0;
right: 0;
width: 25px;
height: 25px;
display: none;
background-repeat: no-repeat;
background-image: url(../images/weather_thunder.png);
}
/*******************
* map list-specific styling
*/