berliner-winter/static/css/style.css
2015-02-07 18:45:10 +01:00

56 lines
756 B
CSS

html, body {
margin: 0;
padding: 0;
height: 100%;
font-family: 'Lora', serif;
}
*, *:before, *:after {
box-sizing: border-box;
}
body {
background: #fff;
color: #000;
}
#map {
height: 100%;
}
#year-picker {
position: absolute;
z-index: 10;
top: 6px;
right: 6px;
}
#year-picker ul {
margin: 0;
padding: 0;
list-style: none;
}
#year-picker li {
display: inline-block;
}
#year-picker a {
display: block;
width: 72px;
padding: 12px;
margin: 3px;
background: #222;
text-decoration: none;
color: #ddd;
text-align: center;
transition: background .3s ease;
}
#year-picker a:hover {
background: #333;
}
#year-picker .active a {
background: #444;
}