-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset.css
More file actions
115 lines (115 loc) · 1.62 KB
/
reset.css
File metadata and controls
115 lines (115 loc) · 1.62 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* RESET */
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
address,
em,
img,
strong,
u,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
article,
aside,
figure,
figcaption,
footer,
header,
nav,
section,
time,
audio,
video{
border:0;
font-size:100%;
font:inherit;
margin:0;
padding:0;
vertical-align:baseline;
}
html{scroll-behavior:smooth;}
body{
background:#fff;
color:#000;
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
line-height:1;
}
ol,
ul,
li{list-style:none;}
strong{font-family:Arial, Helvetica, sans-serif;}
table{
border-collapse:collapse;
border-spacing:0;
width:100%;
}
img{width:100%;}
a,
a:hover{
color:#000;
text-decoration:none;
cursor:pointer;
}
:focus{outline:0;}
:hover{transition:.3s ease;}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select{
border:0;
border-bottom:1px solid #000;
color:#000;
padding:8px 0;
font:14px Arial, Helvetica, sans-serif;
background:transparent;
width:100%;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus{border-color:#900;}
input[type="submit"],
input[type="button"],
button{
border:1px solid #000;
text-transform:uppercase;
padding:10px 30px;
color:#000;
font:12px Arial, Helvetica, sans-serif;
background:transparent;
}
input[type="text"]:placeholder,
input[type="email"]:placeholder,
input[type="tel"]:placeholder,
input[type="search"]:placeholder,
input[type="url"]:placeholder{color:#666;}