-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
179 lines (157 loc) · 2.94 KB
/
styles.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
* {
margin: 0;
padding: 0;
font-family: "Londrina Solid", cursive;
}
#game_container {
padding: 80px 0 40px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-color: #276678;
color: white;
height: 100%;
position: relative;
}
#game_start {
background-color: white;
color: black;
padding: 10px;
font-size: 0.6rem;
border-radius: 20px;
box-shadow: 0 0 5px 0 black;
}
#game_start:hover {
transition: all 0.2s ease-out;
cursor: pointer;
background-color: black;
color: white;
border: 1px solid white;
box-shadow: 0 0 5px 0 white;
}
#game_level {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
top: 2%;
right: 20%;
background-color: black;
color: white;
padding: 10px 20px 30px;
}
.change_level {
background-color: white;
color: black;
box-shadow: 0 0 5px 0 black;
padding: 0 5px;
margin: 5px 10px;
}
.change_level:hover {
transition: all 0.2s ease-out;
cursor: pointer;
background-color: black;
color: white;
border: 1px solid white;
box-shadow: 0 0 5px 0 white;
}
#set_level {
display: flex;
justify-content: center;
align-items: center;
margin: 10px 0;
}
#canvas_parent {
box-shadow: 0 0 40px 0 black;
height: 640px;
width: 1000px;
border-radius: 10px;
z-index: 2;
position: relative;
margin-bottom: 50px;
}
#my_canvas {
background-color: #184d47;
border: 20px solid rgb(87, 54, 54);
border-radius: 10px;
box-shadow: inset 0 0 20px 0 black;
}
#score_board {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
border: 1px solid black;
padding: 0 10px 10px;
top: 8%;
left: 18%;
font-size: 3rem;
color: white;
/* z-index: -1; */
background-color: rgb(205 54 54);
box-shadow: 0 0 10px 0 black;
}
#score_board h3 {
font-size: 2rem;
}
#score_board h3 {
font-size: 2rem;
}
#score_board h1 {
font-size: 3rem;
}
#heading {
margin: 10px 0 0;
color: white;
font-size: 2rem;
}
.show_game {
display: none !important;
}
#instructions {
background-color: #276678;
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
}
#instruction_steps {
background-color: white;
border: 10px dashed black;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px;
color: rgb(36, 35, 35);
}
#instruction_steps h1 {
font-size: 4rem;
}
#instruction_steps h3 {
font-size: 2rem;
}
.inst_heading {
font-size: 3rem !important;
margin-bottom: 10px;
text-decoration: underline;
}
#instruction_steps h2 {
font-size: 1.5rem;
color: white;
background-color: black;
margin-top: 10px;
padding: 10px;
border-radius: 5px;
}
#instruction_steps h2:hover {
background-color: white;
color: black;
transition: 0.2s ease-in all;
border: 1px solid black;
cursor: pointer;
}