-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
113 lines (97 loc) · 2.72 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<meta name="author" content="Richard Astbury" />
<title>MuonRevo</title>
<!-- Icons-->
<link
href="vendors/simple-line-icons/css/simple-line-icons.css"
rel="stylesheet"
/>
<link
href="vendors/font-awesome/css/font-awesome.min.css"
rel="stylesheet"
/>
<!-- Main styles for this application-->
<link href="css/style.css" rel="stylesheet" />
<link rel="icon" href="favicon.png" type="image/png" id="favicon" />
<style>
.circle {
width: 40px;
text-align: center;
height: 40px;
border-radius: 50%;
background: #367fa9;
display: block;
float: left;
padding-top: 7px;
margin-right: 8px;
margin-top: -6px;
}
.circle > i {
color: white;
}
.cell-active {
background-color: #f0f3f5 !important;
}
.app-header {
background: #20a8d8;
border-bottom: 0;
}
.navbar-brand {
color:white;
}
.navbar-brand:hover {
color:#e4e7ea;
}
</style>
</head>
<body class="app header-fixed sidebar-fixed aside-menu-fixed sidebar-lg-show">
<header class="app-header navbar">
<button
class="navbar-toggler sidebar-toggler d-lg-none mr-auto"
type="button"
data-toggle="sidebar-show"
>
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="#">
<i class="icon-notebook" style="padding-right:10px;"></i> MuonRevo</span>
</a>
<ul class="nav navbar-nav ml-auto">
<li class="nav-item">
<div class="navbar-custom-menu" id="notification-content"></div>
</li>
<li class="nav-item">
<div class="navbar-custom-menu" id="status-content"></div>
</li>
<li class="nav-item">
<div class="navbar-custom-menu" id="user-content"></div>
</li>
</ul>
</header>
<div class="app-body">
<section class="sidebar">
<div id="menu">
<ul class="sidebar-menu"></ul>
</div>
</section>
<main class="main">
<div class="content-wrapper" id="content">
<section class="content" style="height:100vh">
<div style="padding: 25px;">
<span><i class="fa fa-spinner fa-pulse fa-fw"></i> Loading...</span>
</div>
</section>
</div>
</main>
</div>
<script src="dist/muonrevo.min.js"></script>
</body>
</html>