-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
93 lines (86 loc) · 1.75 KB
/
main.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
body {
font-family: 'Courier New', Courier, monospace;
font-size: medium;
color: turquoise;
text-transform: uppercase;
background-color: black;
}
main {
margin: 30px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 850px;
}
#message {
position: absolute;
z-index: 2;
top: 540px;
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
width: 60%;
}
#start-button{
z-index: 2;
top: 465px;
position: absolute;
margin-bottom: 20px;
background-color: turquoise;
border: solid 3px tomato;
box-shadow: 10px 10px 10px black;
color: tomato;
font-family: 'Courier New', Courier, monospace;
font-weight: 700;
font-size: large;
text-transform: uppercase;
height: 65px;
padding-left: 25px;
padding-right: 25px;
padding-top: 15px;
padding-bottom: 15px;
}
#title {
position: absolute;
top: 60px;
}
#canvas {
position: absolute;
top: 60px;
}
#restart-button{
z-index: 3;
position: absolute;
top: 320px;
margin-top: 20px;
background-color: turquoise;
border: solid 3px tomato;
box-shadow: 10px 10px 10px black;
color: tomato;
font-family: 'Courier New', Courier, monospace;
font-weight: 700;
font-size: large;
text-transform: uppercase;
height: 65px;
padding-left: 25px;
padding-right: 25px;
padding-top: 15px;
padding-bottom: 15px;
}
#messageOverlay {
position: absolute;
z-index: 2;
top: 250px;
text-align: center;
padding: 25px 70px;
font-size: larger;
background-color: white;
font-weight: 700;
color: black;
}
/* #arrows {
position: absolute;
top: 700px;
left: 300px;
} */