-
Notifications
You must be signed in to change notification settings - Fork 3
/
reset.css
67 lines (66 loc) · 1.13 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
@charset "utf-8";
/*css reset*/
* {
margin:0;
padding:0;
}
body {
font:normal 14px/1.5 "\5FAE\8F6F\96C5\9ED1", Helvetica;
color:#000;
background-color:white;
-webkit-text-size-adjust: none;
}
input[type="text"], textarea {
-webkit-appearance: none;
outline: none;
}
button{
outline: none;
border: none;
}
table {
border-collapse:collapse;
border-spacing:0;
}
fieldset,img {
border:0;
}
address,caption,cite,code,dfn,em,th,var {
font-style:normal;
font-weight:normal;
}
ol,ul,li {
list-style:none;
}
caption,th {
text-align:left;
}
h1,h2,h3,h4,h5,h6 {
font-size:100%;
font-weight:normal;
font-style: normal;
}
q:before,q:after,
blockquote:before, blockquote:after {
content:'';
}
abbr,acronym {
border:0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, img {
display:block;
}
a {
color: #000;
text-decoration: none;
}
.dn,.hide {
display: none !important;
}
.oh {
overflow: hidden !important;
}
.vh {
visibility: hidden !important;
}