-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
57 lines (51 loc) · 987 Bytes
/
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
:root {
background-color: #4F78D1;
}
#random-location-button {
padding: 10px 20px;
background-color: #FFFFFF;
border: none;
font-weight: bolder;
border-radius: 5px;
color: rgb(23, 23, 23);
font-size: 20px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
#random-location-button:hover {
background-color: #dbdada;
}
.contact {
padding: 10px;
display: flex;
position: center;
align-items: space-around;
justify-content: center;
flex-direction: row;
}
.contact a {
margin: 10px;
font-size: 2rem;
text-align: center;
display: inline-block;
color: #E4E5EB;
}
.contact:hover {
color: #00754a;
}
.pop-up {
position: absolute;
top: 0;
right: 0;
margin: 15px;
padding: 0.1%;
background-color: rgba(173, 216, 230, 0.471);
border-radius: 10px;
font-weight: bold;
padding-left: 0.75%;
padding-right: 0.5%;
font-family: monospace;
font-size: medium;
/* Box shadow*/
box-shadow: 5px 10px #00000035;
}