You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
1.4 KiB

  1. .glitch.local-settings {
  2. position: relative;
  3. display: flex;
  4. flex-direction: row;
  5. background: $ui-secondary-color;
  6. color: $inverted-text-color;
  7. border-radius: 8px;
  8. height: 80vh;
  9. width: 80vw;
  10. max-width: 740px;
  11. max-height: 450px;
  12. overflow: hidden;
  13. label {
  14. display: block;
  15. }
  16. h1 {
  17. font-size: 18px;
  18. font-weight: 500;
  19. line-height: 24px;
  20. margin-bottom: 20px;
  21. }
  22. h2 {
  23. font-size: 15px;
  24. font-weight: 500;
  25. line-height: 20px;
  26. margin-top: 20px;
  27. margin-bottom: 10px;
  28. }
  29. }
  30. .glitch.local-settings__navigation__item {
  31. display: block;
  32. padding: 15px 20px;
  33. color: inherit;
  34. background: $primary-text-color;
  35. border-bottom: 1px $ui-primary-color solid;
  36. cursor: pointer;
  37. text-decoration: none;
  38. outline: none;
  39. transition: background .3s;
  40. &:hover {
  41. background: $ui-secondary-color;
  42. }
  43. &.active {
  44. background: $ui-highlight-color;
  45. color: $primary-text-color;
  46. }
  47. &.close, &.close:hover {
  48. background: $error-value-color;
  49. color: $primary-text-color;
  50. }
  51. }
  52. .glitch.local-settings__navigation {
  53. background: $simple-background-color;
  54. color: $inverted-text-color;
  55. width: 200px;
  56. font-size: 15px;
  57. line-height: 20px;
  58. overflow-y: auto;
  59. }
  60. .glitch.local-settings__page {
  61. display: block;
  62. flex: auto;
  63. padding: 15px 20px 15px 20px;
  64. width: 360px;
  65. overflow-y: auto;
  66. }
  67. .glitch.local-settings__page__item {
  68. select {
  69. margin-bottom: 5px;
  70. }
  71. }