-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.css
70 lines (61 loc) · 906 Bytes
/
common.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
/* css
* @Author: i-curve
* @Date: 2023-08-10 12:21:35
* @Last Modified by: i-curve
* @Name:
*/
html {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 62.5%;
}
body {
margin: 0;
}
* {
box-sizing: border-box;
/* firefox */
-moz-box-sizing: border-box;
/* chrome safari */
-webkit-box-sizing: border-box;
/* IE8 以下 */
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
}
.content-box {
box-sizing: content-box;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
-ms-box-sizing: content-box;
-o-box-sizing: content-box;
}
a {
text-decoration: none;
color: #333;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin: 0;
font-weight: normal;
}
img {
width: 100%;
}
textarea,
input {
outline: none;
}
.clearfix::after {
content: "";
display: block;
clear: both;
}