ViviNoSmol

style.css

Oct 30th, 2023
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.61 KB | None | 0 0
  1. @define-color cc-bg rgba(26, 27, 38, 1);
  2. @define-color noti-border-color rgba(255, 255, 255, 0.15);
  3. @define-color noti-bg rgb(17, 17, 27);
  4. @define-color noti-bg-darker rgb(43, 43, 57);
  5. @define-color noti-bg-hover rgb(27, 27, 43);
  6. @define-color noti-bg-focus rgba(27, 27, 27, 0.6);
  7. @define-color noti-close-bg rgba(255, 255, 255, 0.1);
  8. @define-color noti-close-bg-hover rgba(255, 255, 255, 0.15);
  9. @define-color text-color rgba(169, 177, 214, 1);
  10. @define-color text-color-disabled rgb(150, 150, 150);
  11. @define-color bg-selected rgb(0, 128, 255);
  12.  
  13. * {
  14. font-family: JetBrainsMono Nerd Font Propo;
  15. font-weight: bolder;
  16. }
  17.  
  18. .control-center .notification-row:focus,
  19. .control-center .notification-row:hover {
  20. opacity: 1;
  21. background: @noti-bg-darker
  22. }
  23.  
  24. .notification-row {
  25. outline: none;
  26. margin: 10px;
  27. padding: 0;
  28. }
  29.  
  30. .notification {
  31. background: transparent;
  32. padding: 0;
  33. margin: 0px;
  34. }
  35.  
  36. .notification-content {
  37. background: @cc-bg;
  38. padding: 10px;
  39. border-radius: 7px;
  40. border: 2px solid #34548a;
  41. margin: 0;
  42. }
  43.  
  44. .notification-default-action {
  45. margin: 0;
  46. padding: 0;
  47. border-radius: 0px;
  48. }
  49.  
  50. .close-button {
  51. background: #f7768e;
  52. color: @cc-bg;
  53. text-shadow: none;
  54. padding: 0;
  55. border-radius: 7px;
  56. margin-top: 5px;
  57. margin-right: 5px;
  58. }
  59.  
  60. .close-button:hover {
  61. box-shadow: none;
  62. background: #f7768e;
  63. transition: all .15s ease-in-out;
  64. border: none
  65. }
  66.  
  67.  
  68. .notification-action {
  69. border: 2px solid #34548a;
  70. border-top: none;
  71. border-radius: 7px;
  72. }
  73.  
  74.  
  75. .notification-default-action:hover,
  76. .notification-action:hover {
  77. color: #7aa2f7;
  78. background: #7aa2f7
  79. }
  80.  
  81. .notification-default-action {
  82. border-radius: 7px;
  83. margin: 0px;
  84. }
  85.  
  86. .notification-default-action:not(:only-child) {
  87. border-bottom-left-radius: 7px;
  88. border-bottom-right-radius: 7px
  89. }
  90.  
  91. .notification-action:first-child {
  92. border-bottom-left-radius: 10px;
  93. background: #1b1b2b
  94. }
  95.  
  96. .notification-action:last-child {
  97. border-bottom-right-radius: 10px;
  98. background: #1b1b2b
  99. }
  100.  
  101. .inline-reply {
  102. margin-top: 8px
  103. }
  104.  
  105. .inline-reply-entry {
  106. background: @noti-bg-darker;
  107. color: @text-color;
  108. caret-color: @text-color;
  109. border: 1px solid @noti-border-color;
  110. border-radius: 7px
  111. }
  112.  
  113. .inline-reply-button {
  114. margin-left: 4px;
  115. background: @noti-bg;
  116. border: 1px solid @noti-border-color;
  117. border-radius: 7px;
  118. color: @text-color
  119. }
  120.  
  121. .inline-reply-button:disabled {
  122. background: initial;
  123. color: @text-color-disabled;
  124. border: 1px solid transparent
  125. }
  126.  
  127. .inline-reply-button:hover {
  128. background: @noti-bg-hover
  129. }
  130.  
  131. .body-image {
  132. margin-top: 6px;
  133. background-color: #fff;
  134. border-radius: 7px
  135. }
  136.  
  137. .summary {
  138. font-size: 16px;
  139. font-weight: 700;
  140. background: transparent;
  141. color: rgba(158, 206, 106, 1);
  142. text-shadow: none
  143. }
  144.  
  145. .time {
  146. font-size: 16px;
  147. font-weight: 700;
  148. background: transparent;
  149. color: @text-color;
  150. text-shadow: none;
  151. margin-right: 18px
  152. }
  153.  
  154. .body {
  155. font-size: 15px;
  156. font-weight: 400;
  157. background: transparent;
  158. color: @text-color;
  159. text-shadow: none
  160. }
  161.  
  162. .control-center {
  163. background: @cc-bg;
  164. border: 2px solid #34548a;
  165. border-radius: 7px;
  166. }
  167.  
  168. .control-center-list {
  169. background: transparent
  170. }
  171.  
  172. .control-center-list-placeholder {
  173. opacity: .5
  174. }
  175.  
  176. .floating-notifications {
  177. background: transparent
  178. }
  179.  
  180. .blank-window {
  181. background: alpha(black, 0.1)
  182. }
  183.  
  184. .widget-title {
  185. color: #7aa2f7;
  186. background: @noti-bg-darker;
  187. padding: 10px;
  188. margin: 10px 10px 5px 10px;
  189. font-size: 1.5rem;
  190. border-radius: 7px;
  191. }
  192.  
  193. .widget-title>button {
  194. font-size: 1.3rem;
  195. color: @text-color;
  196. text-shadow: none;
  197. background: @noti-bg;
  198. box-shadow: none;
  199. border-radius: 7px;
  200. }
  201.  
  202. .widget-title>button:hover {
  203. background: #f7768e;
  204. border: 1px solid #f7768e;
  205. color: @cc-bg;
  206. }
  207.  
  208. .widget-dnd {
  209. background: @noti-bg-darker;
  210. padding: 10px;
  211. margin: 10px 10px 5px 10px;
  212. border-radius: 7px;
  213. font-size: large;
  214. color: #7aa2f7;
  215. }
  216.  
  217. .widget-dnd>switch {
  218. border-radius: 7px;
  219. /* border: 1px solid #7aa2f7; */
  220. background: #7aa2f7;
  221. }
  222.  
  223. .widget-dnd>switch:checked {
  224. background: #f7768e;
  225. border: 1px solid #f7768e;
  226. }
  227.  
  228. .widget-dnd>switch slider {
  229. background: @cc-bg;
  230. border-radius: 7px
  231. }
  232.  
  233. .widget-dnd>switch:checked slider {
  234. background: @cc-bg;
  235. border-radius: 7px
  236. }
  237.  
  238.  
  239. .widget-label {
  240. margin: 10px 10px 5px 10px;
  241. }
  242.  
  243. .widget-label>label {
  244. font-size: 1.5rem;
  245. color: @text-color;
  246. }
  247.  
  248. .widget-mpris {
  249. color: @text-color;
  250. background: @noti-bg-darker;
  251. padding: 10px;
  252. margin: 10px 10px 5px 10px;
  253. border-radius: 7px;
  254. }
  255.  
  256. .widget-mpris > box > button {
  257. border-radius: 7px;
  258. }
  259.  
  260. .widget-mpris-player {
  261. padding: 8px;
  262. margin: 8px
  263. }
  264.  
  265. .widget-mpris-title {
  266. font-weight: 700;
  267. font-size: 1.25rem
  268. }
  269.  
  270. .widget-mpris-subtitle {
  271. font-size: 1.1rem
  272. }
  273.  
  274. .widget-buttons-grid {
  275. font-size: x-large;
  276. padding: 10px;
  277. margin: 10px 10px 5px 10px;
  278. border-radius: 7px;
  279. background: @noti-bg-darker;
  280. }
  281.  
  282. .widget-buttons-grid>flowbox>flowboxchild>button {
  283. margin: 3px;
  284. background: @cc-bg;
  285. border-radius: 7px;
  286. color: @text-color
  287. }
  288.  
  289. .widget-buttons-grid>flowbox>flowboxchild>button:hover {
  290. background: rgba(122, 162, 247, 1);
  291. color: @cc-bg;
  292. }
  293.  
  294. .widget-menubar>box>.menu-button-bar>button {
  295. border: none;
  296. background: transparent
  297. }
  298.  
  299. .topbar-buttons>button {
  300. border: none;
  301. background: transparent
  302. }
  303.  
  304. .widget-volume {
  305. background: @noti-bg-darker;
  306. padding: 10px;
  307. margin: 10px 10px 5px 10px;
  308. border-radius: 7px;
  309. font-size: x-large;
  310. color: @text-color;
  311. }
  312.  
  313. .widget-volume>box>button {
  314. background: #7aa2f7;
  315. border: none
  316. }
  317.  
  318. .per-app-volume {
  319. background-color: @noti-bg;
  320. padding: 4px 8px 8px;
  321. margin: 0 8px 8px;
  322. border-radius: 7px
  323. }
  324.  
  325. .widget-backlight {
  326. background: @noti-bg-darker;
  327. padding: 10px;
  328. margin: 10px 10px 5px 10px;
  329. border-radius: 7px;
  330. font-size: x-large;
  331. color: @text-color
  332. }
  333.  
  334. /* .widget-inhibitors {
  335. margin: 8px;
  336. font-size: 1.5rem
  337. }
  338.  
  339. .widget-inhibitors>button {
  340. font-size: initial;
  341. color: @text-color;
  342. text-shadow: none;
  343. background: @noti-bg;
  344. border: 1px solid red;
  345. box-shadow: none;
  346. border-radius: 7px
  347. }
  348.  
  349. .widget-inhibitors>button:hover {
  350. background: @noti-bg-hover
  351. } */
  352.  
Advertisement
Add Comment
Please, Sign In to add comment