52 lines
926 B
CSS
52 lines
926 B
CSS
a {
|
|
color: chartreuse;
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
#buttons {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 10px;
|
|
}
|
|
input {
|
|
color: chartreuse;
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: chartreuse;
|
|
padding: 10px;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
|
|
#terminal {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
color: chartreuse;
|
|
border-style: solid;
|
|
border-color: chartreuse;
|
|
border-radius: 20px;
|
|
padding: 15px;
|
|
font-family: 'Courier New', Courier, monospace;
|
|
font-size: 16px;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
box-shadow: 0 0 10px rgb(0, 255, 0);
|
|
}
|