-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvote.html
58 lines (57 loc) · 2.35 KB
/
vote.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
<!DOCTYPE html>
<html>
<head>
<title>CCS Week 2015</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" >
<meta charset="utf-8">
<link rel="stylesheet" href="css/bootstrap.min.css" media="screen">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/animate.min.css">
<style>
body
{
background: #ccc;
padding-top: 75px;
padding-bottom: 50px;
}
</style>
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top" style="margin-bottom:8px;padding: 8px 10px 8px 10px;">
<!--<h5 class="pull-right">
<a><span class="fa fa-share-alt fa-lg text-muted animated fadeInRight"></span></a>
</h5>-->
<h5 class="pull-left">
<!--<a><span class="fa fa-chevron-left text-muted"></span></a>-->
<img src="images/ccslogo-sm.png" style="width:26px;vertical-align:text-top;"> Competitions
</h5>
<span class="clearfix"></span>
</div>
<div class="container" style="opacity:0">
<div class="center-block" style="max-width:700px;">
<h3 class="text-center">This section is temporarily unavailable.</h3>
</div><!--center-block-->
</div><!--container-fluid-->
<div class="navbar navbar-default navbar-fixed-bottom" style="min-height:0;padding:14px 0 14px 0;background:#f2f2f2;">
<div class="center-block" style="max-width:700px;">
<div class="btn-group btn-group-justified">
<a href="home.html" class="btn btn-link navglyph"><span class="glyphicon glyphicon-home"></span></a>
<a href="schedule.html" class="btn btn-link navglyph"><span class="glyphicon glyphicon-time"></span></a>
<a href="teams.html" class="btn btn-link navglyph"><span class="glyphicon glyphicon-list"></span></a>
<a href="vote.html" class="btn btn-link navglyph"><span class="glyphicon glyphicon-thumbs-up text-warning"></span></a>
<a href="options.html" class="btn btn-link navglyph"><span class="glyphicon glyphicon-align-justify"></span></a>
</div>
</div>
</div>
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/fastclick.min.js"></script>
<script>
$(function(){
$(".container").css("opacity", 0).addClass("animated fadeInLeft");
var attachFastClick = Origami.fastclick;
attachFastClick(document.body);
});
</script>
</body>
</html>