-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·42 lines (41 loc) · 1.33 KB
/
index.html
File metadata and controls
executable file
·42 lines (41 loc) · 1.33 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
<html>
<head>
<head>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/0.10.0/angular-material.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=RobotoDraft:300,400,500,700,400italic">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<meta name="viewport" content="initial-scale=1" />
<style>
.add-new{
position: fixed;
right:5%;
top:30px;
z-index: 3000;
}
.md-responsive{
max-width: 100%;
}
</style>
</head>
</head>
<body layout="column">
<md-toolbar layout="row">
<div class="md-toolbar-tools">
<md-button ng-click="toggleSidenav('left')" hide-gt-sm class="md-icon-button">
<md-icon aria-label="Menu" md-svg-icon="https://s3-us-west-2.amazonaws.com/s.cdpn.io/68133/menu.svg"></md-icon>
</md-button>
<h1>Student Profile App</h1>
</div>
</md-toolbar>
<div layout="row" flex>
<div layout="column" flex id="content">
<md-content layout="column" flex class="md-padding">
<div ng-view></div>
</md-content>
</div>
</div>
<script type="text/javascript" src="app/build/vendor.bundle.js"></script>
<script type="text/javascript" src="app/build/bundle.js"></script>
</body>
</html>