style.css 949 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. width: 100%;
  29. }
  30. section {
  31. padding: 0;
  32. }
  33. .display {
  34. border: 1px solid #666;
  35. padding: 1em;
  36. border-radius: .7em;
  37. box-shadow: 0 0 .6em #aaa;
  38. text-align: center;
  39. font-size: small;
  40. display: flex;
  41. flex-direction: column;
  42. flex-grow: 1;
  43. justify-content: center;
  44. align-items: center;
  45. }
  46. aside .flex-row {
  47. padding-left: 1em;
  48. padding-right: .5em;
  49. }
  50. #sidebar-toggler-button {
  51. margin-right: .5em;
  52. }
  53. div.buttons button svg {
  54. vertical-align: middle;
  55. }
  56. section.small {
  57. border-radius: .4em;
  58. }