2017-08-31 13:54:57 +02:00
|
|
|
@font-face {
|
|
|
|
font-family: pixel;
|
|
|
|
src: url(PixelText.ttf)
|
|
|
|
}
|
|
|
|
|
2017-08-15 10:16:27 +02:00
|
|
|
body {
|
|
|
|
background-color: black;
|
|
|
|
margin-top: 50px;
|
|
|
|
text-align: center;
|
2017-08-15 15:38:23 +02:00
|
|
|
color: white;
|
|
|
|
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
|
2017-08-15 10:16:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2017-08-15 15:38:23 +02:00
|
|
|
color: #5f5f7b;
|
2017-08-15 10:16:27 +02:00
|
|
|
font-size: 4em;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
margin-bottom: 20px;
|
2017-08-15 15:38:23 +02:00
|
|
|
color: gray;
|
2017-08-15 10:16:27 +02:00
|
|
|
}
|
|
|
|
|
2017-08-15 16:45:43 +02:00
|
|
|
#content {
|
2017-08-15 10:16:27 +02:00
|
|
|
display: block;
|
2017-08-15 16:45:43 +02:00
|
|
|
}
|
|
|
|
#content > div {
|
|
|
|
position: relative;
|
|
|
|
width: 800px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
canvas {
|
|
|
|
background-color: black;
|
2017-08-15 15:38:23 +02:00
|
|
|
border: 1px solid #5f5f7b;
|
|
|
|
image-rendering: -moz-crisp-edges;
|
|
|
|
image-rendering: -webkit-crisp-edges;
|
|
|
|
image-rendering: pixelated;
|
|
|
|
width: 800px;
|
|
|
|
height: 400px;
|
2017-08-23 23:31:50 +02:00
|
|
|
cursor: hand;
|
2017-08-15 10:16:27 +02:00
|
|
|
}
|
2017-08-15 16:45:43 +02:00
|
|
|
|
|
|
|
#bubble {
|
|
|
|
color: white;
|
|
|
|
top: 320px;
|
|
|
|
left: 70px;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
text-align: left;
|
2017-08-31 13:54:57 +02:00
|
|
|
font-family: pixel;
|
|
|
|
font-size: 3em;
|
2017-08-15 16:45:43 +02:00
|
|
|
}
|