-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
158 lines (136 loc) · 4.59 KB
/
Copy pathstyle.css
File metadata and controls
158 lines (136 loc) · 4.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
@import "../../.cache/wal/colors-waybar.css";
/* =============================================================================
UNIVERSAL STYLING
========================================================================== */
* {
border: none;
border-radius: 0;
font-family: "JetBrainsMono Nerd Font", "Fira Code", FontAwesome;
font-weight: bold;
font-size: 12px;
min-height: 0;
/* ELASTIC BOUNCY ENDING (The Return) */
transition: all 0.6s cubic-bezier(0.05, 0.9, 0.1, 1.05);
}
window#waybar {
background-color: transparent;
color: @foreground;
}
/* =============================================================================
ANIMATION DEFINITIONS
========================================================================== */
/* THE LAVA LAMP OOZE: Animates position to look like rising/falling wax */
@keyframes lava-ooze {
0% { background-position: 0% 0%; }
50% { background-position: 50% 100%; }
100% { background-position: 100% 0%; }
}
/* LESS HYPE SPLASH: Focuses on color transition rather than huge padding pops */
@keyframes splash-calm {
0% {
background-color: @color2;
letter-spacing: 2px; /* Mimics the "stretch" without changing the box size */
}
100% {
background-color: @color7;
letter-spacing: 0px;
}
}
@keyframes splash-calm-padding {
0% { background-color: @color2; padding: 0 25px; }
100% { background-color: @color7; padding: 0 20px; }
}
/* =============================================================================
WORKSPACES (Less Hype Edition)
========================================================================== */
#workspaces {
background: rgba(25, 25, 35, 0.7);
margin: 6px 4px;
padding: 2px 4px;
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.05);
}
#workspaces button {
padding: 0px 10px;
margin: 3px 2px;
border-radius: 15px;
color: @color7;
background-color: rgba(255, 255, 255, 0.05);
transition: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.75);
}
#workspaces button.active {
color: @background;
background: @color7;
min-width: 55px; /* Reduced from 60px */
border-radius: 15px;
/* Uses the new 'calm' animation */
animation: splash-calm 0.5s cubic-bezier(0.25, 1, 0.5, 1);
transition: none;
}
/* =============================================================================
THE TRUE LAVA LAMP HOVER (Fluid Motion)
========================================================================== */
window#waybar #custom-user:hover,
window#waybar #clock:hover,
window#waybar #network:hover,
window#waybar #window:hover,
window#waybar #custom-exams:hover,
window#waybar #custom-sleep:hover,
window#waybar #custom-ramadan:hover,
window#waybar #cpu:hover,
window#waybar #memory:hover,
window#waybar #custom-media:hover,
window#waybar #pulseaudio:hover,
window#waybar #tray:hover,
window#waybar #custom-gamemode:hover,
window#waybar #workspaces button:hover {
/* Multi-layered linear gradient with many stops mimics 'moving wax' better than radial */
background: linear-gradient(
180deg,
@color1, @color2, @color3, @color5, @color7, @color2, @color1
);
/* Massive vertical size allows the colors to "flow" through the module */
background-size: 100% 400%;
animation: lava-ooze 4s infinite linear;
padding: 2px 28px;
margin: 4px 2px;
color: #150f07;
/* Glowing liquid effect */
box-shadow:
inset 0 0 20px rgba(255, 255, 255, 0.5),
inset 0 5px 15px @color1,
inset 0 -5px 15px @color3;
/* SNAPPY ARRIVAL */
transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/* =============================================================================
REMAINDER OF MODULES (Unchanged Defaults)
========================================================================== */
#custom-user, #clock, #network, #custom-exams,
#custom-sleep, #custom-ramadan, #cpu, #memory, #custom-media,
#pulseaudio, #tray, #custom-gamemode {
background-color: rgba(25, 25, 35, 0.85);
padding: 0 15px;
margin: 6px 4px;
border-radius: 20px;
}
#window, #custom-sleep {
background: @color7;
color: @background;
padding: 0 20px;
margin: 6px 4px;
border-radius: 10px;
transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#window { animation: splash-calm 0.6s ease-out; }
#custom-voxtype {
min-width: 12px;
margin: 0 0 0 7.5px;
}
#custom-voxtype.recording {
color: #a55555;
}
#custom-idle-indicator.active,
#custom-notification-silencing-indicator.active {
color: #a55555;
}