-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
108 lines (89 loc) · 1.21 KB
/
styles.css
File metadata and controls
108 lines (89 loc) · 1.21 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
html {
font-family: sans-serif;
line-height: 1.4;
}
body {
text-align: center;
}
header, main, footer, nav[role=navigation] {
margin-left: auto;
margin-right: auto;
max-width: 512px;
text-align: left;
}
header {
margin-top: 3rem;
text-align: center;
}
footer {
border-top: 1px solid black;
clear: both;
font-size: 90%;
padding-bottom: 5rem;
padding-top: 0.5rem;
text-align: right;
}
footer p {
margin-top: 0;
}
main {
padding-bottom: 2rem;
}
form input[type=text],
form input[type=submit],
form input[type=email],
form textarea {
box-sizing: border-box;
display: block;
margin: 0.5rem 0;
padding: 0.5rem;
width: 100%;
}
a {
border-bottom: 1px dashed #999;
color: black;
text-decoration: none;
}
a:hover {
color: #977;
}
dl {
display: block;
width: 100%;
}
dt, dd {
margin: 0;
padding-bottom: 1rem;
}
dt:last-child, dd:last-child {
padding-bottom: 0;
}
dt {
clear: left;
float: left;
width: 30%;
}
dd {
float: left;
margin: 0;
width: 70%;
}
dd pre {
margin: 0;
padding: 0;
}
dl:after {
clear: both;
content: '';
display: table;
}
h2, h3 {
padding-top: 1rem;
}
.logo {
width: 100px;
}
p {
margin-bottom: 1em;
margin-top: 1rem;
}