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.
123 lines
1.7 KiB
CSS
123 lines
1.7 KiB
CSS
body {
|
|
margin: 0;
|
|
font-family: "Encode Sans", sans-serif;
|
|
font-weight: 500;
|
|
font-size: 4vh;
|
|
color: #fff;
|
|
}
|
|
|
|
#container {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
user-select: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#popup {
|
|
z-index: 1000;
|
|
max-width: 70vw;
|
|
max-height: 70vh;
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
width: auto;
|
|
border: solid #fff 5px;
|
|
height: auto;
|
|
background: #00000088;
|
|
padding: 4vh;
|
|
text-align: center;
|
|
}
|
|
|
|
#popup p + p {
|
|
margin-top: -3vh;
|
|
}
|
|
|
|
.l {
|
|
text-align: left;
|
|
}
|
|
|
|
.s {
|
|
font-size: .7em;
|
|
}
|
|
|
|
#close {
|
|
font-weight: 900;
|
|
float: right;
|
|
font-size: 1.5em;
|
|
margin-top: -5vh;
|
|
margin-right: -3.5vh;
|
|
}
|
|
|
|
#close:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
#button {
|
|
position: absolute;
|
|
right: 4vh;
|
|
top: 4vh;
|
|
padding: 4vh;
|
|
background: darkblue;
|
|
font-weight: 800;
|
|
}
|
|
|
|
#button:hover {
|
|
background: blue;
|
|
}
|
|
|
|
#help {
|
|
position: absolute;
|
|
right: 4vh;
|
|
top: 18vh;
|
|
border: solid white 3px;
|
|
font-weight: 800;
|
|
padding: .1vh 1vh;
|
|
border-radius: 1vh;
|
|
font-size: .8em;
|
|
cursor: help;
|
|
}
|
|
|
|
#copyright {
|
|
z-index: 2;
|
|
font-size: 0.4em;
|
|
position: absolute;
|
|
bottom: 5px;
|
|
}
|
|
|
|
#rotate {
|
|
display: none;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
margin: 1vh;
|
|
font-size: 0.5em;
|
|
width: 20vh;
|
|
}
|
|
|
|
#rotate img {
|
|
width: 7vh;
|
|
float: left;
|
|
padding-right: 1vh;
|
|
}
|
|
|
|
#logo {
|
|
z-index: 1;
|
|
position: absolute;
|
|
right: 1vh;
|
|
bottom: 1vh;
|
|
}
|
|
|
|
#logo img {
|
|
width: 15vh;
|
|
opacity: 50%;
|
|
}
|
|
|
|
#logo img:hover {
|
|
opacity: 100%;
|
|
}
|