4
0

style.css 1002 B

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