-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
43 lines (36 loc) · 665 Bytes
/
main.css
File metadata and controls
43 lines (36 loc) · 665 Bytes
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
label {
/*
Replace "inherit" with your favorite color
*/
color: inherit;
}
#logo {
animation-name: breathing;
animation-duration: 3s;
animation-timing-function: ease-out;
animation-iteration-count: infinite;
animation-direction: normal;
animation-delay: 0s;
animation-fill-mode: none;
animation-play-state: running;
}
.bg-white {
background-color: white;
}
.reset-color {
background-color: @theme_bg_color;
}
@keyframes breathing {
0% {
-gtk-icon-transform: scale(0.9);
}
25% {
-gtk-icon-transform: scale(1);
}
60% {
-gtk-icon-transform: scale(0.9);
}
100% {
-gtk-icon-transform: scale(0.9);
}
}