"calendar"
Bootstrap 3.0.0 Snippet by evarevirus

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
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<html ng-app="starter">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Beautiful Agenda</title>
<link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet">
<script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>
</head>
<body ng-controller="MyCtrl">
<ion-pane>
<ion-header-bar class="bar-dark" style="background-color:#009d97">
<h1 class="title">Beautiful Agenda</h1>
</ion-header-bar>
<div id="gridHeader" class="grid-header" ng-style="{'overflow': 'false', 'width' : (200 * rooms.length + 60) + 'px', 'left':'-'+timerleft}">
<div class="grid-header-clock" style="left: 0px;">
</div>
<div class="grid-header-labels" ng-repeat="room in rooms">
<div class="grid-header-label">{{room.name}}
<div class="grid-header-label-divider"></div>
</div>
</div>
</div>
<ion-content scroll="true" direction="xy" has-bouncing="false" on-scroll="gotScrolled()">
<div id="gridBody" class="grid-body ui-block" >
<div style="position:relative" ng-repeat="day in days">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
.grid-header {
background-color:#aaa;
background-size: 34px;
border-bottom: 1px solid #ddd;
overflow: hidden;
box-shadow: 0 0 3px 0;
position: fixed;
top:43px;
display:block;
z-index:1035;
}
.grid-header-labels {
padding-left: 60px;
}
.grid-header-label {
width:120px;
float: left;
padding: 10px 5px;
height: 40px;
text-align: center;
background: #009d97;
color: #fff;
cursor: pointer;
position: relative;
}
.grid-header-label-divider{
border-right: 1px solid #cbcbcb;
position: static ;
right:0;
bottom:0;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: