-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathreset.less
More file actions
102 lines (85 loc) · 1.72 KB
/
Copy pathreset.less
File metadata and controls
102 lines (85 loc) · 1.72 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
-webkit-tap-highlight-color: transparent;
-webkit-text-size-adjust: 100%;
font-family: sans-serif;
scroll-behavior: smooth;
}
body {
line-height: 1.5;
overflow-x: hidden;
min-height: 100vh;
text-rendering: optimizeSpeed;
display: flex;
flex-direction: column;
justify-content: flex-start;
padding: 0;
margin: 0;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
}
table {
border-collapse: collapse;
border-spacing: 0;
}
[tabindex="-1"]:focus {
outline: none !important;
}
[hidden] {
display: none !important;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
-webkit-appearance: listbox;
}
svg:not(:root) {
overflow: hidden;
}
img {
vertical-align: middle;
border-style: none;
max-width: 100%;
object-fit: cover;
height: auto;
}
//img:not([alt]) {
// filter: blur(2px);
//}
article > * + * {
margin-top: 1em;
}
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
[disabled], .disabled {
pointer-events: none!important;
color: lightgray!important;
}