51 lines
667 B
CSS
51 lines
667 B
CSS
/* background */
|
|
html, body, #background {
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
#background {
|
|
background: url(../img/shirakawa.jpg);
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-color: #704214;
|
|
position: relative;
|
|
overflow: scroll;
|
|
}
|
|
#content {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
|
|
color: #fff;
|
|
text-shadow: 1px 1px #000;
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
/* colours */
|
|
#hinamizawa {
|
|
color: #e00;
|
|
}
|
|
|
|
#furude {
|
|
stroke: #637bc0;
|
|
}
|
|
#maebara {
|
|
stroke: #835e4c;
|
|
}
|
|
#houjou {
|
|
stroke: #ebd076;
|
|
}
|
|
#ryuuguu {
|
|
stroke: #faaa66;
|
|
}
|
|
#sonozaki {
|
|
stroke: #86c9a8;
|
|
}
|
|
|
|
#hanyuu {
|
|
color: #d1d0e3;
|
|
}
|