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.

196 lines
3.2 KiB

4 years ago
  1. .wrapper {
  2. display: flex;
  3. width: 100%;
  4. align-items: stretch;
  5. }
  6. .toolbar-button {
  7. padding-left: 2rem;
  8. padding-top: .375rem;
  9. line-height: 1.5;
  10. color: white;
  11. }
  12. .back-chevron {
  13. line-height: 1.5 !important;
  14. vertical-align: middle !important;
  15. margin-bottom: 4px !important;
  16. }
  17. #sidebar {
  18. padding-left: 20px;
  19. background-color: #ecedee;
  20. height: 100vh;
  21. padding-top: 20px;
  22. border-right: 1px solid darkgray;
  23. }
  24. #sidebar ul > li {
  25. padding-bottom: 10px;
  26. }
  27. #sidebar ul > li > a {
  28. color: rgba(0,0,0,.5);
  29. }
  30. #sidebar ul > li.active > a {
  31. color: black;
  32. }
  33. #content {
  34. width: 100%;
  35. padding: 20px;
  36. }
  37. @media (prefers-color-scheme: dark) {
  38. #sidebar {
  39. padding-left: 20px;
  40. background-color: #1a1d20;
  41. height: 100vh;
  42. padding-top: 20px;
  43. border-right: 1px solid black;
  44. }
  45. #sidebar ul > li {
  46. padding-bottom: 10px;
  47. }
  48. #sidebar ul > li > a {
  49. color: rgba(255,255,255,.5);
  50. }
  51. #sidebar ul > li.active > a {
  52. color: white;
  53. }
  54. body {
  55. background-color: #111 !important;
  56. color: #eee;
  57. }
  58. .jumbotron {
  59. background-color: #333 !important;
  60. }
  61. .modal-content {
  62. background-color: #111 !important;
  63. color: #eee;
  64. }
  65. .modal-header {
  66. border-bottom: 1px solid #555 !important;
  67. }
  68. .modal-header .close {
  69. color: #eee !important;
  70. text-shadow: 0 1px 0 #555 !important;
  71. }
  72. .modal-footer {
  73. border-top: 1px solid #555 !important;
  74. }
  75. .bg-light {
  76. background-color: #333 !important;
  77. }
  78. .bg-white {
  79. background-color: #000 !important;
  80. }
  81. .bg-black {
  82. background-color: #eee !important;
  83. }
  84. .form-control {
  85. display: block;
  86. width: 100%;
  87. height: calc(1.5em + 0.75rem + 2px);
  88. padding: 0.375rem 0.75rem;
  89. font-size: 1rem;
  90. font-weight: 400;
  91. line-height: 1.5;
  92. color: #dee2e6;
  93. background-color: #000;
  94. background-clip: padding-box;
  95. border: 1px solid #6c757d;
  96. border-radius: 0.25rem;
  97. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  98. }
  99. @media (prefers-reduced-motion: reduce) {
  100. .form-control {
  101. transition: none;
  102. }
  103. }
  104. .form-control::-ms-expand {
  105. background-color: transparent;
  106. border: 0;
  107. }
  108. .form-control:-moz-focusring {
  109. color: transparent;
  110. text-shadow: 0 0 0 #dee2e6;
  111. }
  112. .form-control:focus {
  113. color: #dee2e6;
  114. background-color: #191d21;
  115. border-color: #b3d7ff;
  116. outline: 0;
  117. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  118. }
  119. .form-control::-webkit-input-placeholder {
  120. color: #6c757d;
  121. opacity: 1;
  122. }
  123. .form-control::-moz-placeholder {
  124. color: #6c757d;
  125. opacity: 1;
  126. }
  127. .form-control::-ms-input-placeholder {
  128. color: #6c757d;
  129. opacity: 1;
  130. }
  131. .form-control::placeholder {
  132. color: #6c757d;
  133. opacity: 1;
  134. }
  135. .form-control:disabled,
  136. .form-control[readonly] {
  137. background-color: #343a40;
  138. opacity: 1;
  139. }
  140. .card {
  141. background-color: #000;
  142. border: 1px solid #6c757d;
  143. }
  144. }
  145. @media (max-width: 991.98px) {
  146. #sidebar {
  147. display: none !important;
  148. }
  149. }
  150. @media (min-width: 991.98px) {
  151. .navbar-nav {
  152. display: none !important;
  153. }
  154. #sidebar {
  155. min-width: 250px;
  156. max-width: 250px;
  157. display: block !important;
  158. }
  159. #sidebar.active {
  160. margin-left: -250px;
  161. }
  162. }