-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
132 lines (112 loc) · 2.49 KB
/
styles.css
File metadata and controls
132 lines (112 loc) · 2.49 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: rgb(254, 254, 254);
--foreground: rgb(25, 23, 23);
--muted: rgba(25, 23, 23, 0.64);
--border: rgba(23, 23, 23, 0.12);
--card: rgba(254, 254, 254, 0.84);
--card-strong: rgb(254, 254, 254);
--brand: rgb(25, 23, 23);
--brand-soft: rgb(82, 150, 199);
--accent: rgb(82, 150, 199);
--accent-soft: rgb(242, 211, 86);
--danger: #b91c1c;
--ring: rgba(82, 150, 199, 0.28);
--shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
color: var(--foreground);
background:
radial-gradient(circle at top left, rgba(242, 211, 86, 0.18), transparent 24%),
radial-gradient(circle at top right, rgba(82, 150, 199, 0.1), transparent 24%),
linear-gradient(180deg, rgb(254, 254, 254) 0%, rgba(192, 193, 194, 0.16) 100%);
font-family: "Source Sans 3", "Segoe UI", Roboto, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: light;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
min-width: 320px;
min-height: 100vh;
color: var(--foreground);
background: transparent;
}
a {
color: inherit;
text-decoration: none;
}
button,
input,
select,
textarea {
font: inherit;
}
#root {
min-height: 100vh;
}
.app-shell {
min-height: 100vh;
background:
radial-gradient(circle at center top, rgba(255, 255, 255, 0.7), transparent 42%),
linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)),
transparent;
}
.sheet-overlay[data-state="open"] {
animation: sheet-overlay-in 180ms ease-out forwards;
}
.sheet-overlay[data-state="closed"] {
animation: sheet-overlay-out 140ms ease-in forwards;
}
.sheet-content[data-state="open"] {
animation: sheet-content-in 220ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.sheet-content[data-state="closed"] {
animation: sheet-content-out 180ms cubic-bezier(0.7, 0, 0.84, 0) forwards;
}
@keyframes sheet-overlay-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes sheet-overlay-out {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes sheet-content-in {
from {
opacity: 0;
transform: translateX(-24px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes sheet-content-out {
from {
opacity: 1;
transform: translateX(0);
}
to {
opacity: 0;
transform: translateX(-18px);
}
}