forked from ozanyerli/turkeyvisited
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
52 lines (48 loc) · 1.07 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
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;
}
#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: 1em;
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;
}
#download_button:hover {
color: black;
background-color: #EFAE88;
}