-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
88 lines (74 loc) · 1014 Bytes
/
main.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
* {
font-family: 'Open Sans', sans-serif;
}
.container {
width: 90%;
max-width: 786px;
margin: 32px auto;
}
.forms form {
margin: 24px 0;
}
label,
input,
button,
small {
display: block;
}
input {
width: 100%;
max-width: 440px;
margin: 8px 0;
padding: 4px 8px;
font-size: 14px;
border: 1px solid #696969;
box-sizing: border-box;
}
button {
border-radius: 4px;
border: none;
padding: 8px 16px;
cursor: pointer;
font-size: 12px;
transition: all 0.15s ease-in-out;
color: white;
background-color: #536DFE;
}
button:hover,
button:focus,
button:active {
background-color: #304FFE;
}
a {
color: #536DFE;
}
a:hover,
a:active,
a:focus,
a:visited {
color: #536DFE;
}
small {
width: 100%;
max-width: 440px;
}
.content {
margin: 24px 0;
border-top: 1px dashed #696969;
border-bottom: 1px dashed #696969;
}
.item {
margin: 16px 0;
}
.item small {
font-size: 10px;
}
.item p {
margin: 0;
}
.item h3 {
margin: 4px 0;
}
.footer {
font-size: 14px;
}