ViviNoSmol

style.css

Oct 30th, 2023
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.83 KB | None | 0 0
  1. * {
  2. all: unset;
  3. font-size: 14px;
  4. font-family: "Ubuntu Nerd Font";
  5. transition: 200ms;
  6. }
  7.  
  8. .floating-notifications.background .notification-row .notification-background {
  9. box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.8), inset 0 0 0 1px #313244;
  10. border-radius: 12.6px;
  11. margin: 18px;
  12. background-color: #1e1e2e;
  13. color: #cdd6f4;
  14. padding: 0;
  15. }
  16.  
  17. .floating-notifications.background .notification-row .notification-background .notification {
  18. padding: 7px;
  19. border-radius: 12.6px;
  20. }
  21.  
  22. .floating-notifications.background .notification-row .notification-background .notification.critical {
  23. box-shadow: inset 0 0 7px 0 #f38ba8;
  24. }
  25.  
  26. .floating-notifications.background .notification-row .notification-background .notification .notification-content {
  27. margin: 7px;
  28. }
  29.  
  30. .floating-notifications.background .notification-row .notification-background .notification .notification-content .summary {
  31. color: #cdd6f4;
  32. }
  33.  
  34. .floating-notifications.background .notification-row .notification-background .notification .notification-content .time {
  35. color: #a6adc8;
  36. }
  37.  
  38. .floating-notifications.background .notification-row .notification-background .notification .notification-content .body {
  39. color: #cdd6f4;
  40. }
  41.  
  42. .floating-notifications.background .notification-row .notification-background .notification > *:last-child > * {
  43. min-height: 3.4em;
  44. }
  45.  
  46. .floating-notifications.background .notification-row .notification-background .notification > *:last-child > * .notification-action {
  47. border-radius: 7px;
  48. color: #cdd6f4;
  49. background-color: #313244;
  50. box-shadow: inset 0 0 0 1px #45475a;
  51. margin: 7px;
  52. }
  53.  
  54. .floating-notifications.background .notification-row .notification-background .notification > *:last-child > * .notification-action:hover {
  55. box-shadow: inset 0 0 0 1px #45475a;
  56. background-color: #313244;
  57. color: #cdd6f4;
  58. }
  59.  
  60. .floating-notifications.background .notification-row .notification-background .notification > *:last-child > * .notification-action:active {
  61. box-shadow: inset 0 0 0 1px #45475a;
  62. background-color: #74c7ec;
  63. color: #cdd6f4;
  64. }
  65.  
  66. .floating-notifications.background .notification-row .notification-background .close-button {
  67. margin: 7px;
  68. padding: 2px;
  69. border-radius: 6.3px;
  70. color: #1e1e2e;
  71. background-color: #f38ba8;
  72. }
  73.  
  74. .floating-notifications.background .notification-row .notification-background .close-button:hover {
  75. background-color: #eba0ac;
  76. color: #1e1e2e;
  77. }
  78.  
  79. .floating-notifications.background .notification-row .notification-background .close-button:active {
  80. background-color: #f38ba8;
  81. color: #1e1e2e;
  82. }
  83.  
  84. .control-center {
  85. box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.8), inset 0 0 0 1px #313244;
  86. border-radius: 12.6px;
  87. margin: 18px;
  88. background-color: #1e1e2e;
  89. color: #cdd6f4;
  90. padding: 14px;
  91. }
  92.  
  93. .control-center .widget-title {
  94. color: #cdd6f4;
  95. font-size: 1.3em;
  96. }
  97.  
  98. .control-center .widget-title button {
  99. border-radius: 7px;
  100. color: #cdd6f4;
  101. background-color: #313244;
  102. box-shadow: inset 0 0 0 1px #45475a;
  103. padding: 8px;
  104. }
  105.  
  106. .control-center .widget-title button:hover {
  107. box-shadow: inset 0 0 0 1px #45475a;
  108. background-color: #585b70;
  109. color: #cdd6f4;
  110. }
  111.  
  112. .control-center .widget-title button:active {
  113. box-shadow: inset 0 0 0 1px #45475a;
  114. background-color: #74c7ec;
  115. color: #1e1e2e;
  116. }
  117.  
  118. .control-center .notification-row .notification-background {
  119. border-radius: 7px;
  120. color: #cdd6f4;
  121. background-color: #313244;
  122. box-shadow: inset 0 0 0 1px #45475a;
  123. margin-top: 14px;
  124. }
  125.  
  126. .control-center .notification-row .notification-background .notification {
  127. padding: 7px;
  128. border-radius: 7px;
  129. }
  130.  
  131. .control-center .notification-row .notification-background .notification.critical {
  132. box-shadow: inset 0 0 7px 0 #f38ba8;
  133. }
  134.  
  135. .control-center .notification-row .notification-background .notification .notification-content {
  136. margin: 7px;
  137. }
  138.  
  139. .control-center .notification-row .notification-background .notification .notification-content .summary {
  140. color: #cdd6f4;
  141. }
  142.  
  143. .control-center .notification-row .notification-background .notification .notification-content .time {
  144. color: #a6adc8;
  145. }
  146.  
  147. .control-center .notification-row .notification-background .notification .notification-content .body {
  148. color: #cdd6f4;
  149. }
  150.  
  151. .control-center .notification-row .notification-background .notification > *:last-child > * {
  152. min-height: 3.4em;
  153. }
  154.  
  155. .control-center .notification-row .notification-background .notification > *:last-child > * .notification-action {
  156. border-radius: 7px;
  157. color: #cdd6f4;
  158. background-color: #11111b;
  159. box-shadow: inset 0 0 0 1px #45475a;
  160. margin: 7px;
  161. }
  162.  
  163. .control-center .notification-row .notification-background .notification > *:last-child > * .notification-action:hover {
  164. box-shadow: inset 0 0 0 1px #45475a;
  165. background-color: #313244;
  166. color: #cdd6f4;
  167. }
  168.  
  169. .control-center .notification-row .notification-background .notification > *:last-child > * .notification-action:active {
  170. box-shadow: inset 0 0 0 1px #45475a;
  171. background-color: #74c7ec;
  172. color: #cdd6f4;
  173. }
  174.  
  175. .control-center .notification-row .notification-background .close-button {
  176. margin: 7px;
  177. padding: 2px;
  178. border-radius: 6.3px;
  179. color: #1e1e2e;
  180. background-color: #eba0ac;
  181. }
  182.  
  183. .control-center .notification-row .notification-background .close-button:hover {
  184. background-color: #f38ba8;
  185. color: #1e1e2e;
  186. }
  187.  
  188. .control-center .notification-row .notification-background .close-button:active {
  189. background-color: #f38ba8;
  190. color: #1e1e2e;
  191. }
  192.  
  193. .control-center .notification-row .notification-background:hover {
  194. box-shadow: inset 0 0 0 1px #45475a;
  195. background-color: #7f849c;
  196. color: #cdd6f4;
  197. }
  198.  
  199. .control-center .notification-row .notification-background:active {
  200. box-shadow: inset 0 0 0 1px #45475a;
  201. background-color: #74c7ec;
  202. color: #cdd6f4;
  203. }
  204.  
  205. progressbar,
  206. progress,
  207. trough {
  208. border-radius: 12.6px;
  209. }
  210.  
  211. progressbar {
  212. box-shadow: inset 0 0 0 1px #45475a;
  213. }
  214.  
  215. .notification.critical progress {
  216. background-color: #f38ba8;
  217. }
  218.  
  219. .notification.low progress,
  220. .notification.normal progress {
  221. background-color: #89b4fa;
  222. }
  223.  
  224. trough {
  225. background-color: #313244;
  226. }
  227.  
  228. .control-center trough {
  229. background-color: #45475a;
  230. }
  231.  
  232. .control-center-dnd {
  233. margin-top: 5px;
  234. border-radius: 8px;
  235. background: #313244;
  236. border: 1px solid #45475a;
  237. box-shadow: none;
  238. }
  239.  
  240. .control-center-dnd:checked {
  241. background: #313244;
  242. }
  243.  
  244. .control-center-dnd slider {
  245. background: #45475a;
  246. border-radius: 8px;
  247. }
  248.  
  249. .widget-dnd {
  250. margin: 0px;
  251. font-size: 1.1rem;
  252. }
  253.  
  254. .widget-dnd > switch {
  255. font-size: initial;
  256. border-radius: 8px;
  257. background: #313244;
  258. border: 1px solid #45475a;
  259. box-shadow: none;
  260. }
  261.  
  262. .widget-dnd > switch:checked {
  263. background: #313244;
  264. }
  265.  
  266. .widget-dnd > switch slider {
  267. background: #45475a;
  268. border-radius: 8px;
  269. border: 1px solid #6c7086;
  270. }
  271.  
Advertisement
Add Comment
Please, Sign In to add comment