style.css 351 B

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