2024-04-27 13:42:43 +02:00
|
|
|
:root {
|
|
|
|
--dark1: #000000;
|
|
|
|
--dark2: #333333;
|
|
|
|
--dark3: #666666;
|
|
|
|
--light1: #999999;
|
|
|
|
--light2: #cccccc;
|
|
|
|
--light3: #eeeeee;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background: var(--dark1);
|
|
|
|
color: var(--light3);
|
|
|
|
/* font-family: Courier New; */
|
|
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
canvas {
|
|
|
|
flex: auto;
|
|
|
|
background: linear-gradient(
|
|
|
|
90deg,
|
|
|
|
rgba(0, 0, 0, 1) 0%,
|
|
|
|
rgba(131, 131, 131, 1) 52%,
|
|
|
|
rgba(0, 0, 0, 1) 100%
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
2024-04-27 14:30:45 +02:00
|
|
|
h2,
|
|
|
|
.desktop-title {
|
2024-04-27 13:42:43 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2024-04-27 14:30:45 +02:00
|
|
|
h1, .desktop-title {
|
2024-04-27 13:42:43 +02:00
|
|
|
font-size: larger;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
2024-04-27 14:40:13 +02:00
|
|
|
.container {
|
2024-04-27 13:42:43 +02:00
|
|
|
display: flex;
|
|
|
|
height: calc(100vh - 100px);
|
|
|
|
overflow: hidden;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2024-04-27 14:40:13 +02:00
|
|
|
.burger-toggle {
|
2024-04-27 13:42:43 +02:00
|
|
|
display: none;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 1.5em;
|
|
|
|
vertical-align: middle;
|
|
|
|
color: var(--light2);
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-weight: bold;
|
|
|
|
border: 1px solid white;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
|
2024-04-27 14:30:45 +02:00
|
|
|
h2:hover {
|
2024-04-27 13:42:43 +02:00
|
|
|
cursor: pointer;
|
2024-04-27 14:30:45 +02:00
|
|
|
color: var(--light2);
|
2024-04-27 13:42:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
margin-top: 10px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2024-04-27 14:30:45 +02:00
|
|
|
input[type="number"] {
|
2024-04-27 14:40:13 +02:00
|
|
|
max-width: 100%;
|
2024-04-27 14:30:45 +02:00
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-04-27 13:42:43 +02:00
|
|
|
input[type="button"] {
|
|
|
|
min-width: 60px;
|
2024-04-27 14:30:45 +02:00
|
|
|
margin: 0 5px;
|
2024-04-27 13:42:43 +02:00
|
|
|
padding: 5px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-field {
|
|
|
|
display: flex;
|
|
|
|
margin: 10px;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-row {
|
|
|
|
flex: 1;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-row h2 {
|
|
|
|
font-size: medium;
|
|
|
|
padding: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-bottom: 1px solid var(--dark3);
|
|
|
|
border-top: 1px solid var(--dark3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-row a {
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: small;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-row-content {
|
|
|
|
position: absolute;
|
|
|
|
background: var(--dark1);
|
|
|
|
width: 100%;
|
2024-04-27 14:30:45 +02:00
|
|
|
overflow: scroll;
|
2024-04-27 13:42:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
label,
|
|
|
|
.form-field label {
|
|
|
|
margin-right: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2024-04-27 14:40:13 +02:00
|
|
|
.canvas-board {
|
2024-04-27 13:42:43 +02:00
|
|
|
flex: 1;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2024-04-27 14:40:13 +02:00
|
|
|
.main-menu {
|
2024-04-27 13:42:43 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
width: 100%;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
2024-04-27 14:40:13 +02:00
|
|
|
.main-menu::-webkit-scrollbar {
|
2024-04-27 13:42:43 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hide scrollbar for IE, Edge and Firefox */
|
2024-04-27 14:40:13 +02:00
|
|
|
.main-menu {
|
2024-04-27 13:42:43 +02:00
|
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
|
|
scrollbar-width: none; /* Firefox */
|
|
|
|
}
|
|
|
|
|
|
|
|
.reset-menu {
|
|
|
|
display: flex;
|
2024-04-27 14:30:45 +02:00
|
|
|
justify-content: space-between;
|
|
|
|
padding: 10px;
|
|
|
|
vertical-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reset-menu .loop {
|
2024-04-27 13:42:43 +02:00
|
|
|
padding: 5px;
|
2024-04-27 14:30:45 +02:00
|
|
|
display: inline-block;
|
2024-04-27 13:42:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 800px) {
|
|
|
|
h1 {
|
|
|
|
font-size: medium;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
|
2024-04-27 14:40:13 +02:00
|
|
|
.burger-toggle {
|
2024-04-27 13:42:43 +02:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2024-04-27 14:40:13 +02:00
|
|
|
.main-menu {
|
2024-04-27 13:42:43 +02:00
|
|
|
background: var(--dark2);
|
|
|
|
margin: 0 auto;
|
|
|
|
flex-direction: column;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-row {
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-row h2,
|
|
|
|
.form-field {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-row h2 {
|
|
|
|
border-bottom: 1px solid var(--dark3);
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-field {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-row-content {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2024-04-27 14:30:45 +02:00
|
|
|
|
|
|
|
.reset-menu {
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
2024-04-27 13:42:43 +02:00
|
|
|
}
|