blob: 47a1390fc56def8c189bbb76653cae790e247128 (
plain)
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
|
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
.mx-object3d { -webkit-transform-style: preserve-3d; transform-style: preserve-3d; }
html,body{ margin: 0; padding: 0; width:100%;height:100%;}
body {
-webkit-perspective: 600px;
-moz-perspective: 600px;
perspective: 1000px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
overflow:hidden;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
cursor:move;
font-family:sans-serif;
background-color: white;
}
.text {
font-size: 100px;
color: white;
}
#flip{
display:none;
}
#bg {
pointer-events: none;
position: fixed;
width: 100%;
top: 0;
height: 100%;
z-index: 0;
cursor:move;
left:0;
}
|