-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
80 lines (68 loc) · 1.35 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
// https://gitlab.gnome.org/GNOME/gtk/-/blob/gtk-3-24/gtk/theme/Adwaita/_colors-public.scss
$theme_fg_color: "@theme_fg_color";
$theme_bg_color: "@theme_bg_color";
* {
background: transparent;
border: none;
border-radius: 0;
color: #{$theme_fg_color};
font-family: "JetBrainsMono Nerd Font";
font-weight: 400;
font-size: 0.9rem;
}
window.Bar {
> centerbox {
background: #{$theme_bg_color};
border: 1px solid #{$theme_fg_color};
border-radius: 0;
margin: 12px 12px 0px 12px;
padding: 6px;
}
button {
background: #{$theme_bg_color};
border: lightgrey;
border-radius: 0;
margin: 2px;
}
button:hover {
background: lightgrey;
}
}
window.AppMenu,
window.SystemMenu {
> box {
background: #{$theme_bg_color};
border: 1px solid #{$theme_fg_color};
border-radius: 0;
margin: 12px;
}
> box.menuouter {
padding: 6px;
}
box.power,
box.audio {
margin-bottom: 6px;
}
box.system > button.network,
box.system > button.tailscale {
margin-bottom: 6px;
}
button {
background: #{$theme_bg_color};
border: 1px solid lightgrey;
border-radius: 0;
margin: 2px;
}
button.on {
background: lightgrey;
}
button:hover {
background: lightgrey;
}
slider {
background: #{$theme_bg_color};
}
trough {
background: #{$theme_fg_color};
}
}