-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (61 loc) · 1003 Bytes
/
style.css
File metadata and controls
61 lines (61 loc) · 1003 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
body {
text-align: center;
padding: 25px 0;
}
body,
input {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
label {
display: none;
}
p {
font-size: 18px;
color: #333;
margin: 15px 0 25px;
}
input {
padding: 5px 10px;
font-size: 15px;
border: 1px solid #ddd;
line-height: 24px;
vertical-align: top;
margin-bottom: 10px;
box-sizing: border-box;
}
input[type="email"] {
width: 100%;
max-width: 250px;
}
input[type="submit"],
a.button {
display: inline-block;
padding: 0.75rem 1.5rem;
text-decoration: none;
border-radius: 3px;
background: #3a7df8;
border-color: #3a7df8;
color: #fff;
font-weight: bold;
font-size: 16px;
cursor: pointer;
}
h1 {
padding: 0 25px;
}
h1 img {
max-width: 300px;
}
footer {
margin-top: 2rem;
font-size: 13px;
color: #888;
}
footer a {
text-decoration: none;
color: inherit;
}
footer a:hover {
text-decoration: underline;
}