Terra-Dash/static/style.css
megamichi fadf7b15c5 init
2024-09-13 15:07:56 +02:00

46 lines
1.1 KiB
CSS

a {
color: rgb(107, 214, 0);
}
body {
background-color: black;
color: chartreuse;
}
#dash {
display: flex;
align-content: center;
justify-content: start;
}
.button {
color: black;
background-color: chartreuse;
border-color: chartreuse;
padding: 10px;
border-radius: 20px;
}
.input {
color: chartreuse;
background-color: rgb(0, 0, 0);
border-color: chartreuse;
padding: 10px;
border-style: solid;
border-width: 1px;
border-radius: 20px;
}
#terminal {
background-color: #000; /* Schwarzer Hintergrund für das Terminal */
color: chartreuse; /* Grüne Schriftfarbe */
border-style: solid;
border-color: chartreuse; /* Grüne Umrandung */
border-radius: 20px; /* Abgerundete Ecken */
padding: 15px; /* Innenabstand */
font-family: 'Courier New', Courier, monospace; /* Monospace-Schriftart */
font-size: 16px; /* Schriftgröße */
width: 100%;
height: 100%; /* Höhe des Terminalfensters */
overflow-y: auto; /* Scrollen bei zu viel Inhalt */
box-shadow: 0 0 10px rgba(0, 255, 0, 0.5); /* Glüheffekt der grünen Umrandung */
}