compass/style.css

51 lines
622 B
CSS
Raw Normal View History

body {
margin: 0;
height: 100vh;
width: 100vw;
background: #000;
color: #EEE;
}
.error, noscript {
color: #E00;
text-align: center;
} .error {
display: none;
}
#rose {
width: 100%;
}
@media (orientation:portrait) {
header, main, footer {
width: 90vw;
padding: 5vw;
position: absolute;
}
header {
height: calc(60vh - 60vw);
top: 0;
}
main {
height: 90vw;
top: calc(60vh - 50vw);
}
footer {
height: calc(40vh - 60vw);
bottom: 0;
}
}
@media (orientation:landscape) {
}
#error { display: none; }
a {
color: inherit;
text-decoration: underline;
} a:hover {
text-decoration: none;
}