-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (81 loc) · 1.32 KB
/
styles.css
File metadata and controls
81 lines (81 loc) · 1.32 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
body {
margin: 0 auto;
max-width: 1000px;
font-family: "Work Sans", sans-serif;
font-size: 16px;
}
.header {
margin-top: 30px;
text-align: center;
}
.header img {
max-height: 150px;
}
.support {
padding-top: 20px;
margin: 20px 0;
text-align: center;
border-top: 1px dashed #355a76;
}
.support span {
margin-top: 10px;
font-size: 11px;
}
@media all and (max-width: 1000px) {
section {
padding: 20px;
}
}
#button-row {
padding-bottom: 40px;
display: flex;
justify-content: space-evenly;
}
#button-row input[type=button] {
outline: none;
padding: 15px 40px;
transition: background-color 0.4s linear;
font-size: 14px;
text-transform: uppercase;
border: none;
background-color: #355a76;
color: #FFF;
letter-spacing: 1px;
}
#button-row input[type=button]:hover {
background-color: #ee5f23;
color: #222;
transition: background-color 0.4s linear;
}
h1 {
color: #355a76;
text-align: center;
font-weight: 700;
font-style: italic;
font-size: 30px;
}
h3 {
color: #ee5f23;
font-weight: 600;
}
p, .crafted {
margin: 20px 0;
font-size: 14px;
font-weight: 200;
text-align: center;
}
p {
padding-bottom: 20px;
border-bottom: 1px dashed #355a76;
}
a {
text-decoration: none;
color: #ee5f23;
font-weight: 400;
}
ol {
line-height: 2em;
}
#result {
padding: 50px 0;
}