style.css 675 B

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