-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (79 loc) · 1 KB
/
style.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
89
90
91
92
93
body {
background-image: url(ppl2.jpg);
background-repeat: repeat;
}
header {
background-color: #00B4AC;
position: fixed;
display: block;
top: 0;
left: 0;
width: 100%;
}
.header {
padding-left: 10;
}
#mainhead,
#underhead {
font-family: Montserrat;
}
#mainhead {
font-size: 40px;
}
#underhead {
font-size: 24px;
color: #FFD831;
}
.main,
.signup,
.options,
.congrats {
display: block;
padding: 10px 20px;
background-color: rgba(255, 124, 0, 0.75);
margin-top: 165;
}
.main {
margin-bottom: 90;
}
.options,
.signup,
.interest {
margin-bottom: 85;
}
a {
text-decoration: none;
color: #FF7C00;
transition: 0.5s;
}
a:hover {
color: #FFD831;
transition: 0.5s;
}
h1 {
font-size: 36px;
font-weight: 600;
}
h1,
h2,
h3,
p,
form,
ul {
font-family: Quicksand;
}
p,
ul {
font-size: 20px;
}
footer {
font-family: Anton;
position: fixed;
right: 0;
bottom: 0;
padding: 25px;
width: 100%;
text-align: center;
display: block;
background-color: #00B4AC;
}