-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuttons.css
More file actions
42 lines (36 loc) · 713 Bytes
/
buttons.css
File metadata and controls
42 lines (36 loc) · 713 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
/* button.css */
body {
margin: 0;
overflow: hidden;
}
canvas {
display: block;
}
button {
position: fixed;
padding: 2vmin;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 3vmin;
color: white;
background: rgba(0, 0, 0, 0.5);
border: none;
border-radius: 3vmin;
cursor: pointer;
z-index: 1000;
left: 50%;
transform: translate(-50%);
}
button:hover {
color: white;
background: rgba(20, 150, 20, 0.8);
}
#start, #returnButton {
transform: translate(-50%);
}
#quit {
top: 1%;
}
#uh, #niceStart, #meanStart, #sorry, #meanAgain, #niceAgain, #meanEnd, #return {
border-radius: 0;
width: 90%;
}