-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmapinterface.html
More file actions
124 lines (122 loc) · 3.49 KB
/
Copy pathmapinterface.html
File metadata and controls
124 lines (122 loc) · 3.49 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
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SCU Campus Map</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: Roboto, sans-serif;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.header {
background-color: #851a27;
display: flex;
width: 100%;
align-items: center;
justify-content: space-between;
padding: 10px 35px 10px 12px;
box-sizing: border-box;
}
.logo-container {
display: flex;
align-items: center;
gap: 23px;
}
.logo {
width: 80px;
height: auto;
}
.logo-text {
font-size: 36px;
font-weight: 600;
letter-spacing: 0.36px;
color: #ffffff;
}
.contact-info {
text-align: right;
color: #ffffff;
}
.contact-info div {
font-size: 15px;
font-weight: 700;
letter-spacing: 0.15px;
}
.main-content {
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.map-container {
width: 90%;
max-width: 800px;
height: auto;
display: flex;
justify-content: center;
}
.map-container img {
width: 100%;
height: auto;
max-height: 600px;
object-fit: contain;
}
.navigation-bar {
background-color: #851a27;
display: flex;
justify-content: space-around;
padding: 15px 0;
}
.nav-item {
display: flex;
flex-direction: column;
align-items: center;
color: #ffffff;
text-decoration: none;
font-size: 14px;
}
.nav-item img {
width: 24px;
height: 24px;
}
</style>
</head>
<body>
<div class="container">
<header class="header">
<div class="logo-container">
<img src="{{ url_for('static', filename='logo.png') }}" alt="BuddyWalk Logo" class="logo">
<div class="logo-text">BUDDY<span class="bold-yellow">WALK</span></div>
</div>
<div class="contact-info">
<div>SCU Campus Safety</div>
<div>(408) 554-4444</div>
</div>
</header>
<main class="main-content">
<h1>SCU Campus Map</h1>
<div class="map-container">
<img src="{{ url_for('static', filename='scumap.png') }}" alt="SCU Map">
</div>
</main>
<nav class="navigation-bar">
<a href="{{ url_for('map_view') }}" class="nav-item">SCU Map</a>
<a href="{{ url_for('home') }}" class="nav-item">Host</a>
<a href="{{ url_for('list_walks') }}" class="nav-item">Join</a>
<a href="{{ url_for('signout') }}" class="nav-item">Sign Out</a>
</nav>
</div>
</body>
</html>