-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
47 lines (38 loc) · 785 Bytes
/
index.css
File metadata and controls
47 lines (38 loc) · 785 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
@import url("https://fonts.googleapis.com/css2?family=Unbounded");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
font-family: "Unbounded";
}
code {
font-family: "Roboto Mono", monospace;
}
.drag {
-webkit-app-region: drag;
}
.no-drag {
-webkit-app-region: no-drag;
}
.content {
padding: 1.5rem;
}
.text-shadow-white {
text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.2);
}
.text-shadow-black {
text-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
}
::-webkit-scrollbar {
padding: 5px;
width: 10px;
background-color: rgba(32, 32, 32, 0.562);
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.24);
border-radius: 5px;
}
.modal {
z-index: 40;
}