2024-11-10 20:26:22 +01:00
|
|
|
/*
|
2024-11-10 21:38:20 +01:00
|
|
|
This file is part of VM-Experiments.
|
|
|
|
Licensed under the AGPL-3.0-or-later. See LICENSE for details.
|
2024-11-10 20:26:22 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: 75px 1fr;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
color: white;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
margin-top: 24px;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.link {
|
|
|
|
color: rgb(127, 127, 127);
|
|
|
|
display: inline;
|
|
|
|
font-size: 16px
|
|
|
|
}
|
|
|
|
|
|
|
|
.description {
|
|
|
|
color: rgb(192, 192, 192);
|
|
|
|
font-size: 12px
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
margin-top: 240px;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 20px
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
border: 0;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 3px;
|
|
|
|
background-color: gray;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
#top {
|
|
|
|
background-color: black;
|
|
|
|
grid-area: 1 / 1 / 2 / 2;
|
|
|
|
padding-left: 36px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
padding: 10px;
|
|
|
|
background-color: rgb(63, 63, 63);
|
|
|
|
grid-area: 2 / 1 / 3 / 2;
|
|
|
|
padding-left: 48px;
|
|
|
|
}
|