-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
49 lines (40 loc) · 815 Bytes
/
Copy pathindex.css
File metadata and controls
49 lines (40 loc) · 815 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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color-scheme: dark light;
}
html {
overscroll-behavior: none;
}
body {
margin: 0;
min-width: 320px;
background-color: #161617;
color: #f5f5f7;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
button {
touch-action: manipulation;
}
.apple-blur {
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
}
.cursor-blink {
animation: cursor-blink 1s step-end infinite;
}
@keyframes cursor-blink {
from,
to {
border-color: transparent;
}
50% {
border-color: currentColor;
}
}
::selection {
background: rgb(59 130 246 / 20%);
}