-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
62 lines (53 loc) · 798 Bytes
/
base.css
File metadata and controls
62 lines (53 loc) · 798 Bytes
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
* {
margin: 0;
padding: 0;
font-size: inherit;
color: inherit;
box-sizing: inherit;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-font-smoothing: antialiased;
}
*:focus {
outline: none;
}
html,
body {
height: 100%;
}
html {
box-sizing: border-box;
}
body {
background-color: #ecf0f1;
min-width: 300px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
}
h1, h2, h3, h4, h5 {
display: block;
font-weight: 400;
}
li, span, p, a, h1, h2, h3, h4, h5 {
line-height: 1;
}
p {
display: block;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
img {
display: block;
max-width: 100%;
height: auto;
border: 0;
}
button {
background-color: transparent;
border: 0;
cursor: pointer;
}