forked from cosmicjs/cosmicapp-voting-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (60 loc) · 2.16 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>Voting App</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<style>
/* Resets */
.panel-primary {
border-color: #29ABE2;
}
.panel-primary .panel-heading {
border-color: #29ABE2;
background-color: #29ABE2;
}
a,
a:hover,
.text-primary {
color: #29ABE2;
text-decoration: none;
}
.btn-primary {
color: #fff;
background-color: #29ABE2;
border-color: #29ABE2;
}
.progress-bar {
background-color: #29ABE2;
}
.list-group-item:hover {
background: #f4f4f4;
}
.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
background-color: #29ABE2;
}
.loading {
position: absolute;
top: 50%;
left: 50%;
width: 28px;
height: 28px;
-webkit-animation:spin 1500ms linear infinite;
-moz-animation:spin 1500ms linear infinite;
animation:spin 1500ms linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
</style>
<link rel="icon" type="image/png" href="https://cosmicjs.com/images/favicons/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="https://cosmicjs.com/images/favicons/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="https://cosmicjs.com/images/favicons/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="https://cosmicjs.com/images/favicons/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="https://cosmicjs.com/images/favicons/favicon-128.png" sizes="128x128" />
</head>
<body>
<div id="root"></div>
<script src="/bundle.js"></script>
</body>
</html>