This repository has been archived by the owner on May 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (84 loc) · 1.54 KB
/
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
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
@import url('https://fonts.googleapis.com/css?family=Rubik:400,500,700');
body {
font-family: 'Rubik', sans-serif;
background-color: black;
overflow: hidden;
}
.container {
display: flex;
flex-direction: column;
height: 100%;
}
nav.navbar {
width: 100%;
background: hsl(20, 12%, 29%);
padding: 0;
border-bottom: 4px solid #362f2b;
box-shadow:0 2px 5px 0 rgba(0,0,0,.2);
}
nav.navbar ul {
margin: 0;
padding: 0;
list-style: none;
display: flex;
align-items: stretch;
}
nav.navbar li {
display: flex;
align-items: center;
border-right: 1px solid #362f2b;
}
nav.navbar a {
padding: 0.5em 1em;
text-transform: uppercase;
text-decoration: none;
color: #fff;
}
nav.navbar a.active {
color: rgb(255, 255, 255);
font-weight: bold;
text-decoration: none;
}
nav.navbar img {
height: 28px;
display: flex;
}
nav.navbar a:hover,nav.navbar a:focus {
background-color: #61534c;
}
#logo-link {
padding: 0 1em;
min-width: unset;
}
#logo-mobile {
display: none;
}
nav.navbar i {
display: none;
}
#map {
flex-grow: 1 1 auto;
background-color: black;
}
iframe {
margin: 0;
padding: 0;
}
@media screen and (max-width: 767px) {
#logo {
display: none;
}
#logo-mobile {
display: block;
}
nav.navbar a {
font-size: 0.6rem;
text-align: center;
min-width: 52px;
}
nav.navbar i {
display: block;
font-size: 1rem;
font-size: 1.25rem;
}
}