2020-08-27 18:05:06 +02:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-08-27 21:40:01 +02:00
|
|
|
|
|
|
|
--background-color: #000;
|
|
|
|
--text-color: #fff;
|
|
|
|
--link-color: #f00;
|
2020-08-27 18:05:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2020-08-27 21:40:01 +02:00
|
|
|
background-color: var(--background-color);
|
|
|
|
color: var(--text-color);
|
2020-08-27 18:05:06 +02:00
|
|
|
font-family: verdana;
|
|
|
|
font-size: 10px;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
2020-08-27 21:40:01 +02:00
|
|
|
.enclosed { width: 100%; height: 100%; }
|
|
|
|
.flex { display: flex; justify-content: space-around; }
|
2020-08-27 18:05:06 +02:00
|
|
|
.flex-container { flex: auto; }
|
2020-08-27 21:40:01 +02:00
|
|
|
.center.flex { align-items: center; height: 100%; }
|
2020-08-27 22:00:56 +02:00
|
|
|
.enclosed.padding { padding-top: 5em; padding-bottom: 5em; }
|
2020-08-27 18:05:06 +02:00
|
|
|
|
2020-08-27 21:40:01 +02:00
|
|
|
.info {
|
|
|
|
padding: 3px;
|
|
|
|
text-align: right;
|
|
|
|
width: 167px;
|
|
|
|
}
|
2020-08-27 18:05:06 +02:00
|
|
|
.info > a { font-size: 16px; display: block; }
|
|
|
|
.info > i { display: block; }
|
|
|
|
|
2020-08-27 21:40:01 +02:00
|
|
|
a { color: var(--link-color); text-decoration: none; }
|
|
|
|
a:hover { color:var(--text-color); text-decoration:none;}
|
2020-08-27 18:05:06 +02:00
|
|
|
|
|
|
|
|
2020-08-27 21:40:01 +02:00
|
|
|
.content { text-align: center; }
|
|
|
|
.content > * { padding: auto; }
|
|
|
|
|
|
|
|
#ruffle-container { margin-top: 10px; margin-bottom: 10px; }
|
|
|
|
#flavourtext { margin-top: 20px; }
|
|
|
|
|
|
|
|
.messages {
|
|
|
|
position: absolute;
|
2020-08-27 18:05:06 +02:00
|
|
|
text-align: center;
|
2020-08-27 21:40:01 +02:00
|
|
|
width: calc(100% - 167px);
|
2020-08-27 18:05:06 +02:00
|
|
|
}
|
|
|
|
|
2020-08-27 21:40:01 +02:00
|
|
|
.messages > p { padding-top: 10px; }
|
2020-08-27 18:05:06 +02:00
|
|
|
|
2020-08-27 21:40:01 +02:00
|
|
|
.infopage {
|
|
|
|
font-size: 12px;
|
|
|
|
border: 2px solid var(--link-color);
|
|
|
|
padding-left: 2em;
|
|
|
|
padding-right: 2em;
|
|
|
|
width: 500px;
|
|
|
|
margin: auto;
|
2020-08-27 22:00:56 +02:00
|
|
|
height: auto;
|
2020-08-27 18:05:06 +02:00
|
|
|
}
|
2020-08-27 21:40:01 +02:00
|
|
|
.infopage > .info-content p { padding: 0.5em; padding-right: 0; }
|
2020-08-27 22:00:56 +02:00
|
|
|
.infopage > .info-content ul { padding-left: 2em; list-style-type: "-";}
|
|
|
|
.infopage > .info-content ul > li { padding-left: 1em;}
|
2020-08-27 21:40:01 +02:00
|
|
|
.infopage > .info-content { text-align: left; }
|
2020-08-27 18:05:06 +02:00
|
|
|
|
2020-08-27 21:40:01 +02:00
|
|
|
@media (max-width: 500px) {
|
|
|
|
.infopage {
|
|
|
|
width: 100%;
|
|
|
|
border-left: none;
|
|
|
|
border-right: none;
|
|
|
|
}
|
2020-08-27 18:05:06 +02:00
|
|
|
}
|
|
|
|
|
2020-08-27 21:40:01 +02:00
|
|
|
.infopage > hr {
|
|
|
|
width: calc(100% + 4em);
|
|
|
|
margin-left: -2em;
|
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
border-color: var(--link-color);
|
2020-08-27 18:05:06 +02:00
|
|
|
}
|