-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
46 lines (39 loc) · 780 Bytes
/
style.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
@font-face {
font-family: 'AstroSpace';
src: url('AstroSpace-eZ2Bg.ttf') format('truetype');
}
* {
font-family: 'AstroSpace', sans-serif;
}
.game-info {
padding-top: 10px;
display: flex;
justify-content: space-evenly;
}
.info-text {
margin: 0 1vw;
font-size: large;
}
.button {
font-size: medium;
margin: 0 1vw;
background-color: beige;
}
/* make stuff centered horizontally */
.center {
text-align: center;
}
.message-box {
background-color:rgb(255, 255, 255, .95);
border: 8px solid steelblue;
padding: 16px;
/* next line is so that we can float this message box over the canvas.
Its position is set in the code. */
position: fixed;
font-size: x-large;
}
.right-edge {
margin-left: auto;
margin-right: 0;
display: table;
}