-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e10db2
commit 1dd50a7
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<div style="margin-top:30px;" class="row"> | ||
<div class="col-md-12"><div class="line black"></div></div> | ||
</div> | ||
<div class="row"> | ||
|
||
<div id="demo" class="col-sm-12"> | ||
|
||
<div class="col-sm-3" > | ||
<canvas id="canvas_animated_watch" width="250" height="250"></canvas> | ||
<img style="display:none" id="watch" src="<?php echo img_url('flatwatch-blank.png');?>"> | ||
</div> | ||
|
||
<div id="clockdiv" class="col-sm-offset-1 col-sm-8"> | ||
<div class="row"> | ||
|
||
<div class="col-sm-12"> | ||
<span class="months"></span>, | ||
<span class="days"></span> | ||
<span class="years"></span> | ||
</div> | ||
|
||
</div> | ||
|
||
<div class="row"> | ||
|
||
<div class="col-sm-offset-1 col-sm-7"> | ||
|
||
<span class="hours"></span> | ||
:<span class="minutes"></span> | ||
:<span class="seconds"></span> | ||
|
||
</div> | ||
|
||
<div class="col-sm-3"> | ||
<img style="margin-top:-5px" id="moonPhaseImage" src="<?php echo base_url();?>/assets/img/moon/" border="0" width="100%" height="100%" title=""> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
<style media="screen"> | ||
#clockdiv{ | ||
margin-top: 30px; | ||
color: #4d77a7; | ||
display: inline-block; | ||
font-weight: 100; | ||
text-align: center; | ||
font-size: 40px; | ||
} | ||
|
||
#clockdiv > div{ | ||
padding: 10px; | ||
display: inline-block; | ||
} | ||
|
||
.smalltext{ | ||
padding-top: 5px; | ||
font-size: 16px; | ||
} | ||
</style> |