-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreset.css
82 lines (68 loc) · 1.31 KB
/
reset.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
.fn-clear {
*zoom: 1;
}
.fn-clear::before,
.fn-clear::after {
content: '';
display: table;
}
.fn-clear::after {
clear: both;
}
.fn-left {
float: left;
}
.fn-right {
float: right;
}
.fn-hide {
display: none;
}
.fn-show {
display: block;
}
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
*,
::after,
::before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
tap-highlight-color: transparent;
}
.disabled-select {
-ms-user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}
.no-appear {
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
appearance: none;
}
body {
/*font: 12px/1.5 'Helvetica Neue',Helvetica,Arial,'Microsoft Yahei','Hiragino Sans GB','Heiti SC','WenQuanYi Micro Hei',sans-serif;*/
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}
body,
html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
-webkit-text-size-adjust: none;
}