-
Notifications
You must be signed in to change notification settings - Fork 0
/
stations.css
81 lines (71 loc) · 1.31 KB
/
stations.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
* {
margin: 0;
box-sizing: border-box;
}
body {
max-height: 100%;
font-family: "Inter", sans-serif;
font-size: 18px;
background-color: #181918;
place-items: center;
}
nav, header, .nav_links, li{
background-color: #222223;
}
.logo{
width: auto;
height: 50px;
background-color: inherit;
cursor: pointer;
margin-right: auto;
}
li, a {
font-family: "Montserrat", sans-serif;
font-family: 400;
font-size: 16px;
color: #ededed;
text-decoration: none;
}
header{
display: flex;
justify-content: flex-end;
align-items: center;
padding: 10px 10%;
}
.nav_links{
list-style: none;
margin-top: 10px;
}
.nav_links li {
display: inline-block;
padding: 10px 20px;
}
.nav_links li a {
transition: all 0.3s ease 0s;
}
.nav_links li a:hover {
color: #2248D1;
text-decoration: none;
}
/*
@media screen and (max-width: 850px) {
#leftcolumn, #rightcolumn {
float: none;
width: 100%;
padding: 0;
}
}
*/
#info {
color:#ededed;
margin-top: 2%;
}
#mymap {
height: 500px;
max-width: 90%;
margin-top: 2%; /*extra - just to make it look better*/
padding-top: 50px;
box-shadow: 0 8px 32px 0 rgba( 73, 97, 220, 0.5 );
border-radius: 20px;
border: transparent;
}