-
Notifications
You must be signed in to change notification settings - Fork 373
Expand file tree
/
Copy pathapplication.css
More file actions
43 lines (35 loc) · 1.07 KB
/
application.css
File metadata and controls
43 lines (35 loc) · 1.07 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
@font-face {
font-family: "OpenSans-Light";
src: url("../../assets/fonts/OpenSans-Light.ttf") format("truetype");
}
@font-face {
font-family: "OpenSans-Bold";
src: url("../../assets/fonts/OpenSans-Bold.ttf") format("truetype");
}
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
body {
background-image: radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 38%),
radial-gradient(circle at 85% 15%, rgba(245, 158, 11, 0.12), transparent 28%),
linear-gradient(180deg, rgb(255 254 249) 0%, rgb(239 246 255) 50%, rgb(255 250 240) 100%);
font-family: "OpenSans-Light", "Avenir Next", "Segoe UI", sans-serif;
}
h1,
h2 {
font-family: "OpenSans-Bold", "Avenir Next", "Segoe UI", sans-serif;
@apply tracking-tight;
}
h2 {
@apply text-3xl font-medium mt-5 mb-2.5;
}
h3 {
font-family: "OpenSans-Bold", "Avenir Next", "Segoe UI", sans-serif;
@apply text-xl font-medium mt-5 mb-2.5;
}
a {
@apply text-sky-700 transition-colors duration-200;
}
::selection {
@apply bg-amber-200 text-slate-900;
}