-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaze.css
More file actions
executable file
·62 lines (54 loc) · 927 Bytes
/
maze.css
File metadata and controls
executable file
·62 lines (54 loc) · 927 Bytes
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
body {
background: #7B8D8E;
margin: auto;
margin-top: 100px;
}
* {
padding: 0;
margin: 0;
}
canvas {
margin: auto;
display: block;
background: #F2EDD8;
}
#instructions {
margin: auto;
margin-top: 30px;
width: 400px;
border-radius: 10px;
text-align: center;
}
#introduction {
font-size: 40px;
font-family: 'Indie Flower', cursive;
text-align: center;
color: white;
}
#inst {
margin-top: 10px;
text-align: center;
font-family: 'Indie Flower', cursive;
font-size: 20px;
color: white;
}
#start-button {
background-color: white;
border: none;
color: black;
font: 25px FreeMono, monospace;
margin: 10px auto;
width: 110px;
border-radius: 12px;
cursor: pointer;
transition-duration: 0.5s;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#maze {
color: coral;
font-size: 70px;
}
#levels {
color: coral;
font-size: 20px;
}