-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
142 lines (120 loc) · 3.49 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<html>
<head>
<meta charset="UTF-8">
<title>Showoff</title>
<link href="https://fonts.googleapis.com/css?family=Galada|Raleway" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://opensource.keycdn.com/fontawesome/4.6.3/font-awesome.min.css">
<style>
html, body {
height: 100%;
margin: 0;
font-family: 'Raleway', sans-serif;
}
.page {
width: 100%;
height: 100%;
background: #222;
}
.drop-area {
color: #aaa;
background: #ccc;
border-radius: 5px;
border: 10px dashed #aaa;
box-sizing: border-box;
width: 100%;
height: 100%;
text-align: center;
font-family: 'Galada', serif;
}
.drop-area div {
position: relative;
top: 50%;
transform: translateY(-50%);
}
.drop-area.hover {
border-color: #777;
color: #777;
}
.cue-list {
width: 100%;
color: #fff;
}
.tools {
background: #444;
color: #fff;
}
.tools p {
display: inline-block;
font-family: 'Galada', serif;
margin: 0 10px;
}
.tools a {
display: inline-block;
padding: 5px;
cursor: pointer;
transition: background .25s;
}
.tools a.right {
float: right;
}
.tools a i {
margin-right: 5px;
}
.tools a:hover {
background: #999;
}
.cues {
position: relative;
overflow: auto;
border-spacing: 0;
width: 100%;
color: #fff;
}
.cues .cue {
outline: 0px solid transparent;
}
.cues tr.active {
background-color: forestgreen;
}
.cues tr.selected {
background-color: slateblue;
}
.cues tbody tr td, .cues thead tr th {
padding: 5px;
}
.cues thead th {
border-bottom: 3px solid #fff;
}
.cues th.small {
width: 10px;
}
.cues th.wide {
width: 200px;
}
.modal {
position: fixed;
width: 100%;
height: 100%;
background: rgba(10, 10, 10, .7);
z-index: 1000;
}
.modal .window {
position: absolute;
top: 50%;
left: 50%;
width: 60%;
height: 70%;
transform: translate(-50%, -50%);
background: #fff;
border-radius: 5px;
}
.modal-dummy {
display: none;
}
</style>
<script type="text/javascript" src="js/mithril.min.js"></script>
<script type="text/javascript" src="js/client.js"></script>
</head>
<body>
</body>
</html>