1
0

First commit

This commit is contained in:
2024-10-27 04:43:07 +01:00
parent 1dae13fe7e
commit 35f37491af
20 changed files with 2120 additions and 0 deletions

99
src/html/style.css Normal file
View File

@@ -0,0 +1,99 @@
* {
box-sizing: border-box;
scrollbar-color: #3eb0ec #232629;
scrollbar-width: 10px;
}
body {
font: 400 12pt "Droid Sans", sans-serif;
background-color: #454c53;
padding: 0;
margin: 0;
color: #e3d1c7;
}
input {
border: 1px solid transparent;
}
input:focus, textarea:focus {
outline: 1px solid #3eb0ec;
}
input:invalid, textarea:invalid {
border: 1px dashed red;
}
::placeholder {
color: #e3d1c7;
}
.left {
text-align: left;
}
.center {
text-align: center;
}
.right {
text-align: right;
}
.fullwidth {
width: 100%;
}
.inlineleftspace {
margin-left: 4px ;
}
.monospace {
font-family: 'Courier New', Courier, monospace;
}
.form {
max-width: 800px;
min-width: 200px;
margin: auto;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 20px;
}
.panel {
margin-top: 4px;
}
.controlpanel {
margin-top: 30px;
}
.titlebox {
font-size:8pt;
margin-left: 4px;
margin-bottom: 2px;
}
.textbox {
border: none;
color: #e3d1c7;
background-color: #31363b;
padding: 4px;
}
.messagebox {
border: none;
color: #e3d1c7;
background-color: #31363b;
padding: 4px;
resize: vertical;
}
.button {
background-color: #31363b;
color: #e3d1c7;
padding: 4px;
border: solid 1px #2cc4db;
border-radius: 4px;
}
.button:hover {
background-color: #2cc4db;
color: #31363b;
}