-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcore.css
More file actions
109 lines (96 loc) · 1.36 KB
/
core.css
File metadata and controls
109 lines (96 loc) · 1.36 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
:root {
/* Font Sizes: */
--text-size-80: 0.79rem;
--text-size-90: 0.889rem;
--text-size-100: 1rem;
--text-size-200: 1.125rem;
--text-size-300: 1.266rem;
--text-size-400: 1.424rem;
--text-size-500: 1.602rem;
--text-size-600: 1.802rem;
--text-size-700: 2.027rem;
/* Grayscale */
--white: #fff;
--grayccc: #ccc; /* rgb(204, 204, 204s), 20% */
--grayddd: #ddd;
--gray333: #333;
--black: #000;
}
body,
html {
font-size: var(--text-size-100);
font-weight: 400;
font-style: normal;
line-height: 1.6;
color: var(--gray333);
}
/* TYPOGRAPHY */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
margin-top: 2.25rem;
margin-bottom: 1rem;
font-weight: 700;
text-wrap: pretty;
line-height: 1.15;
letter-spacing: -0.022em;
}
h1,
.h1 {
font-size: var(--text-size-700);
}
h2,
.h2 {
font-size: var(--text-size-600);
}
h3,
.h3 {
font-size: var(--text-size-500);
}
h4,
.h4 {
font-size: var(--text-size-400);
}
h5,
.h5 {
font-size: var(--text-size-300);
}
h6,
.h6 {
font-size: var(--text-size-200);
}
.h1.compact,
.h2.compact,
.h3.compact,
.h4.compact,
.h5.compact,
.h6.compact {
margin-top: 1rem;
}
p,
table {
margin-top: 1rem;
margin-bottom: 1rem;
}
p,
ul,
ol {
text-wrap: pretty;
}
/* BREADCRUMBS */
.breadcrumbs > a {
text-decoration: none;
}
.breadcrumbs > a::after {
content: " > ";
padding: 0 0.125rem;
}