-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (34 loc) · 789 Bytes
/
Copy pathstyle.css
File metadata and controls
40 lines (34 loc) · 789 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
:vars {
--foreground: rgb(255, 255, 255);
--background: rgb(26, 28, 30);
--border-color: rgb(50, 64, 70);
--button-color: var(--border-color);
}
* {
all: unset;
color: var(--foreground);
font-family: "Jost*", "Cantarell", "Helvetica", "Arial", sans-serif;
}
#notification {
padding: 0.8rem;
border: solid 2px var(--border-color);
border-radius: 1rem;
background-color: var(--background);
}
#notification .summary {
font-size: 20px;
font-weight: bold;
}
#notification .body {
color: darker(var(--foreground));
font-weight: normal;
}
button {
padding: 0.6rem;
font-weight: 600;
border-radius: 3rem;
background-color: var(--button-color);
}
button:hover {
background-color: lighter(var(--button-color));
}