48 lines
No EOL
878 B
CSS
48 lines
No EOL
878 B
CSS
|
|
.main {
|
|
padding: 5%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.button {
|
|
color: black;
|
|
background-color: rgb(0, 0, 0);
|
|
border-color: rgb(0, 0, 0);
|
|
padding: 10px;
|
|
border-radius: 20px;
|
|
border-style:hidden;
|
|
}
|
|
#buttons {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 10px;
|
|
}
|
|
#term-input {
|
|
color: rgb(0, 0, 0);
|
|
background-color: rgba(166, 166, 166, 0.1);
|
|
border-color: white;
|
|
padding: 10px;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-radius: 20px;
|
|
}
|
|
#terminal {
|
|
background-color: black;
|
|
color: white;
|
|
border-style: solid;
|
|
border-color: rgb(0, 0, 0);
|
|
border-radius: 20px;
|
|
padding: 15px;
|
|
font-size: 16px;
|
|
height: 100%;
|
|
width: 50%;
|
|
overflow-y: auto;
|
|
box-shadow: 0 0 10px rgb(0, 0, 0);
|
|
}
|
|
|
|
#timer {
|
|
font-size: 11px;
|
|
margin: 0px;
|
|
margin-left: 15px;
|
|
} |