30 lines
484 B
CSS
30 lines
484 B
CSS
html, body {
|
|
background-color: #11aa99;
|
|
color: #fff;
|
|
font-size: 30px;
|
|
font-family: Calibri;
|
|
-webkit-text-stroke: 0.6px black;
|
|
}
|
|
|
|
h1 {
|
|
-webkit-text-stroke: 2px black;
|
|
}
|
|
|
|
#cityscape {
|
|
/* position: absolute; sus */
|
|
bottom: 0;
|
|
width: 99%;
|
|
height: 150px;
|
|
display: inline-block;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
background-image: url(/city.png);
|
|
background-repeat: repeat-x;
|
|
background-size: auto 100%;
|
|
}
|
|
|
|
#credits {
|
|
-webkit-text-stroke: 0px;
|
|
font-size: 15px;
|
|
}
|