forked from cloudstudio-platform/JavaScript-Snake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteal-snake.css
144 lines (127 loc) · 2.57 KB
/
teal-snake.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
JavaScript Snake
By Patrick Gillespie
http://patorjk.com/games/snake
*/
@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');
body {
margin:0px;
padding:0px;
background-color:teal;
}
.snake-toolbar {
font-family: Electrolize;
color: white;
}
#game-area {
margin:10px;
padding:0px;
}
#game-area:focus { outline: none; }
#mode-wrapper {
font-family: Electrolize;
font-size: 14px;
color: whitesmoke;
}
a.snake-link, a.snake-link:link, a.snake-link:visited {
color: white;
}
a.snake-link:hover {
color: white;
}
.snake-pause-screen {
font-family: Electrolize;
font-size: 16px;
position:absolute;
width:300px;
height:80px;
text-align:center;
top:50%;
left:50%;
margin-top:-40px;
margin-left:-150px;
display:none;
background-color:#3E2E44;
color: whitesmoke;
}
.snake-panel-component {
position: absolute;
font-family: Electrolize;
font-size: 16px;
color: #938996;
text-align: center;
background-color: #3E2E44;
padding: 8px;
margin: 0px;
}
.snake-snakebody-block {
margin: 0px;
padding: 0px;
background-color: orange;
position: absolute;
border: 0px solid black;
background-repeat: no-repeat;
}
.snake-snakebody-alive {
background-image: url('./images/snakeblock.png');
}
.snake-snakebody-dead {
background-image: url('./images/dead-dark-snakeblock.png');
}
.snake-food-block {
margin: 0px;
padding: 0px;
background-color: red;
border: 2px solid black;
position: absolute;
}
.snake-playing-field {
margin: 0px;
padding: 0px;
position: absolute;
background-color: rgb(0, 180, 180);
border: 3px solid black;
}
.snake-game-container {
margin: 0px;
padding: 0px;
border-width: 0px;
border-style: none;
zoom: 1;
background-color: #3E2E44;
position: relative;
}
.snake-welcome-dialog {
padding: 8px;
margin: 0px;
background-color: black;
color: whitesmoke;
font-family: Electrolize;
font-size: 14px;
position: absolute;
top: 50%;
left: 50%;
width: 300px;
/*height: 150px;*/
margin-top: -100px;
margin-left: -158px;
text-align: center;
display: block;
}
.snake-try-again-dialog, .snake-win-dialog {
padding: 8px;
margin: 0px;
background-color: black;
color: whitesmoke;
font-family: Electrolize;
font-size: 16px;
position: absolute;
top: 50%;
left: 50%;
width: 300px;
height: 100px;
margin-top: -75px;
margin-left: -158px;
text-align: center;
display: none;
}