-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaps.css
More file actions
76 lines (66 loc) · 1.16 KB
/
maps.css
File metadata and controls
76 lines (66 loc) · 1.16 KB
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
#granim-canvas{
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: -1;
}
#navbar_div {
display: flex;
justify-content: space-around;
font-family: Helvetica;
background: rgb(53, 51, 51);
font-size: 15px;
padding: 5px;
line-height: 50px;
}
#logo{
width: 16%;
}
#logo:hover {
animation-duration: 3s;
animation-name: zoomout;
}
@keyframes zoomout {
0% {
transform: scale(1.0);
}
50%{
transform: scale(0.9);
}
100%{
transform: scale(1.0);
}
}
.items{
color: white;
padding: 5px;
}
img {
width: 300px;
}
#current:hover{
background-color: green;
}
.items:hover { /* pseudoclass */
background-color: gray;
opacity: 0.5;
}
@media(max-width: 500px){
#navbar_div a{
font-size: 13px;
}
}
a {
width: 20%;
text-align: center;
text-decoration: none;
}
/* Set the size of the div element that contains the map */
#map {
height: 400px;
/* The height is 400 pixels */
width: 100%;
/* The width is the width of the web page */
}