-
Notifications
You must be signed in to change notification settings - Fork 57
/
index.css
53 lines (53 loc) · 789 Bytes
/
index.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
html, body, canvas {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
-webkit-user-select: none;
-ms-user-select: none;
-moz-user-select: none;
user-select: none;
overflow: hidden;
}
.draghint {
display: table;
box-sizing: border-box;
border-width: 10px;
border-style: dashed;
background-color: white;
border-color: #ccc;
}
.screen {
width: 100%;
height: 100%;
}
.dragtext {
display: table-cell;
vertical-align: middle;
text-align: center;
color: #999;
}
.menu {
margin: 2em;
}
.hidden {
display: none;
}
.hover {
border-color: #333;
}
.chooser {
position: fixed;
top: -1000px;
}
.message {
text-align: center;
}
.message h1, .message p {
position: relative;
top: 50%;
transform: translateY(-50%);
}
.overlay {
opacity: .5;
}