-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.css
More file actions
78 lines (63 loc) · 1.04 KB
/
globals.css
File metadata and controls
78 lines (63 loc) · 1.04 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
:root {
--black: #000000;
--white: #ffffff;
--stone-500: #78716c;
--stone-700: #44403c;
--stone-800: #292524;
--stone-950: #0c0a09;
--yellow-300: #facc15;
--yellow-400: #fbbf24;
--yellow-500: #eab308;
--yellow-600: #ca8a04;
--amber-400: #fbbf24;
--amber-500: #f59e0b;
--gap: 0.25rem;
--rounded-sm: 0.25rem;
--rounded-md: 0.375rem;
--rounded-lg: 0.5rem;
--rounded-xl: 0.75rem;
--rounded-2xl: 1rem;
--rounded-3xl: 1.5rem;
--rounded-full: 9999px;
--radial-gradient: radial-gradient(
50% 50% at 50% 50%,
rgba(255, 168, 0, 0.2) 0%,
rgba(0, 0, 0, 0) 100%
);
}
* {
scroll-behavior: smooth;
}
body {
font-size: 16px;
font-family: "Onest Variable", sans-serif;
color: var(--white);
background-color: var(--black);
}
h1 {
font-size: 48px;
font-weight: 700;
line-height: 1.25;
}
h2 {
font-size: 36px;
}
h3 {
font-size: 24px;
}
h4 {
font-size: 32px;
}
h2,
h3,
h4 {
font-weight: 600;
line-height: 1.25;
}
p {
font-size: 20px;
}
a {
color: var(--white);
text-decoration: none;
}