-
Notifications
You must be signed in to change notification settings - Fork 9
/
style.css
64 lines (55 loc) · 956 Bytes
/
style.css
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
body {
font-family: sans-serif;
background-image: url("bg.jpg");
background-size: cover;
background-attachment: fixed;
padding-top: 400px;
padding-bottom: 200px;
padding-left: 100px;
padding-right: 100px;
}
.cuesheet-container {
padding: 30px;
}
.cuesheet {
width: 100%;
min-height: 400px;
white-space: pre;
font-family: monospace;
}
.cuefile-name-suggestion {
font-family: monospace;
font-size: 18px;
margin: 20px;
}
.dropzone {
font-size: 18px;
padding: 50px;
background-color: #eee;
text-align: center;
border: 5px dotted #ccc;
margin: 30px;
transition: all 0.25s ease-in-out;
}
.dropzone.hover {
border-color: #888;
margin: 28px;
padding: 52px;
}
.dropzone.flash {
border: 5px dotted #888;
margin: 20px;
padding: 60px;
}
.dropzone * {
pointer-events: none;
}
.dropzone-tip {
margin-top: 10px;
color: #777;
font-size: 12px;
}
footer {
margin-top: 50px;
text-align: center
}