Advertisement
Guest User

Untitled

a guest
Jan 18th, 2025
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.84 KB | None | 0 0
  1. #app {
  2. min-height: 100vh;
  3. position: relative;
  4. background: none !important;
  5. }
  6.  
  7. /* Fixed background div */
  8. .background-container {
  9. position: fixed;
  10. top: 0;
  11. left: 0;
  12. right: 0;
  13. bottom: 0;
  14. height: 100vh;
  15. width: 100vw;
  16. z-index: -1;
  17. overflow: hidden;
  18. background-size: cover;
  19. background-position: center;
  20. background-repeat: no-repeat;
  21. }
  22.  
  23. .background-container::after {
  24. content: '';
  25. position: absolute;
  26. top: 0;
  27. left: 0;
  28. right: 0;
  29. bottom: 0;
  30. background-image: var(--bg-image);
  31. background-size: cover;
  32. background-position: center;
  33. background-repeat: no-repeat;
  34. }
  35.  
  36. body {
  37. margin: 0;
  38. padding: 0;
  39. min-height: 100vh;
  40. background: transparent;
  41. overflow-y: auto;
  42. }
  43.  
  44. .content {
  45. position: relative;
  46. z-index: 1;
  47. min-height: 100vh;
  48. overflow-y: auto;
  49. }
  50.  
  51. #sortable {
  52. display: flex;
  53. flex-wrap: wrap;
  54. align-items: start !important;
  55. gap: 1rem;
  56. padding: 1rem;
  57. position: relative;
  58. }
  59.  
  60. .module-container {
  61. border: 0px;
  62. border-radius: 18px;
  63. box-shadow: 0 0 20px 0 #0053;
  64. margin: 10px 40px;
  65. max-width: 1000px;
  66. overflow: hidden;
  67. width: 100%;
  68. }
  69.  
  70. .tags-container {
  71. flex: 1;
  72. background-color: rgba(255,255,255,0.4);
  73. backdrop-filter: blur(10px);
  74. -webkit-backdrop-filter: blur(10px);
  75. border-radius: 18px;
  76. display: grid;
  77. grid-template-columns: repeat(3, 1fr);
  78. gap: 1rem;
  79. padding: 1rem;
  80. }
  81.  
  82. .tags-title {
  83. color: #fff;
  84. text-transform: capitalize;
  85. margin: 20px;
  86. text-shadow: 0px 0px 3px #0053;
  87. display: none;
  88. visibility: hidden;
  89. }
  90.  
  91. #config-buttons {
  92. bottom: 50%;
  93. transform: translateY(50%);
  94. border-top-left-radius: 10px;
  95. border-bottom-left-radius: 10px;
  96. box-shadow: rgba(255, 255, 255, 0.1) -1px 1px 1px 0, rgba(255, 255, 255, 0.1) 0 -1px 1px 0,
  97. rgba(0, 0, 0, 0.1) -1px 0 20px 5px;
  98. background-color: rgba(40, 40, 40, 0.25);
  99. backdrop-filter: blur(10px);
  100. -webkit-backdrop-filter: blur(10px);
  101. z-index: 2;
  102. }
  103.  
  104. #config-buttons a {
  105. background: none;
  106. }
  107.  
  108. #config-buttons a svg {
  109. transition: all 0.1s ease-in-out;
  110. color: rgba(255, 255, 255, 0.5);
  111. }
  112.  
  113. #config-buttons a:hover svg {
  114. transform: scale(1.1);
  115. color: rgba(255, 255, 255, 0.95);
  116. }
  117.  
  118. .item {
  119. border: 0px;
  120. border-radius: 12px;
  121. box-shadow: 0px 0px 20px #0053;
  122. transition: all .15s ease-in-out;
  123. }
  124.  
  125. .item:hover {
  126. border: 2px solid #fff;
  127. box-shadow: 0px 0px 8px #0058;
  128. }
  129.  
  130. .module-container header .section-title {
  131. color: #fff;
  132. font-size: 18px;
  133. margin-left: 25px;
  134. }
  135.  
  136. div.create .input input {
  137. background-color: #0003;
  138. border: hidden;
  139. color: #fff;
  140. }
  141.  
  142. div.create .input label:not(.switch) {
  143. color: #fff;
  144. }
  145.  
  146. .module-container .table tr {
  147. background-color: #fff0;
  148. }
  149.  
  150. .module-container .table tr td {
  151. color: #fff;
  152. }
  153.  
  154. .module-container .table thead th {
  155. background-color: #fff2;
  156. color: #fff;
  157. border-top: hidden;
  158. }
  159.  
  160. .module-container header,
  161. #sapconfig h2,
  162. .module-container footer {
  163. background-color: #fff2;
  164. border-bottom: hidden;
  165. border-top: hidden !important;
  166. }
  167.  
  168. .module-container {
  169. backdrop-filter: blur(10px);
  170. background: #5578;
  171. }
  172.  
  173. .module-container .table {
  174. background: #fff0;
  175. }
  176.  
  177. .module-container .table tbody a {
  178. color: #fff;
  179. }
  180.  
  181. .module-container .module-actions .button {
  182. border: hidden;
  183. color: #fff;
  184. }
  185.  
  186. .module-actions .button span {
  187. color: #fff;
  188. }
  189.  
  190. #sapconfig h2 {
  191. color: #fff;
  192. }
  193.  
  194. .toggleinput {
  195. background-color: #fff3;
  196. border-radius: 8px;
  197. }
  198.  
  199. .toggleinput .name {
  200. color: #fff;
  201. margin: 5px;
  202. }
  203.  
  204. .toggleinput .switch {
  205. margin: 5px;
  206. }
  207.  
  208. .toggleinput .switch .slider {
  209. box-shadow: 0px 0px 5px 0 #0004 inset;
  210. }
  211.  
  212. .textarea textarea {
  213. border: hidden;
  214. background-color: #0004;
  215. color: #fff;
  216. box-shadow: 0px 0px 10px 0 #0002 inset;
  217. }
  218.  
  219. .input .select2-container .select2-selection {
  220. background-color: #0003;
  221. border-radius: 8px;
  222. border: hidden;
  223. }
  224.  
  225. .input .select2-container .select2-selection__choice {
  226. background-color: #fff3;
  227. border: 1px solid #fff7;
  228. color: #fff;
  229. }
  230.  
  231. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  232. color: #fff;
  233. }
  234.  
  235. .module-actions .button::after {
  236. border-right: hidden;
  237. }
  238.  
  239. div.create .input input,
  240. div.create .input select {
  241. border: hidden;
  242. border-radius: 8px;
  243. background-color: #0003;
  244. color: #fff;
  245. }
  246.  
  247. .module-container .table tbody tr:hover {
  248. background: #fff3;
  249. }
  250.  
  251. .module-container .table tbody tr:hover td:first-child:before {
  252. display: none;
  253. }
  254.  
  255. .alert {
  256. background: #5578;
  257. border-radius: 18px;
  258. box-shadow: 0 0 15px 0 #0053;
  259. backdrop-filter: blur(10px);
  260. color: #fff;
  261. }
  262.  
  263. .alert.alert-danger::before,
  264. .alert.alert-success::before {
  265. border-radius: 13px;
  266. box-shadow: 0px 0px 20px #0034;
  267. margin: 5px;
  268. }
  269.  
  270. .searchform {
  271. align-self: flex-start;
  272. background: none;
  273. border-bottom: none;
  274. border-top: none;
  275. box-shadow: none;
  276. z-index: 0;
  277. }
  278.  
  279. .searchform .input-container {
  280. background: #fff7;
  281. border-radius: 13px;
  282. box-shadow: none;
  283. display: flex;
  284. overflow: hidden;
  285. position: relative;
  286. backdrop-filter: blur(10px);
  287. }
  288.  
  289. .searchform select,
  290. .searchform button {
  291. background: #fff9;
  292. border: none;
  293. margin: 7px;
  294. border-radius: 8px;
  295. color: #333;
  296. font-weight: bold;
  297. }
  298.  
  299. .searchform button {
  300. display: none;
  301. }
  302.  
  303. @media (max-width: 680px) {
  304. .background-container::after {
  305. background-size: auto 100vh;
  306. background-position: center top;
  307. }
  308.  
  309. #sortable {
  310. justify-content: center !important;
  311. margin-top: 1rem;
  312. }
  313.  
  314. .tags-container {
  315. display: grid;
  316. grid-template-columns: 1fr;
  317. gap: 1rem;
  318. background-color: rgba(255,255,255,0.6);
  319. }
  320.  
  321. .item {
  322. background-color: rgba(22,27,31,0.8);
  323. }
  324. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement