diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-09-13 16:46:03 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-09-13 16:46:03 +0530 |
commit | 06d2cf75294636dad6013ec004ed6c958034195b (patch) | |
tree | 1da44f9c30bf9e1ff7f46f80cfa4c3cc903ba1d7 /.config/deadd/deadd.css | |
parent | aec7a1084d7e7b20a1c33ab838deb5e893a9864c (diff) |
Diffstat (limited to '.config/deadd/deadd.css')
-rw-r--r-- | .config/deadd/deadd.css | 140 |
1 files changed, 140 insertions, 0 deletions
diff --git a/.config/deadd/deadd.css b/.config/deadd/deadd.css new file mode 100644 index 0000000..9762b3d --- /dev/null +++ b/.config/deadd/deadd.css @@ -0,0 +1,140 @@ + +/* Notification center */ + +.blurredBG, #main_window, .blurredBG.low, .blurredBG.normal { + background: rgba(49, 50, 68, 0.8); +} + +.noti-center.time { + font-size: 32px; +} + +/* Notifications */ + +.notification.content { + margin-left: 15px; + margin-right: 15px; +} + +.title { + font-weight: bold; + font-size: 16px; +} + +.appname { + font-size: 12px; +} + +.time { + font-size: 12px; +} + +.blurredBG.notification { + background: rgba(30, 30, 46, 0.9); + border: 1px solid #cba6f7; +} + +.blurredBG.notification.critical { + background: rgba(235, 160, 172, 0.9); +} + +.notificationInCenter.critical { + background: rgba(155, 0, 20, 0.5); +} + +/* Labels */ + +label { + color: #cdd6f4; +} + +label.notification { + color: #cdd6f4; +} + +label.critical { + color: #11111b; +} +.notificationInCenter label.critical { + color: #11111b; +} + + +/* Buttons */ + +button { + background: transparent; + color: #322; + border-radius: 3px; + border-width: 0px; + background-position: 0px 0px; + text-shadow: none; +} + +button:hover { + border-radius: 3px; + background: rgba(0, 20, 20, 0.2); + border-width: 0px; + border-top: transparent; + border-color: #f00; + color: #fee; +} + + +/* Custom Buttons */ + +.userbutton { + background: rgba(20,0,0, 0.15); +} + +.userbuttonlabel { + color: #222; + font-size: 12px; +} + +.userbutton:hover { + background: rgba(20, 0, 0, 0.2); +} + +.userbuttonlabel:hover { + color: #111; +} + +button.buttonState1 { + background: rgba(20,0,0,0.5); +} + +.userbuttonlabel.buttonState1 { + color: #fff; +} + +button.buttonState1:hover { + background: rgba(20,0,0, 0.4); +} + +.userbuttonlabel.buttonState1:hover { + color: #111; +} + +button.buttonState2 { + background: rgba(255,255,255,0.3); +} + +.userbuttonlabel.buttonState2 { + color: #111; +} + +button.buttonState2:hover { + background: rgba(20,0,0, 0.3); +} + +.userbuttonlabel.buttonState2:hover { + color: #000; +} + + +/* Images */ + +image.deadd-noti-center.notification.image { + margin-left: 20px; +} |