-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
107 lines (88 loc) · 1.65 KB
/
style.scss
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
@use "sass:color";
@use "./styles/applauncher.scss";
$bg: #212223;
$fg: #f1f1f1;
$accent: #378df7;
$radius: 10px;
window.Bar {
border: none;
box-shadow: none;
background-color: transparent;
color: $fg;
font-family: "SpaceMono Nerd Font";
font-size: 1.1rem;
font-weight: bold;
.rounded-border {
background-color: $bg;
padding: 0 10px;
border-radius: $radius;
border: 1px solid white;
margin: 0 10px;
}
.accent {
color: $accent;
}
label {
margin: 0 8px;
}
.Workspaces {
padding: 0 6px;
button {
all: unset;
background-color: transparent;
border-radius: $radius;
&:hover label {
background-color: color.adjust($fg, $alpha: -0.84);
border-color: color.adjust($accent, $alpha: -0.8);
}
&:active label {
background-color: color.adjust($fg, $alpha: -0.8);
}
}
label {
transition: 200ms;
padding: 0 8px;
margin: 2px;
border-radius: $radius;
border: 1pt solid transparent;
}
.focused label {
color: $accent;
border-color: $accent;
}
}
.SysTray {
background-color: transparent;
margin-right: 8px;
button {
background-color: transparent;
padding: 0 4px;
}
}
.FocusedClient {
color: $accent;
}
.Media .Cover {
min-height: 1.2em;
min-width: 1.2em;
border-radius: $radius;
background-position: center;
background-size: contain;
}
.Battery {
* {
all: unset;
}
icon {
margin-right: 0.6em;
}
}
.AudioSlider {
* {
all: unset;
}
icon {
margin-right: 0.6em;
}
}
}