js13kgames2015-reverse/src/styles.css

40 lines
575 B
CSS
Raw Normal View History

2015-09-13 10:40:26 +02:00
body {
margin: auto;
width: 400px;
background-color: black;
color: white;
}
nav {
color: #aaa;
position: relative;
top: -40px;
}
nav strong {
color: #fbb;
}
input {
width: 50px;
}
a {
color: #bbf;
}
a:hover {
background-color: #333;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: pixelated;
image-rendering: optimize-contrast;
margin-left: 50px;
}
#startgame, #endgame {
font-style: italic;
color: #ffb;
2015-08-24 15:40:02 +02:00
}