You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
466 lines
7.4 KiB
CSS
466 lines
7.4 KiB
CSS
|
|
@font-face {
|
|
font-family: sinistre;
|
|
src: url(fonts/Sinistre-StCaroline.woff),
|
|
url(fonts/Sinistre-StCaroline.otf);
|
|
}
|
|
@font-face {
|
|
font-family: jolybolditalic;
|
|
src: url(fonts/JolyDisplay-BoldDisplayItalic.woff),
|
|
url(fonts/JolyDisplay-BoldDisplayItalic.otf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: jolyregularitalic;
|
|
src: url(fonts/JolyDisplay-RegularDisplayItalic.woff),
|
|
url(fonts/JolyDisplay-RegularDisplayItalic.otf);
|
|
}
|
|
@font-face {
|
|
font-family: jolyregular;
|
|
src: url(fonts/JolyDisplay-RegularDisplay.woff),
|
|
url(fonts/JolyDisplay-RegularDisplay.otf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: jolybold;
|
|
src: url(fonts/JolyDisplay-BoldDisplay.woff),
|
|
url(fonts/JolyDisplay-BoldDisplay.otf);
|
|
}
|
|
|
|
.invert{
|
|
filter: invert(100%);
|
|
}
|
|
|
|
body {
|
|
font-family: jolyregular;
|
|
font-size: 1.8vw;
|
|
overflow-y: hidden;
|
|
|
|
}
|
|
|
|
.instructions{
|
|
font-family:jolyregularitalic;
|
|
|
|
}
|
|
span.instructions_arrow{
|
|
padding-left:40px;
|
|
font-size: 2.4vw;
|
|
font-family:jolybolditalic;
|
|
}
|
|
|
|
|
|
|
|
::-moz-selection { /* Code for Firefox */
|
|
background: transparent;
|
|
}
|
|
::selection {
|
|
background: transparent;
|
|
}
|
|
|
|
#ground_color {
|
|
width: 5100px;
|
|
height: 120%;
|
|
position:fixed;
|
|
margin:-100px;
|
|
background-color: white;
|
|
z-index:-10;
|
|
}
|
|
|
|
#ground{
|
|
position:absolute;
|
|
height:100%;
|
|
width:5000px;
|
|
}
|
|
|
|
#groundline {
|
|
position: fixed;
|
|
top:130px;
|
|
height:0%;
|
|
width: 100%;
|
|
border-top: 1px solid;
|
|
z-index:-10;
|
|
}
|
|
|
|
|
|
div.text_container {
|
|
bottom: 20px;
|
|
left:40px;
|
|
right:40px;
|
|
position:fixed;
|
|
margin: auto;
|
|
line-height: 1.4em;
|
|
}
|
|
.game_bar {
|
|
top:40px;
|
|
right:80px;
|
|
position:fixed;
|
|
border-radius: 25vw;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
font-family: sinistre;
|
|
background-color: white;
|
|
border: 0.11vw black solid;
|
|
border-radius: 25vw;
|
|
color:black;
|
|
cursor:pointer;
|
|
font-size: 1.4vw;
|
|
}
|
|
.game_bar_glow{
|
|
border: 0.11vw transparent solid;
|
|
background-color: transparent;
|
|
-webkit-box-shadow: 0px 0px 8px 1px black ;
|
|
-moz-box-shadow: 0px 0px 8px 1px black ;
|
|
box-shadow: 0px 0px 8px 1px black ;
|
|
}
|
|
svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
position:absolute;
|
|
z-index: -10;
|
|
stroke:black;
|
|
stroke-width:1px;
|
|
}
|
|
|
|
button{
|
|
-webkit-appearance: none;
|
|
background-color: white;
|
|
border: 0.1em black solid;
|
|
border-radius: 25em;
|
|
color:black;
|
|
cursor:pointer;
|
|
font-family: jolybolditalic;
|
|
}
|
|
|
|
button:hover{
|
|
border: 0.1em transparent solid;
|
|
-webkit-box-shadow: 0px 0px 8px 1px black;
|
|
-moz-box-shadow: 0px 0px 8px 1px black;
|
|
box-shadow: 0px 0px 8px 1px black;
|
|
|
|
}
|
|
|
|
span.button_text{
|
|
font-size: 1.6vw;
|
|
padding: 8px;
|
|
}
|
|
|
|
#player_name{
|
|
font-family: jolybolditalic;
|
|
}
|
|
|
|
/*army*/
|
|
|
|
div#player_img {
|
|
top: 40%;
|
|
left: 100%;
|
|
position:absolute ;
|
|
z-index: 2;
|
|
}
|
|
|
|
.army {
|
|
position: absolute;
|
|
top:10%;
|
|
left: 5%;
|
|
width: 350px;
|
|
height: 280px;
|
|
}
|
|
|
|
|
|
#fighter1 {
|
|
top:50%;
|
|
left: 80%;
|
|
position: absolute;
|
|
z-index:2;
|
|
}
|
|
#fighter2 {
|
|
top:5%;
|
|
left: 50%;
|
|
position: absolute;
|
|
z-index:0;
|
|
}
|
|
#fighter3 {
|
|
top:20%;
|
|
left: 30%;
|
|
position: absolute;
|
|
z-index:2;
|
|
}
|
|
#fighter4 {
|
|
top:100%;
|
|
left: 45%;
|
|
position: absolute;
|
|
z-index:5;
|
|
}
|
|
#fighter5 {
|
|
top:40%;
|
|
left: 50%;
|
|
position: absolute;
|
|
z-index:2;
|
|
}
|
|
#fighter6 {
|
|
top:70%;
|
|
left: 65%;
|
|
position: absolute;
|
|
z-index:3;
|
|
}
|
|
#fighter7 {
|
|
top:68%;
|
|
left: 44%;
|
|
position: absolute;
|
|
z-index:3;
|
|
}
|
|
#fighter8 {
|
|
top:50%;
|
|
left: 5%;
|
|
position: absolute;
|
|
z-index:2;
|
|
}
|
|
#fighter9 {
|
|
top:50%;
|
|
left: 5%;
|
|
position: absolute;
|
|
z-index:3;
|
|
}
|
|
|
|
|
|
.figure1{
|
|
bottom: 47%;
|
|
left: 89%;
|
|
position: absolute;
|
|
z-index: 3;
|
|
}
|
|
|
|
.figure2{
|
|
bottom:60%;
|
|
left: 87.5%;
|
|
position: absolute;
|
|
z-index: 3;
|
|
}
|
|
.figure3{
|
|
bottom:30%;
|
|
left: 95%;
|
|
position: absolute;
|
|
z-index: 3;
|
|
}
|
|
.figure4{
|
|
bottom:25%;
|
|
left: 88%;
|
|
position: absolute;
|
|
z-index: 3;
|
|
}
|
|
.people{
|
|
cursor:pointer;
|
|
}
|
|
|
|
#meat1{
|
|
bottom: 50%;
|
|
right: 14%;
|
|
position: absolute;
|
|
z-index: 3;
|
|
cursor: pointer;
|
|
}
|
|
#meat2{
|
|
bottom:62%;
|
|
right: 14%;
|
|
position: absolute;
|
|
z-index: 3;
|
|
cursor: pointer;
|
|
}
|
|
#meat3{
|
|
bottom:34%;
|
|
right: 14%;
|
|
position: absolute;
|
|
z-index: 3;
|
|
cursor: pointer;
|
|
}
|
|
#meat4{
|
|
bottom:26%;
|
|
right: 14%;
|
|
position: absolute;
|
|
z-index: 3;
|
|
cursor: pointer;
|
|
}
|
|
.tunnel_people{
|
|
left: 94%;
|
|
bottom:40%;
|
|
position: absolute;
|
|
display: none;
|
|
}
|
|
|
|
|
|
/*images*/
|
|
|
|
.bus1 {
|
|
top:9%;
|
|
left: 17%;
|
|
position: absolute;
|
|
z-index:-1;
|
|
}
|
|
.bus2 {
|
|
top:47%;
|
|
left: 10%;
|
|
position: absolute;
|
|
z-index:5;
|
|
}
|
|
.bus3 {
|
|
bottom:38%;
|
|
left: 30%;
|
|
position: absolute;
|
|
z-index:4;
|
|
}
|
|
|
|
.bus4{
|
|
top: 10%;
|
|
left: 40%;
|
|
position: absolute;
|
|
z-index:1;
|
|
}
|
|
.bus5{
|
|
bottom: 20%;
|
|
left: 60%;
|
|
position: absolute;
|
|
z-index:6;
|
|
}
|
|
.bus6{
|
|
top: 10%;
|
|
right: 35%;
|
|
position: absolute;
|
|
z-index:1;
|
|
}
|
|
.bus7{
|
|
bottom: 23%;
|
|
right: 20%;
|
|
position: absolute;
|
|
z-index:6;
|
|
}
|
|
.bus8{
|
|
top: 10%;
|
|
right: 10%;
|
|
position: absolute;
|
|
z-index:1;
|
|
}
|
|
#warehouse{
|
|
top: 20%;
|
|
right: 2%;
|
|
position: absolute;
|
|
z-index:1;
|
|
}
|
|
|
|
/* amanda baloons*/
|
|
|
|
.bubble1 {
|
|
left: 90%;
|
|
top:12%;
|
|
position: absolute;
|
|
background: #ffffff;
|
|
color: #000000;
|
|
font-family: sinistre;
|
|
font-size: 16px;
|
|
line-height: 17px;
|
|
text-align: center;
|
|
width: 140px;
|
|
height: 90px;
|
|
border-radius: 10px;
|
|
padding: 18px;
|
|
border: #000000 solid 1px;
|
|
z-index: 50;
|
|
cursor: pointer;
|
|
}
|
|
.bubble1:after {
|
|
content: '';
|
|
position: absolute;
|
|
display: block;
|
|
width: 0;
|
|
z-index: 1;
|
|
border-style: solid;
|
|
border-width: 20px 20px 0 0;
|
|
border-color: #ffffff transparent transparent transparent;
|
|
bottom: -20px;
|
|
left: 32%;
|
|
margin-left: -10px;
|
|
}
|
|
.bubble1:before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 0;
|
|
z-index: 0;
|
|
border-style: solid;
|
|
border-width: 21px 21px 0 0;
|
|
border-color: #000000 transparent transparent transparent;
|
|
bottom: -22px;
|
|
left: 32%;
|
|
margin-left: -11px;
|
|
display: block;
|
|
}
|
|
|
|
.bubble2 {
|
|
left: 84%;
|
|
top:5%;
|
|
position: absolute;
|
|
background: #ffffff;
|
|
color: #000000;
|
|
font-family: sinistre;
|
|
font-size: 16px;
|
|
line-height: 17px;
|
|
text-align: center;
|
|
width: 188px;
|
|
height: 52px;
|
|
border-radius: 10px;
|
|
padding: 18px;
|
|
border: #000000 solid 1px;
|
|
z-index: 50;
|
|
cursor: pointer;
|
|
}
|
|
.bubble2:after {
|
|
content: '';
|
|
position: absolute;
|
|
display: block;
|
|
width: 0;
|
|
z-index: 1;
|
|
border-style: solid;
|
|
border-width: 0 20px 20px 0;
|
|
border-color: transparent #ffffff transparent transparent;
|
|
bottom: -20px;
|
|
left: 81%;
|
|
margin-left: -10px;
|
|
}
|
|
.bubble2:before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 0;
|
|
z-index: 0;
|
|
border-style: solid;
|
|
border-width: 0 21px 21px 0;
|
|
border-color: transparent #000000 transparent transparent;
|
|
bottom: -22px;
|
|
left: 81%;
|
|
margin-left: -10px;
|
|
display: block;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* hide scroll bar */
|
|
/* width */
|
|
::-webkit-scrollbar {
|
|
color:black;
|
|
}
|
|
|
|
/* Track */
|
|
::-webkit-scrollbar-track {
|
|
background: black;
|
|
}
|
|
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background: black;
|
|
}
|
|
|
|
/* Handle on hover */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: black;
|
|
}
|
|
|
|
|