reset.css
1.48 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
@charset "utf-8";
/* CSS Document */
html,body,ul,li,ol,dl,dd,dt,p,h1,h2,h3,h4,h5,h6,form,fieldset,legend,img
{
margin: 0;
padding: 0;
}
fieldset,c
{
border: none;
}
img {
display: block;
}
address,caption,cite,code,dfn,th,var
{
font-style: normal;
font-weight: normal;
}
ul,ol,li
{
list-style: none;
}
body {
color: #333;
font: 14px PingFang SC, microsoft yahei, sans-serif;
background: #FCFCFC;;
}
a {
color: #fff;
text-decoration: none;
}
/*清除浮动*/
.clear {
clear: both
}
* {
box-sizing: border-box
}
.border-1px::after {
content: '';
position: absolute;
top: 0;
left: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 200%;
height: 200%;
-webkit-transform: scale(0.5);
transform: scale(0.5);
-webkit-transform-origin: left top;
transform-origin: left top;
pointer-events: none;
}
body,html,#app
{
height: 100%;
background: #FCFCFC;
}
.leftRightPadding{
padding: 0 10px;
}
.carColor{
width: 28px;
height: 17px;
display: inline-block;
vertical-align: middle;
}
.blueBg{
background: url("../images/myCars/blue.png");
background-size: 100% 100%;
}
.yellowBg{
background: url("../images/myCars/yellow.png");
background-size: 100% 100%;
}
.whiteBg{
background: url("../images/myCars/white.png");
background-size: 100% 100%;
}
.blackBg{
background: url("../images/myCars/black.png");
background-size: 100% 100%;
}
.greenBg{
background: url("../images/myCars/green.png");
background-size: 100% 100%;
}