| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- * {
- font-family: 'Courier New', Courier, Monospace;
- color: #DDD;
- }
- html, body, div.container {
- height: 100%;
- }
- body {
- background: #191919;
- }
- div.console {
- overflow-y: hidden;
- height: 90%;
- }
- @media (max-width: 550px) {
- div.container {
- padding: 0.4rem;
- margin: 0px;
- }
- }
- @media (min-width: 550px) {
- body {
- background: #222;
- }
- div.console {
- height: 80%;
- background: #191919;
- padding: 2rem;
- }
- div.container {
- padding-top: 2rem;
- }
- }
|