-
Notifications
You must be signed in to change notification settings - Fork 0
/
cutereset.css
88 lines (69 loc) · 921 Bytes
/
cutereset.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
html {
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
ul, ol {
padding-left: 1em;
}
img {
max-width: 100%;
height: auto;
}
* {
margin: 0;
padding: 0;
position: relative;
text-rendering: optimizeLegibility;
}
.flex {
display: flex;
}
.flex-direction-column {
flex-direction: column;
}
.flex-1 {
flex: 1;
}
.flex-2 {
flex: 2;
}
.flex-align-center {
align-items: center;
}
.flex-align-start {
align-items: flex-start;
}
.flex-align-stretch {
align-items: stretch;
}
.flex-content-center {
flex-content: center;
}
.flex-justify-center {
justify-content: center;
}
h1, h2, h3, h4, h5, h6 {
line-height: 1.127;
margin-top: 0;
margin-bottom: 0.309rem;
}
h1 {
font-size: 4.23em;
}
h2 {
font-size: 2.617em;
}
h3 {
font-size: 1.618em;
}
h4 {
font-size: 1.272em;
}
h5 {
font-size: 1.127em;
}