-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
35 lines (29 loc) · 913 Bytes
/
stylesheet.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
@font-face {
font-family: 'Burbank Big Regular';
src: url('fonts/BurbankBigRegularBlack.eot');
src: url('fonts/BurbankBigRegularBlack.eot?#iefix') format('embedded-opentype'),
url('fonts/BurbankBigRegularBlack.woff2') format('woff2'),
url('fonts/BurbankBigRegularBlack.woff') format('woff'),
url('fonts/BurbankBigRegularBlack.ttf') format('truetype'),
url('fonts/BurbankBigRegularBlack.svg#BurbankBigRegularBlack') format('svg');
font-weight: 900;
font-style: italic;
font-display: swap;
}
body {
background-color: #22a4f3;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 24px;
font-family: 'Burbank Big Regular';
}
.game-view {
display: flex;
}
.game-info {
display: block;
margin-right: 50px;
}
canvas {
display: block;
margin: auto;
}