-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtype.css
More file actions
129 lines (119 loc) · 2.15 KB
/
type.css
File metadata and controls
129 lines (119 loc) · 2.15 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* Base Styles */
body {
font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
font-size: 16px;
line-height: 1.6;
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
font-family: 'Roboto Condensed', 'Helvetica Neue', Arial, sans-serif;
margin-top: 1.5em;
margin-bottom: 0.5em;
line-height: 1.2;
}
h1 {
font-size: 2.25em;
font-weight: 700;
border-bottom: 2px solid #ddd;
padding-bottom: 0.3em;
}
h2 {
font-size: 1.75em;
font-weight: 600;
border-bottom: 1px solid #ddd;
padding-bottom: 0.2em;
}
h3 {
font-size: 1.5em;
font-weight: 500;
}
h4 {
font-size: 1.25em;
font-weight: 500;
}
h5 {
font-size: 1em;
font-weight: 500;
}
h6 {
font-size: 0.875em;
font-weight: 500;
}
/* Paragraphs */
p {
margin: 0 0 1em 0;
}
/* Links */
.content {
a {
text-decoration: none;
}
a:hover, a:focus {
text-decoration: underline;
}
}
/* Lists */
ul, ol {
margin: 1em 0;
padding-left: 1.5em;
}
li {
margin: 0.5em 0;
}
/* Code */
code, pre {
font-family: 'Fira Code', 'Consolas', 'Monaco', monospace;
color: var(--text-color);
background-color: var(--form-input-background-color);
padding: 0.2em 0.4em;
border-radius: 3px;
}
pre {
padding: 1em;
overflow: auto;
border: solid 1px var(--brand-color);
border-radius: 8px;
}
/* Blockquotes */
blockquote {
border-left: 4px solid #ddd;
margin: 1em 0;
padding: 0.5em 1em;
color: #555;
background-color: #f9f9f9;
}
/* Tables */
table {
border-collapse: collapse;
width: 100%;
margin: 1em 0;
}
th, td {
border: 1px solid #ddd;
padding: 0.75em;
text-align: left;
}
th {
font-weight: bold;
}
/* Media Queries */
@media (max-width: 768px) {
body {
font-size: 15px;
}
h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.25em; }
}
@media (max-width: 480px) {
body {
font-size: 14px;
}
h1 { font-size: 1.75em; }
h2 { font-size: 1.25em; }
h3 { font-size: 1em; }
}