-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
72 lines (72 loc) · 995 Bytes
/
styles.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
68
69
70
71
72
body{
margin: 0;
font-family: Roboto;
}
.wrapper{
max-width: 960px;
margin: 0 auto;
}
h1{
margin: 40px auto;
color: #ff0aa7;
text-align: center;
}
ul{
padding: 0;
list-style-type: none;
}
li{
padding: 6px 10px;
border: 1px solid #eee;
margin: 10px auto;
}
li h4{
color: #ff0aa7;
margin: 0;
text-transform: capitalize;
}
li p{
color: #333;
margin: 8px 0 0;
}
footer{
background: #eee;
padding: 60px;
margin-top: 60px;
}
form{
max-width: 960px;
margin: 0 auto;
text-align: center;
}
label{
display: block;
font-weight: bold;
font-size: 0.8em;
color: #333;
margin: 16px 0 6px;
}
input, select{
padding: 6px;
border: 1px solid #e1e1e1;
border-radius: 4px;
}
.field{
display: inline-block;
margin: 0 10px;
}
button{
color: white;
border: 0;
background: #ff0aa7;
padding: 6px;
min-width: 80px;
border-radius: 4px;
}
footer a{
text-align: center;
display: block;
color: #999;
margin-top: 40px;
font-size: 0.7em;
}