style.css 935 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. header {
  2. position: fixed;
  3. width: 100%;
  4. z-index: 5;
  5. }
  6. aside {
  7. padding-top: 4em;
  8. z-index: 3; /* Make sure the sidebar is on top of the terminal */
  9. }
  10. fieldset {
  11. display: grid;
  12. grid-template-columns: repeat(auto-fit, 180px);
  13. grid-auto-rows: 1fr;
  14. justify-content: center;
  15. place-items: stretch;
  16. }
  17. main {
  18. padding-top: 4em;
  19. }
  20. dialog {
  21. border-radius: 1em;
  22. }
  23. legend {
  24. font-weight: bold;
  25. text-align: center;
  26. padding: 1em;
  27. padding-top: 1.5em;
  28. }
  29. section {
  30. padding: 0;
  31. }
  32. .display {
  33. border: 1px solid #666;
  34. padding: 1em;
  35. border-radius: .7em;
  36. box-shadow: 0 0 .6em #aaa;
  37. text-align: center;
  38. font-size: small;
  39. display: flex;
  40. flex-direction: column;
  41. flex-grow: 1;
  42. justify-content: center;
  43. align-items: center;
  44. }
  45. aside .flex-row {
  46. padding-left: 1em;
  47. padding-right: .5em;
  48. }
  49. #sidebar-toggler-button {
  50. margin-right: .5em;
  51. }
  52. div.buttons button svg {
  53. vertical-align: middle;
  54. }
  55. section.small {
  56. border-radius: .4em;
  57. }