moth/www/res/style.css

45 lines
676 B
CSS
Raw Normal View History

2016-04-03 21:12:48 -06:00
html {
background: rgba(61, 50, 44, 0) url(brown-lines.jpg) no-repeat center center fixed;
background-size: cover;
color: #ccb;
height: 100%;
}
2016-04-03 18:07:38 -06:00
2016-04-03 21:12:48 -06:00
body {
margin: 0;
height: 100%
}
.terminal {
2016-04-03 21:23:16 -06:00
background: rgba(80, 70, 60, 0.96);
2016-04-03 21:12:48 -06:00
display: inline-block;
margin: 1%;
border: solid black 0.2em;
border-radius: 1em 0.25em 1em 1em;
overflow: auto;
}
.terminal p {
padding: 0.25em 0.5em;
}
#overview, #messages {
width: 47%;
height: 20%;
}
#puzzles {
width: 24%;
height: 70%;
}
#main {
width: 70%;
height: 70%;
}
2016-04-03 21:23:16 -06:00
@media (max-width: 52em) {
#overview, #messages, #puzzles, #main {
width: 96%;
}
}