forked from jbourassa/sound-voter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (51 loc) · 1.11 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
<!doctype html>
<html>
<head>
<title>Sound Voter</title>
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css" rel="stylesheet">
<script data-main="js/main" src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.1/require.min.js"></script>
<style>
body .modal {
width: 80%; /* desired relative width */
margin-left:-40%; /* -(width/2) */
height: 80%;
}
h1 {
margin-bottom: 30px;
}
.team-list {
margin-bottom: 60px;
}
.team-list li {
padding: 10px 10px;
margin: 0;
border-bottom: 2px solid #ececec;
}
.team-list li:nth-child(odd) {
background-color: #f9f9f9
}
#new-team {
text-align: center;
}
#new-team label, #new-team .controls {
float: none;
display: inline-block;
}
#new-team label {
margin-right: 15px;
width: auto;
}
#new-team .controls {
margin-left: 0;
}
.delete {
float: right;
}
</style>
</head>
<body>
<div class="container">
<h1>Awesome shouter-voter</h1>
</div>
</body>
</html>