42 lines
686 B
CSS
42 lines
686 B
CSS
/*
|
|
Lunar-style simple portal CSS
|
|
*/
|
|
|
|
html, body {
|
|
font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
color: #222;
|
|
background-color: #ddd;
|
|
}
|
|
|
|
a, a:visited {
|
|
text-decoration: none;
|
|
color: #a22121;
|
|
}
|
|
|
|
.center {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 100%;
|
|
max-width: 700px;
|
|
text-align: center;
|
|
}
|
|
|
|
.forecastItem {
|
|
margin: 14px 0;
|
|
}
|
|
|
|
.forecastItem img {
|
|
width: 64px;
|
|
height: 64px;
|
|
}
|
|
|
|
hr {
|
|
border: none;
|
|
border-top: 1px solid #000;
|
|
}
|
|
|
|
.footer {
|
|
font-size: 12px;
|
|
margin-top: 14px;
|
|
}
|
|
|