Advertisement
Guest User

Untitled

a guest
Jan 15th, 2025
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.93 KB | None | 0 0
  1. #sortable {
  2. display: flex;
  3. flex-wrap: wrap;
  4. align-items: start !important;
  5. gap: 1rem;
  6. opacity: 0;
  7. }
  8.  
  9. .module-container {
  10. border: 0px;
  11. border-radius: 18px;
  12. box-shadow: 0 0 20px 0 #0053;
  13. margin: 10px 40px;
  14. max-width: 1000px;
  15. overflow: hidden;
  16. width: 100%;
  17. }
  18.  
  19. .tags-container {
  20. flex: 1;
  21. background-color: rgba(255,255,255,0.4);
  22. backdrop-filter: blur(10px);
  23. -webkit-backdrop-filter: blur(10px);
  24. border-radius: 18px;
  25. display: grid;
  26. grid-template-columns: repeat(2, 50%);
  27. }
  28.  
  29. .tags-title {
  30. color: #fff;
  31. text-transform: capitalize;
  32. margin: 20px;
  33. text-shadow: 0px 0px 3px #0053;
  34. display: none;
  35. visibility: hidden;
  36. }
  37.  
  38. @media (max-width: 680px) {
  39. #sortable {
  40. justify-content: center !important;
  41. }
  42. .tags-container {
  43. display: flex;
  44. flex-direction: column;
  45. }
  46. }
  47.  
  48. /* Reference: https://www.reddit.com/r/selfhosted/comments/nzw76z/i_went_a_bit_overboard_customising_heimdall/ */
  49.  
  50. #config-buttons {
  51. bottom: 50%;
  52. transform: translateY(50%);
  53. border-top-left-radius: 10px;
  54. border-bottom-left-radius: 10px;
  55. box-shadow: rgba(255, 255, 255, 0.1) -1px 1px 1px 0, rgba(255, 255, 255, 0.1) 0 -1px 1px 0,
  56. rgba(0, 0, 0, 0.1) -1px 0 20px 5px;
  57. background-color: rgba(40, 40, 40, 0.25);
  58. backdrop-filter: blur(10px);
  59. -webkit-backdrop-filter: blur(10px);
  60. }
  61. #config-buttons a {
  62. background: none;
  63. }
  64. #config-buttons a svg {
  65. transition: all 0.1s ease-in-out;
  66. color: rgba(255, 255, 255, 0.5);
  67. }
  68. #config-buttons a:hover svg {
  69. transform: scale(1.1);
  70. color: rgba(255, 255, 255, 0.95);
  71. }
  72.  
  73. /* completely by leo */
  74.  
  75. .item {
  76. border:0px;
  77. border-radius:12px;
  78. box-shadow: 0px 0px 20px #0053;
  79. transition:all .15s ease-in-out;
  80. }
  81.  
  82. .item:hover {
  83. border:2px solid #fff;
  84. box-shadow: 0px 0px 8px #0058;
  85. }
  86.  
  87. .module-container header .section-title {
  88. color: #ffff;
  89. font-size: 18px;
  90. margin-left: 25px;
  91. }
  92.  
  93. div.create .input input {
  94. background-color: #0003;
  95. border: hidden;
  96. color: #fff;
  97. }
  98.  
  99. div.create .input label:not(.switch) {
  100. color: #fff;
  101. }
  102.  
  103. /* new */
  104. .module-container .table tr {
  105. background-color: #fff0;
  106. }
  107. .module-container .table tr {
  108. background-color: #fff0;
  109. }
  110. .module-container .table tr td {
  111. color: #ffff;
  112. }
  113. .module-container .table thead th {
  114. background-color: #fff2;
  115. color: #fff;
  116. border-top: hidden;
  117. }
  118. .module-container header, #sapconfig h2, .module-container footer {
  119. background-color: #fff2;
  120. border-bottom: hidden;
  121. border-top: hidden !important;
  122. }
  123. .module-container {
  124. backdrop-filter: blur(10px);
  125. background: #5578;
  126. }
  127. .module-container .table {
  128. background: #fff0;
  129. }
  130. .module-container .table tbody a {
  131. color: #ffff;
  132. }
  133. .module-container .module-actions .button {
  134. border: hidden;
  135. color: #ffff;
  136. }
  137. .module-actions .button span {
  138. color: #fff;
  139. }
  140. #sapconfig h2 {
  141. color: #fff
  142. }
  143.  
  144. .toggleinput {
  145. background-color: #fff3;
  146. border-radius: 8px;
  147. .name {
  148. color: #fff;
  149. margin: 5px;
  150. }
  151. .switch {
  152. margin: 5px;
  153. }
  154. .switch .slider {
  155. box-shadow: 0px 0px 5px 0 #0004 inset;
  156. }
  157. }
  158. .textarea textarea {
  159. border: hidden;
  160. background-color: #0004;
  161. color: #fff;
  162. box-shadow: 0px 0px 10px 0 #0002 inset;
  163. }
  164. .input .select2-container .select2-selection {
  165. background-color: #0003;
  166. border-radius: 8px;
  167. border: hidden;
  168. }
  169. .input .select2-container .select2-selection__choice {
  170. background-color: #fff3;
  171. border: 1px solid #fff7;
  172. color: #fff
  173. }
  174. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  175. color: #ffff;
  176. }
  177. .module-actions .button::after {
  178. border-right: hidden;
  179. }
  180. div.create .input input, div.create .input select {
  181. border: hidden;
  182. border-radius: 8px;
  183. background-color: #0003;
  184. color: #fff;
  185. }
  186. .module-container .table tbody tr:hover {
  187. background:#fff3;
  188. }
  189. .module-container .table tbody tr:hover td:first-child:before {
  190. display: none;
  191. }
  192. .alert {
  193. background: #5578;
  194. border-radius: 18px;
  195. box-shadow: 0 0 15px 0 #0053;
  196. backdrop-filter: blur(10px);
  197. color: #ffff;
  198. }
  199. .alert.alert-danger::before, .alert.alert-success::before {
  200. border-radius: 13px;
  201. box-shadow: 0px 0px 20px #0034;
  202. margin: 5px;
  203. }
  204.  
  205. /*new*/
  206. .searchform {
  207. align-self: flex-start;
  208. background: none;
  209. border-bottom: none;
  210. border-top: none;
  211. box-shadow: none;
  212. z-index: 0;
  213. }
  214.  
  215. .searchform .input-container {
  216. background: #fff7;
  217. border-radius: 13px;
  218. box-shadow: none;
  219. display: flex;
  220. overflow: hidden;
  221. position: relative;
  222. backdrop-filter: blur(10px);
  223. }
  224. .searchform select, .searchform button {
  225. background: #fff9;
  226. border: none;
  227. margin: 7px;
  228. border-radius: 8px;
  229. color: #333;
  230. font-weight: bold;
  231. }
  232.  
  233. .searchform button {
  234. display: none; /*
  235. background: #fff;
  236. border: none;
  237. margin: 7px;
  238. border-radius: 8px;
  239. color: #333;
  240. font-weight: bold;
  241. padding: 0 10px; */
  242. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement