Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
matthewbauer
GitHub Repository: matthewbauer/gametime-player
Path: blob/master/index.css
1044 views
1
html, body, canvas {
2
margin: 0;
3
padding: 0;
4
width: 100%;
5
height: 100%;
6
-webkit-user-select: none;
7
-ms-user-select: none;
8
-moz-user-select: none;
9
user-select: none;
10
overflow: hidden;
11
}
12
.draghint {
13
display: table;
14
box-sizing: border-box;
15
border-width: 10px;
16
border-style: dashed;
17
background-color: white;
18
border-color: #ccc;
19
}
20
.screen {
21
width: 100%;
22
height: 100%;
23
}
24
.dragtext {
25
display: table-cell;
26
vertical-align: middle;
27
text-align: center;
28
color: #999;
29
}
30
.menu {
31
margin: 2em;
32
}
33
.hidden {
34
display: none;
35
}
36
.hover {
37
border-color: #333;
38
}
39
.chooser {
40
position: fixed;
41
top: -1000px;
42
}
43
.message {
44
text-align: center;
45
}
46
.message h1, .message p {
47
position: relative;
48
top: 50%;
49
transform: translateY(-50%);
50
}
51
.overlay {
52
opacity: .5;
53
}
54
55