-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
71 lines (58 loc) · 1.1 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
/* Roboto Mono font */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
body {
background: linear-gradient(45deg, rgba(0,255,162,0.7343312324929971) 0%, rgba(0,128,255,0.5102415966386555) 100%);
background-attachment: fixed;
font-family: 'Roboto Mono', monospace;
}
/* center everything */
#container {
width: 1000px;
margin: 0 auto;
}
canvas {
position: absolute;
border: 5px solid black;
border-radius: 10px;
}
#canvas-wrapper {
position: relative;
width: 1000px;
height: 600px;
margin-bottom: 20px;
}
img:not(#logo) {
display: none;
}
#logo {
display: block;
margin: 0 auto;
}
#score-disp {
font-size: 24px;
font-weight: bold;
padding-top: 10px;
}
#score {
color: red;
}
#hscore {
color: yellow;
}
#keycmds {
font-size: 16px;
}
button {
border: 1px solid black;
border-radius: 5px;
padding: 7px;
font-size: 1rem;
font-family: 'Roboto Mono', monospace;
}
button:hover {
color: white;
background-color: #0e660e;
}
button:active {
background-color: #660000;
}