-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.css
121 lines (104 loc) · 3.84 KB
/
global.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
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: "Inter-Regular";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("../fonts/Inter-Regular.ttf") format("embedded-opentype"),
/* Internet Explorer */ url("../fonts/Inter-Regular.ttf") format("woff2"),
/* Super Modern Browsers */ url("../fonts/Inter-Regular.ttf") format("woff"),
/* Pretty Modern Browsers */ url("../fonts/Inter-Regular.ttf")
format("truetype"),
/* Safari, Android, iOS */ url("../fonts/Inter-Regular.ttf") format("svg"); /* Legacy iOS */
}
@font-face {
font-family: "Inter-SemiBold";
font-style: normal;
font-weight: 900;
font-display: swap;
src: url("../fonts/Inter-SemiBold.ttf") format("embedded-opentype"),
/* Internet Explorer */ url("../fonts/Inter-SemiBold.ttf") format("woff2"),
/* Super Modern Browsers */ url("../fonts/Inter-SemiBold.ttf")
format("woff"),
/* Pretty Modern Browsers */ url("../fonts/Inter-SemiBold.ttf")
format("truetype"),
/* Safari, Android, iOS */ url("../fonts/Inter-SemiBold.ttf") format("svg"); /* Legacy iOS */
}
@font-face {
font-family: "Inter-Black";
font-style: normal;
font-weight: 900;
font-display: swap;
src: url("../fonts/Inter-Black.ttf") format("embedded-opentype"),
/* Internet Explorer */ url("../fonts/Inter-Black.ttf") format("woff2"),
/* Super Modern Browsers */ url("../fonts/Inter-Black.ttf") format("woff"),
/* Pretty Modern Browsers */ url("../fonts/Inter-Black.ttf")
format("truetype"),
/* Safari, Android, iOS */ url("../fonts/Inter-Black.ttf") format("svg"); /* Legacy iOS */
}
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 222.2 84% 4.9%;
--card: 0 0% 100%;
--card-hover: 0 0% 97%;
--card-foreground: 222.2 84% 4.9%;
--popover: 0 0% 100%;
--popover-foreground: 222.2 84% 4.9%;
--primary: 237 100% 70%;
--primary-foreground: 237 100% 99%;
--secondary: 210 40% 96.1%;
--secondary-foreground: 222.2 47.4% 11.2%;
--muted: 210 40% 96.1%;
--muted-foreground: 215.4 16.3% 46.9%;
--accent: 237 100% 70%;
--accent-foreground: 237 100% 99%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 210 40% 98%;
--border: 214.3 31.8% 91.4%;
--input: 214.3 31.8% 91.4%;
--ring: 222.2 84% 4.9%;
--radius: 0.5rem;
--font-sans: "Inter-Regular", system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
"Noto Color Emoji";
--font-semibold: "Inter-SemiBold", system-ui, -apple-system,
BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
"Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol", "Noto Color Emoji";
--font-bold: "Inter-Black", system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
"Noto Color Emoji";
--grid: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='%23f1f5f9'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e");
}
}
@layer base {
* {
@apply border-border;
}
html {
@apply scroll-smooth;
}
body {
@apply bg-background text-foreground font-sans antialiased;
}
p {
@apply pb-4;
}
a:not([class]),
.link {
@apply text-primary hover:text-primary/80 underline;
}
}
@layer components {
.bg-move {
@apply bg-gradient-to-r from-violet-600 via-indigo-600 to-yellow-600 animate-background-move bg-400%;
}
.bg-title {
@apply bg-gradient-to-r from-violet-600 via-indigo-600 to-yellow-600 bg-clip-text inline-block text-transparent animate-background-move bg-400%;
}
}