-
Notifications
You must be signed in to change notification settings - Fork 41
/
styles.css
95 lines (86 loc) · 1.9 KB
/
styles.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
html {
height: 100%;
background-color: #e3e2df;
background-size: cover;
}
#welcome_text {
color: #fff2e3;
display: flex;
align-items: center;
justify-content: center;
margin-top: 3%;
font-family: sans-serif;
font-size: 2.5em;
text-shadow: 0 0 3.5px #000;
font-weight: bold;
}
#city_count_text {
color: #fff2e3;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: auto;
font-family: sans-serif;
font-size: 2.5em;
text-shadow: 0 0 3.5px #000;
font-weight: bold;
}
#map_container {
/*border: 3px solid white;
border-radius: 10px; */
display: flex;
align-items: center;
justify-content: center;
margin-left: auto;
margin-right: auto;
margin-top: 5%;
width: 1250px;
height: 550px;
background-color: #e3e2df;
}
#download_button {
margin-left: 335px;
margin-top: 0.5em;
padding: 0.5em 1.7em;
border: 0.16em solid rgb(255, 255, 255);
border-radius: 2em;
box-sizing: border-box;
text-decoration: none;
font-family: "Roboto", sans-serif;
font-weight: 300;
color: #000000;
text-shadow: 0 0.04em 0.04em rgba(255, 255, 255, 0.253);
text-align: center;
transition: all 0.2s;
cursor: pointer;
}
#download_button:hover {
color: black;
background-color: #EFAE88;
}
#github_logo {
margin-left: 1000px;
opacity: 0.5;
}
#reset_button {
padding: 0.5em 1.7em;
border: 0.16em solid rgb(255, 255, 255);
border-radius: 2em;
box-sizing: border-box;
text-decoration: none;
font-family: "Roboto", sans-serif;
font-weight: 300;
color: #000000;
text-shadow: 0 0.04em 0.04em rgba(255, 255, 255, 0.253);
text-align: center;
transition: all 0.2s;
cursor: pointer;
}
#reset_button:hover {
color: black;
background-color: #EFAE88;
}
#buttonGroup {
margin-left: 335px;
margin-top: 1em;
}