-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (41 loc) · 967 Bytes
/
Copy pathstyle.css
File metadata and controls
49 lines (41 loc) · 967 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
44
45
46
47
48
49
window {
font-family: "JetBrains Mono Nerd Font";
font-size: 12pt;
color: #cdd6f4;
background-color: rgba(30, 30, 46, 0.9);
}
button {
background-repeat: no-repeat;
background-position: center;
background-size: 25%;
border-style: solid;
border-width: 3px;
background-color: rgba(12, 12, 12, 0.3);
border-color: #313244;
margin: 5px;
border-radius: 20px;
transition: all 0.3s ease-in-out;
}
button:focus, button:active, button:hover {
/* 20% Overlay 2, 80% mantle */
background-color: rgb(48, 50, 66);
outline-style: none;
}
#lock {
background-image: image(url("./icons/lock.svg"));
}
#logout {
background-image: image(url("./icons/logout.svg"));
}
#suspend {
background-image: image(url("./icons/suspend.svg"));
}
#hibernate {
background-image: image(url("./icons/hibernate.svg"));
}
#reboot {
background-image: image(url("./icons/reboot.svg"));
}
#shutdown {
background-image: image(url("./icons/shutdown.svg"));
}