-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths.css
126 lines (106 loc) · 2.12 KB
/
s.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
body {
text-align: center;
width: 100vw;
height: 100vh;
overflow: hidden;
}
.centered {
text-align: center;
}
.centered * {
/*display: inline-block;*/
position: absolute;
height: 100px;
/*width: 100px;*/
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
font-size: 70px;
cursor: pointer;
}
#g:after {
content: "g?";
cursor: pointer;
}
#g:hover:after {
content: "g";
}
#imageMinimize {
border: 1px solid #aaa;
}
.arrow {
width: 50px;
position: fixed;
display: none;
}
.arrow.arrow-right {
top: 0;
bottom: 0;
margin: auto;
right: 15px;
}
.arrow.arrow-bottom {
left: 0;
right: 0;
margin: 0 auto;
top: auto;
bottom: 15px;
transform: rotate(90deg);
}
.arrow.arrow-bottom.to-bottom {
transform: rotate(270deg);
-webkit-filter: hue-rotate(90deg); /* Chrome, Safari, Opera */
filter: hue-rotate(90deg);
}
.arrow.arrow-right.to-right {
transform: rotate(180deg);
-webkit-filter: hue-rotate(90deg); /* Chrome, Safari, Opera */
filter: hue-rotate(90deg);
}
#startGame:after {
content: "Merem?";
}
#startGame:hover:after {
content: "Merem";
}
#catSpace {
display: none;
position: relative;
width: 100%;
height: 100%;
}
#cat {
position: absolute;
width: auto;
height: 70px;
-webkit-transition: transform 0.2s ease-in-out 0s;
transition: transform 0.2s ease-in-out 0s;
}
.direction-0 {
-ms-transform: rotate(0deg); /* IE 9 */
-webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
transform: rotate(0deg);
}
.direction-1 {
-ms-transform: rotate(90deg); /* IE 9 */
-webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
transform: rotate(90deg);
}
.direction-2 {
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
.direction-3 {
-ms-transform: rotate(270deg); /* IE 9 */
-webkit-transform: rotate(270deg); /* Chrome, Safari, Opera */
transform: rotate(270deg);
}
#ip {
display: none;
}