Terra-Dash/static/style.css
2024-09-15 20:38:22 +02:00

60 lines
1 KiB
CSS

a {
color: rgb(107, 214, 0);
}
body {
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;
border-style:hidden;
margin-bottom: 10px;
}
#buttons {
display: flex;
flex-direction: column;
padding: 10px;
}
.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: #0001002a;
color: chartreuse;
border-style: solid;
border-color: chartreuse;
border-radius: 20px;
padding: 15px;
font-family: 'Courier New', Courier, monospace;
font-size: 16px;
width: 100%;
height: 100%;
overflow-y: auto;
box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
flex-grow: 1;
}
#dash {
display: flex;
height: 100vh;
}