-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathindex.css
More file actions
63 lines (51 loc) · 900 Bytes
/
index.css
File metadata and controls
63 lines (51 loc) · 900 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
font-size: 16px;
margin: 0;
padding: 0;
color: theme("colors.primary");
font-family: theme("fontFamily.sans");
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1 {
@apply text-4xl font-bold;
}
h2 {
@apply text-3xl font-bold;
}
h3 {
@apply text-2xl font-bold;
}
h4 {
@apply text-xl font-bold;
}
h5 {
@apply text-xl font-normal;
}
h6 {
@apply text-base font-bold;
}
code {
font-family: theme("fontFamily.mono");
}
a,
a:active,
a:visited {
color: theme("colors.primary");
}
a:hover,
a:focus {
color: theme("colors.link-focus");
}
a.external[href*="http"] {
background: url(./external-link-icon.svg) no-repeat 100% 0;
background-size: 1rem 1rem;
padding-right: 1.25rem;
}
h1 a.external[href*="http"] {
background-size: 1.5rem 1.5rem;
padding-right: 2rem;
}