-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (48 loc) · 805 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
.SOSEngine .scene
{
position: relative;
overflow: hidden;
}
.SOSEngine .scene, .unselectable
{
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.SOSEngine .window
{
overflow: hidden;
zoom: 100%;
}
.SOSEngine .object
{
position: absolute;
z-index: 1;
}
.SOSEngine .image
{
position: absolute;
background-repeat: no-repeat !important;
z-index: 1;
}
.SOSEngine .turnX
{
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
.SOSEngine .turnY
{
-moz-transform: scaleY(-1);
-o-transform: scaleY(-1);
-webkit-transform: scaleY(-1);
transform: scaleY(-1);
}
.SOSEngine .object img
{
position: absolute;
background-repeat: no-repeat !important;
}