-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (34 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>Hostel Scheduler</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="node_modules/fullcalendar/dist/fullcalendar.min.css">
<link rel="stylesheet" href="node_modules/fullcalendar-scheduler/dist/scheduler.min.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap-theme.min.css">
<script src="bundle.js"></script>
<style type="text/css">
body {
margin-top: 40px;
text-align: center;
font-size: 14px;
font-family: "Lucida Grande", Helvetica, Arial, Verdana, sans-serif;
}
#calendar {
width: 90%;
margin: 0 auto;
}
.modal-dialog {
width: 90% !important;
}
.form-horizontal .form-group {
margin-right: 0;
margin-left: 0;
}
</style>
</head>
<body>
<div id='calendar'></div>
</body>
</html>