style.css 490 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. * {
  2. font-family: 'Courier New', Courier, Monospace;
  3. color: #DDD;
  4. }
  5. html, body, div.container {
  6. height: 100%;
  7. }
  8. body {
  9. background: #191919;
  10. }
  11. div.console {
  12. overflow-y: hidden;
  13. height: 90%;
  14. }
  15. @media (max-width: 550px) {
  16. div.container {
  17. padding: 0.4rem;
  18. margin: 0px;
  19. }
  20. }
  21. @media (min-width: 550px) {
  22. body {
  23. background: #222;
  24. }
  25. div.console {
  26. height: 80%;
  27. background: #191919;
  28. padding: 2rem;
  29. }
  30. div.container {
  31. padding-top: 2rem;
  32. }
  33. }