-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (40 loc) · 732 Bytes
/
Copy pathstyle.css
File metadata and controls
47 lines (40 loc) · 732 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
:root {
--accent: #7041ff;
--body-fg: #d1c4ff;
--body-bg: #0f0c19;
}
body {
margin: 0;
padding: 0;
background-color: var(--body-bg);
color: var(--body-fg);
font-family: "Roboto", sans-serif;
line-height: 1.6;
padding: 20px;
}
.spinner {
width: 36px;
height: 36px;
border: 2px solid rgba(112, 65, 255, 0.2);
border-top-color: var(--accent);
border-radius: 50%;
animation: spin 0.6s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #0f0c19;
}
::-webkit-scrollbar-thumb {
background: var(--accent);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #9b7dff;
}