-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path00_style.css
65 lines (48 loc) · 860 Bytes
/
00_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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
* {
font-family: 'Roboto', sans-serif;
}
.mainColor {
color: rgb(1, 109, 141);
}
.bgColorHeader {
background-color: rgb(1, 109, 141);
}
.colorButton {
border-radius: 10px;
border: 2px solid rgb(1, 109, 141);
}
.borderBotomColor {
border-color: rgb(1, 109, 141);
}
.colorButton:hover .mainColor {
color: white;
}
.textOpacity {
opacity: 0.5;
color: black;
}
.nav-text {
color: white;
text-align: center;
}
.firstButtonPosition {
bottom: 2px;
position: relative;
}
.hamburger {
font-size: 2rem;
}
.navbar-toggler.toggler-example {
cursor: pointer;
}
.dropdown-toggle::after {
display: none;
}
#map {
height: 250px;
width: 100%;
}
.material-icons.md-17 {
font-size: 17px;
}