-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
174 lines (138 loc) · 3.08 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
@import url('https://fonts.googleapis.com/css2?family=DM+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
* {
font-family: 'DM Sans', sans-serif;
}
body {
margin: 0px;
}
html {
background-color: #004E64;
}
h2 {
text-transform: uppercase;
font-size: 24pt;
font-family: 'Josefin Sans', sans-serif;
}
#container {
background-color: #004E64;
color: white;
margin-top: 100px;
display: flex;
}
/* ************************************************************************************************ */
/* Styling the banner at the top of the page */
#title_banner {
background-color: #9FFFCB;
padding: 50px;
display: flex;
text-align: center;
height: 155px;
}
#title_banner img {
width: 150px;
}
#title_banner h1 {
color: #133C55;
padding-top: 20px;
padding-left: 20px;
font-size: 35pt;
font-family: 'Josefin Sans', sans-serif;
text-transform: uppercase;
}
/* ************************************************************************************************ */
/* Styling the introduction */
#instructions {
background-color: #25A18E;
color: #023047;
text-align: center;
font-size: 14pt;
padding: 50px;
}
#instructions h4 {
width: 400px;
margin-left: auto;
margin-right: auto;
}
#logo_image:hover {
content: url("images/airplane.png");
}
/* ************************************************************************************************ */
/* Styling the left section */
#left_container {
padding: 50px;
width: 20%;
}
#left_container h3 {
color: #9FFFCB;
}
#customize {
margin-top: 80px;
}
#flag_container img {
width: 15%;
padding: 2px;
opacity: 0;
}
#not_visited_option {
margin-top: 20px;
}
#outline_options {
margin-top: 30px;
}
.outline_option {
margin-top: 10px;
}
#visited_color, #not_visited_color, #outline_color {
background-color: #004E64;
border: none;
}
#visited_color:hover, #not_visited_color:hover, #outline_color:hover {
background-color: #9FFFCB;
}
/* ************************************************************************************************ */
/* Styling the map */
#map {
margin-left: auto;
margin-right: auto;
padding-top: 70px;
width: 315px;
}
/* ************************************************************************************************ */
/* Styling the goals and stats section */
#goals_and_stats {
padding: 50px;
width: 20%;
}
#right_column {
margin-left: 20px;
}
#visit_countries_sentence {
display: inline-flex;
padding-top: 20px;
padding-bottom: 20px;
font-size: 12pt;
}
#visit_countries_sentence input {
margin-left: 10px;
margin-right: 10px;
}
#country_checklist {
margin-top: 50px;
}
#country_checkboxes {
display: flex;
margin-bottom: 20px;
}
#updated_message_num, #updated_message_type {
margin-top: 0px;
color: #7AE582;
}
#visit_number_goal {
border-radius: 40%;
text-align: center;
font-size: 12pt;
}
#visit_number_goal:hover {
background-color: #9FFFCB;
}