aboutsummaryrefslogtreecommitdiff
path: root/css/style.css
blob: c3e2c3de75650a3d58ffe67eee7dd88308bb02a8 (plain)
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
* {
  margin: 0;
  padding: 0;
}

body {
  text-align: center;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

#sumo-app-entry-point {
  background-color: #fff;
  display: flex;
  height: 100vh;
  width: 100wh;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

canvas {
  background-color: #d8c590;
  image-rendering: pixelated;
}