-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmapsStyles.css
More file actions
121 lines (106 loc) · 1.96 KB
/
mapsStyles.css
File metadata and controls
121 lines (106 loc) · 1.96 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
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
/*setting up fonts and formatting for headers*/
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700&subset=latin-ext');
h1{
margin-top: 10px;
text-align: center;
margin-bottom: 1em;
}
h2{
text-align: center;
margin-bottom: 5px;
}
h3, h5, h6{
margin-top: 0px;
text-align: center;
margin-bottom: 5px;
}
h2{
margin-top: 10px;
}
h5{
text-align: center;
}
.title{
margin-top: 5rem;
color:rgb(244, 255, 250);
}
body{
font-family: 'Quicksand', sans-serif;
font-size: 15px;
margin: 0;
padding: 0;
min-height: 100vh;
background: #ACFFFF;
justify-content: center;
align-items: center;
}
html{
position: relative;
overflow-x: hidden !important;
font-size: 10px;
}
/* Start of Nav Bar Styling */
header{
background-color: #050505;
}
.container{
width: 100%;
max-width: 98rem;
margin: 0auto;
}
nav{
width: 100%;
height: 7rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.nav-list{
display: flex;
list-style: none;
position: relative;
margin-right: 40px;
}
.nav-item{
padding: 1rem 0;
min-width: 10rem;
text-align: center;
}
.logo{
margin-left: 30px;
}
.nav-link{
font-size: 1.4 rem;
text-transform: uppercase;
text-decoration: none;
color: #45CBD8;
}
.active{
height: 2px;
width: 10rem;
background-color: #ACFFFF;
position: absolute;
bottom: -1rem;
transition: transform .6s;
transform: translateX(20rem);
}
/* Nav Bar Animation */
.nav-item:nth-child(1):hover ~ .active{
transform: translateX(0);
}
.nav-item:nth-child(2):hover ~ .active{
transform: translateX(10rem);
}
.nav-item:nth-child(3):hover ~ .active{
transform: translateX(20rem);
}
.nav-item:nth-child(4):hover ~ .active{
transform: translateX(30rem);
}
.nav-item:nth-child(5):hover ~ .active{
transform: translateX(40rem);
}
/*map size set up*/
#mapid{
height: 600px;
}