style.css 773 B

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