Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
FogNetwork
GitHub Repository: FogNetwork/Tsunami
Path: blob/main/public/games/files/algaes-escapade/css/main.css
1497 views
1
body
2
{
3
background-color:#ECECEC;
4
overflow:hidden;
5
}
6
7
#preload, #gameWindow
8
{
9
margin:auto;
10
}
11
12
#gameWindow
13
{
14
padding:19px 29px;
15
width:800px;
16
height:600px;
17
background-image:url('../img/game-window.png');
18
background-repeat:no-repeat;
19
display:none;
20
}
21
22
canvas
23
{
24
-moz-box-shadow: 0 0 10px #000000;
25
-webkit-box-shadow: 0 0 10px #000000;
26
box-shadow: 0 0 10px #000000;
27
}
28
29
#gameEnd
30
{
31
position:relative;
32
display:none;
33
width:800px;
34
height:600px;
35
background-image:url('../img/end.png');
36
top:-604px;
37
}
38
39
#preload
40
{
41
padding-top:250px;
42
width:800px;
43
height:600px;
44
text-align:center;
45
}
46
47
#preload img
48
{
49
display:block;
50
margin: auto;
51
}
52
53
#game_tooltip
54
{
55
position:relative;
56
width:800px;
57
background: -webkit-linear-gradient(#ECECEC, #CACACA);
58
background: -moz-linear-gradient(#ECECEC, #CACACA);
59
background: -o-linear-gradient(#ECECEC, #CACACA);
60
background: -ms-linear-gradient(#ECECEC, #CACACA);
61
background: linear-gradient(#ECECEC, #CACACA);
62
border-bottom: 1px solid #9A9A9A;
63
border-radius: 0px 0px 10px 10px;
64
color:#585351;
65
text-shadow: 0px 1px 0px white;
66
padding-top:10px;
67
padding-bottom:10px;
68
font-weight: bold;
69
text-align: center;
70
top:-605px;
71
display:none;
72
}
73
74
#game_scorecard_bg
75
{
76
position:relative;
77
width:800px;
78
height:600px;
79
top:-624px;
80
background-color: rgba(0,0,0,0.4);
81
display:none;
82
}
83
84
#game_scorecard
85
{
86
background-image:url('../img/scorecard-background.png');
87
position:relative;
88
top:68px;
89
left:140px;
90
width:500px;
91
height:460px;
92
z-index: 999;
93
font-family: Helvetica,arial,sans-serif;
94
}
95
96
#game_scorecard h1
97
{
98
font-size:30px;
99
text-transform:uppercase;
100
padding-top:37px;
101
margin-left:41px;
102
}
103
104
#game_scorecard p
105
{
106
font-size:20px;
107
font-weight: bold;
108
margin-left:38px;
109
border-bottom:1px solid #000000;
110
width:418px;
111
margin-top:10px;
112
}
113
114
#game_scorecard p.scoreholder
115
{
116
height:38px;
117
}
118
119
#game_scorecard p span
120
{
121
float:right;
122
}
123
124
125
#game_scorecard .score .star
126
{
127
width:42px;
128
height:41px;
129
background-image:url(../img/star-off.png);
130
background-repeat: no-repeat;
131
float:left;
132
position:relative;
133
top:-10px;
134
}
135
136
#game_scorecard .score .star.enabled
137
{
138
background-image:url(../img/star-on.png);
139
}
140
141
#game_scorecard .nextLevel,
142
#game_scorecard .resetLevel,
143
#game_scorecard .mainMenu
144
{
145
display:block;
146
font-size:-1px;
147
text-indent:-9999px;
148
outline: none;
149
background-repeat:no-repeat;
150
position:relative;
151
margin-top:60px;
152
}
153
154
#game_scorecard .nextLevel
155
{
156
background-image:url(../img/next-button.png);
157
width:180px;
158
height:92px;
159
top:-313px;
160
margin-left:277px;
161
background-position: 0px 0px;
162
}
163
164
#game_scorecard .nextLevel:hover
165
{
166
background-position: -190px 0px;
167
}
168
169
#game_scorecard .mainMenu
170
{
171
background-image:url(../img/menu-button.png);
172
width:180px;
173
height:92px;
174
margin-left:28px;
175
background-position: 0px 0px;
176
}
177
178
#game_scorecard .mainMenu:hover
179
{
180
background-position: -190px 0px;
181
}
182
183
#game_scorecard .resetLevel
184
{
185
background-image:url(../img/reset.png);
186
width:100px;
187
height:101px;
188
top:-160px;
189
margin-left:198px;
190
}
191
192
#game_scorecard .disabled
193
{
194
opacity:0.5;
195
}
196
197
#game_scorecard .disabled:hover
198
{
199
cursor: default;
200
background-position: 0px 0px;
201
}
202
203