js13kgames2017-muri/src/assets/styles.css
2017-08-15 15:38:23 +02:00

33 lines
566 B
CSS

body {
background-color: black;
margin-top: 50px;
text-align: center;
color: white;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
h1 {
color: #5f5f7b;
font-size: 4em;
margin: 0;
}
a {
color: white;
}
p {
margin-bottom: 20px;
color: gray;
}
canvas {
background-color: white;
margin: auto;
display: block;
border: 1px solid #5f5f7b;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-crisp-edges;
image-rendering: pixelated;
width: 800px;
height: 400px;
}