Terra-Dash/static/style.css

48 lines
878 B
CSS
Raw Normal View History

2024-12-01 21:13:10 +01:00
.main {
padding: 5%;
2024-09-13 15:07:56 +02:00
display: flex;
2024-12-01 21:13:10 +01:00
flex-direction: column;
2024-09-13 15:07:56 +02:00
}
.button {
color: black;
2024-12-01 21:13:10 +01:00
background-color: rgb(0, 0, 0);
border-color: rgb(0, 0, 0);
2024-09-13 15:07:56 +02:00
padding: 10px;
border-radius: 20px;
border-style:hidden;
}
#buttons {
display: flex;
flex-direction: column;
padding: 10px;
2024-09-13 15:07:56 +02:00
}
2024-12-01 21:13:10 +01:00
#term-input {
color: rgb(0, 0, 0);
background-color: rgba(166, 166, 166, 0.1);
border-color: white;
2024-09-13 15:07:56 +02:00
padding: 10px;
border-style: solid;
border-width: 1px;
border-radius: 20px;
}
2024-09-16 21:01:46 +02:00
#terminal {
2024-12-01 21:13:10 +01:00
background-color: black;
color: white;
2024-09-13 15:07:56 +02:00
border-style: solid;
2024-12-01 21:13:10 +01:00
border-color: rgb(0, 0, 0);
border-radius: 20px;
padding: 15px;
font-size: 16px;
2024-09-16 21:01:46 +02:00
height: 100%;
2024-12-01 21:13:10 +01:00
width: 50%;
2024-09-16 21:01:46 +02:00
overflow-y: auto;
2024-12-01 21:13:10 +01:00
box-shadow: 0 0 10px rgb(0, 0, 0);
2024-09-13 15:07:56 +02:00
}
2024-12-01 21:13:10 +01:00
#timer {
font-size: 11px;
margin: 0px;
margin-left: 15px;
}