-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (62 loc) · 1.09 KB
/
style.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--color-bkg: 255 255 255;
--color-content: 0 0 0;
--color-accent-primary: 107 114 128;
--color-accent-secondary: 17 17 19;
--color-border: 229 231 235;
}
:root[data-theme='dark'] {
--color-bkg: 25 25 25;
--color-content: 236 238 236;
--color-accent-primary: 176 180 186;
--color-accent-secondary: 181 69 72;
--color-border: 49 49 49;
}
}
* {
scroll-behavior: smooth;
box-sizing: border-box;
margin: 0;
padding: 0;
}
html:focus-within {
scroll-behavior: smooth;
}
body {
font-family: 'Calibri', sans-serif;
}
[x-cloak] {
display: none !important;
}
body.no-scroll {
overflow: hidden;
}
.overlay {
background-color: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(3px);
z-index: 10;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
ul {
list-style-type: disc;
}
.skeleton {
background-color: #e0e0e0;
animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
0%, 100% {
opacity: .4;
}
50% {
opacity: 0.2;
}
}