-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSaferWalk.css
120 lines (105 loc) · 2.16 KB
/
SaferWalk.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 16px;
line-height: 1.6;
height: 100%;
color: white;
margin: 0px;
padding: 0px;
}
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #fff;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
z-index: 100;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
height: 80px;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.logo {
font-size: 28px;
font-weight: bold;
color: #333;
text-decoration: none;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-links {
display: flex;
justify-content: space-between;
align-items: center;
list-style: none;
}
.nav-links li {
margin-left: 20px;
}
.nav-links a {
color: #333;
text-decoration: none;
}
.hero {
height: calc(100vh - 80px);
background: url("Maps\ BG.png") center/cover no-repeat;
padding: 5px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
#map {
height: 85vh;
width: 100%;
}
.custom-map-control-button {
background-color: #fff;
border: 0;
border-radius: 2px;
box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
margin: 10px;
padding: 0 0.5em;
font: 400 18px Roboto, Arial, sans-serif;
overflow: hidden;
height: 40px;
cursor: pointer;
}
.custom-map-control-button:hover {
background: rgb(235, 235, 235);
}
.Manual {
display: flex;
justify-content: center;
align-items: center;
color: black;
}
#myH2 {
color:black;
}
#location-input, #location-button {
display: flex;
align-items: center;
margin: auto;
}
.fade-in-section {
opacity: 0;
transform: translateY(20px);
transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-section.visible {
opacity: 1;
transform: translateY(0);
}