-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
index.html
68 lines (60 loc) · 1.17 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title></title>
</head>
<body>
<!-- Load the application -->
<script src="/dist/common-dependencies.js"></script>
<script src="/dist/root-application.js"></script>
<!-- Static navbar -->
<style>
.navbar {
position: fixed;
top: 0;
left: 0;
background-color: #111D4A;
color: white;
font-size: 18px;
font-weight: bold;
width: 100%;
height: 75px;
display: flex;
align-items: center;
}
.navbar ul {
display: flex;
align-items: center;
list-style-type: none;
height: 100%;
}
.navbar li {
padding-right: 24px;
height: 100%;
}
.navbar li:hover {
opacity: 0.8;
}
.navbar a {
text-decoration: none;
color: white;
}
</style>
<div class="navbar">
<ul>
<a onclick="singleSpaNavigate('/app1')">
<li>
App 1
</li>
</a>
<a onclick="singleSpaNavigate('/app2')">
<li>
App 2
</li>
</a>
</ul>
</div>
</body>
</html>