-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
203 lines (179 loc) · 3.3 KB
/
index.css
File metadata and controls
203 lines (179 loc) · 3.3 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
/**
Block model normalization
*/
*,
::before,
::after {
box-sizing: border-box;
}
/**
Remove internal indentation on the left of list tags,
which have the class attribute
*/
:where(ul, ol):where([class]) {
padding-left: 0;
}
/**
Remove external indentation of body and two other tags,
which have the class attribute.
*/
body,
:where(blockquote, figure):where([class]) {
margin: 0;
}
/**
Remove external vertical indentation for the required tags,
which have the class attribute.
*/
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
margin-block: 0;
}
:where(dd[class]) {
margin-left: 0;
}
:where(fieldset[class]) {
margin-left: 0;
padding: 0;
border: none;
}
/**
Remove the standard marker for a bulleted list,
which has the class attribute
*/
:where(ul[class]) {
list-style: none;
}
:where(address[class]) {
font-style: normal;
}
/**
Zero out vertical outer indents of a paragraph,
declare a local variable for the outer indent down,
to avoid interacting with the more complex selector
*/
p {
--paragraphMarginBottom: 24px;
margin-block: 0;
}
/**
External indent down for a paragraph without class attribute,
which is not last among its neighboring elements
*/
p:where(:not([class]):not(:last-child)) {
margin-bottom: var(--paragraphMarginBottom);
}
/**
Simplify your work with images and videos
*/
img,
video {
display: block;
max-width: 100%;
height: auto;
}
/**
Inherit font properties for input fields
*/
input,
textarea,
select,
button {
font: inherit;
}
html {
/**
Useful in most situations
(when, for example, you need to "pin" the footer to the bottom of the site)
*/
height: 100%;
/**
Remove interface horizontal jump
when scrollbar appears / disappears
*/
scrollbar-gutter: stable;
}
/**
Smooth Scrolling
*/
html,
:has(:target) {
scroll-behavior: smooth;
}
body {
/**
Useful in most situations
(when, for example, you need to "pin" the footer to the bottom of the site)
*/
min-height: 100%;
/**
Uniform spacing
*/
line-height: 1.5;
}
/**
Normalize the height of a link element when inspecting it in DevTools
*/
a:where([class]) {
display: inline-flex;
}
/**
Cursor-hand when hovering over an item
*/
button,
label {
cursor: pointer;
}
/**
Colorize the svg elements of
(except those that already have the
attribute fill with a value of 'none' or start with 'url')
*/
:where([fill]:not([fill="none"],
[fill^="url"])) {
fill: currentColor;
}
/**
Colorize the svg elements of
(except for those that already have the
stroke attribute set to 'none')
*/
:where([stroke]:not([stroke="none"],
[stroke^="url"])) {
stroke: currentColor;
}
/**
Fix color change delay bug when interacting with svg elements
*/
svg * {
transition-property: fill, stroke;
}
/**
Bringing table frames into classic 'collapse' view
*/
:where(table) {
border-collapse: collapse;
border-color: currentColor;
}
/**
Remove all animations and transitions for people
who prefer not to use them.
*/
@media (prefers-reduced-motion: reduce) {
*,
::before,
::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}