style.css 917 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. @layer components, karma, theme;
  2. header {
  3. position: fixed;
  4. width: 100%;
  5. z-index: 5;
  6. }
  7. aside {
  8. padding-top: 4em;
  9. z-index: 3; /* Make sure the sidebar is on top of the terminal */
  10. }
  11. main {
  12. padding-top: 4em;
  13. }
  14. dialog {
  15. border-radius: 1em;
  16. }
  17. section {
  18. padding: 0;
  19. }
  20. aside .flex-row {
  21. padding-left: 1em;
  22. padding-right: .5em;
  23. }
  24. #sidebar-toggler-button {
  25. margin-right: .5em;
  26. }
  27. div.buttons button svg {
  28. vertical-align: middle;
  29. }
  30. section.small {
  31. border-radius: .4em;
  32. }
  33. .sm-side-icons .action-button button {
  34. display: flex;
  35. flex-direction: row;
  36. align-items: center;
  37. }
  38. .sm-imageicons-fullwidth .action-button button .icon img {
  39. width: 100%;
  40. }
  41. .sm-transparent-header header {
  42. background-color: transparent;
  43. box-shadow: none;
  44. border-color: transparent;
  45. }
  46. .sm-transparent-header #sidebar-button {
  47. border-color: transparent;
  48. }
  49. .sm-transparent-footer footer span {
  50. background-color: transparent;
  51. }