-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset.scss
66 lines (58 loc) · 1.63 KB
/
reset.scss
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
*,
*::before,
*::after {
box-sizing: border-box; /* Set the sizing of an element to include it's border */
}
* {
margin: 0; /* Set the default margin to 0 */
padding: 0; /* Set the default padding to 0 */
}
ul[role='list'],
ol[role='list'] {
list-style: none; /* Turn off numbered and unordered list decoration */
}
html:focus-within {
scroll-behavior: smooth; /* Make the scrolling inside of any scrollable element smooth */
}
a:not([class]) {
text-decoration-skip-ink: auto; /* Makes link undelines look better */
}
img,
picture,
svg,
video,
canvas {
max-width: 100%; /* Makes it responsive */
height: auto; /* Makes it responsive */
vertical-align: middle; /* Makes text next to inline images look better */
font-style: italic; /* If the images don't load it makes the alt decription look better */
background-repeat: no-repeat;
/* The background repeat and size are there if you want to load a picture first like a backroung image that is worse quality while the better quality image loads */
background-size: cover;
}
input,
button,
textarea,
select {
font: inherit; /* Makes these elements inherit fonts */
}
/* Turns off animation for people who don't want to see them */
@media (prefers-reduced-motion: reduce) {
html:focus-within {
scroll-behavior: auto;
}
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
transition: none;
}
}
body,
html {
height: 100%; /* Makes the body element full screen */
scroll-behavior: smooth; /* Makes normal scrolling smooth */
}