mirror of
https://github.com/wassname/GarageServer.IO.git
synced 2026-06-27 16:10:34 +08:00
22 lines
360 B
CSS
22 lines
360 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
body {
|
|
background-color: #001429;
|
|
}
|
|
|
|
#gameCanvas {
|
|
background-color: #001429;
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#000306), to(#001429));
|
|
background: -moz-linear-gradient(top, #000306 0%, #001429 100%);
|
|
display: block;
|
|
}
|
|
|