-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
113 lines (92 loc) · 1.08 KB
/
index.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
/*!
Tester CSS | NOuSantx | Tenk7css v0.0.2
*/
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body,
h1,
h2,
h3,
p,
ul,
li,
figure,
figcaption,
div {
margin: 0;
padding: 0;
}
body {
line-height: 1.6;
}
ul {
list-style: none;
}
h1,
h2,
h3,
h4 {
font-weight: normal;
}
h1 {
font-size: clamp(2rem, 5vw, 3rem);
}
h2 {
font-size: clamp(1.5rem, 4vw, 2.5rem);
}
h3 {
font-size: clamp(1.2rem, 3vw, 2rem);
}
h4 {
font-size: clamp(1rem, 2.5vw, 1.5rem);
}
h5 {
font-size: clamp(0.9rem, 2vw, 1.2rem);
}
h6 {
font-size: clamp(0.8rem, 1.5vw, 1rem);
}
p {
font-size: clamp(1rem, 2vw, 1.5rem);
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
none,
:where([hidden]) {
display: none !important;
}
a,
button {
cursor: pointer;
}