dockerize

This commit is contained in:
2025-08-08 17:47:16 +02:00
parent bf40237ba6
commit c44a449a7b
7 changed files with 150 additions and 40 deletions

View File

@@ -14,6 +14,7 @@ body {
color: #b0bec5;
line-height: 1.5;
display: flex;
font-family: monospace;
}
body,
@@ -36,13 +37,9 @@ textarea {
resize: none;
overflow: auto;
color: inherit;
font-family: inherit;
font-size: 1rem;
line-height: inherit;
}
code {
display: block;
font-family: inherit;
}
pre {
@@ -51,9 +48,13 @@ pre {
width: 100%;
margin: 0;
overflow: auto;
font-family: inherit;
font-size: 1rem;
line-height: inherit;
font-family: inherit;
}
code {
display: block;
}
button[type="submit"] {
@@ -63,3 +64,31 @@ button[type="submit"] {
span {
min-width: 4em;
}
textarea::-webkit-scrollbar,
pre::-webkit-scrollbar {
width: 10px;
}
textarea::-webkit-scrollbar-track,
pre::-webkit-scrollbar-track {
background: #2c2c2c;
}
textarea::-webkit-scrollbar-thumb,
pre::-webkit-scrollbar-thumb {
background-color: #555;
border-radius: 6px;
border: 2px solid #2c2c2c;
}
textarea::-webkit-scrollbar-thumb:hover,
pre::-webkit-scrollbar-thumb:hover {
background-color: #888;
}
textarea,
pre {
scrollbar-width: thin;
scrollbar-color: #555 #2c2c2c;
}