Terra-Dash/static/style.css

86 lines
1.5 KiB
CSS
Raw Normal View History

2024-09-13 15:07:56 +02:00
a {
2024-09-16 21:01:46 +02:00
<<<<<<< HEAD
2024-09-13 15:07:56 +02:00
color: rgb(107, 214, 0);
2024-09-16 21:01:46 +02:00
=======
color: chartreuse;
>>>>>>> 079d2a0 (terminal intigration)
2024-09-13 15:07:56 +02:00
}
body {
color: chartreuse;
}
2024-09-13 15:07:56 +02:00
#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;
2024-09-16 21:01:46 +02:00
<<<<<<< HEAD
margin-bottom: 10px;
2024-09-16 21:01:46 +02:00
=======
>>>>>>> 079d2a0 (terminal intigration)
}
#buttons {
display: flex;
flex-direction: column;
padding: 10px;
2024-09-13 15:07:56 +02:00
}
2024-09-16 21:01:46 +02:00
<<<<<<< HEAD
2024-09-13 15:07:56 +02:00
2024-09-13 15:07:56 +02:00
.input {
color: chartreuse;
background-color: rgb(0, 0, 0);
2024-09-16 21:01:46 +02:00
=======
input {
color: chartreuse;
background-color: rgba(0, 0, 0, 0.1);
>>>>>>> 079d2a0 (terminal intigration)
2024-09-13 15:07:56 +02:00
border-color: chartreuse;
padding: 10px;
border-style: solid;
border-width: 1px;
border-radius: 20px;
}
2024-09-16 21:01:46 +02:00
<<<<<<< HEAD
2024-09-13 15:07:56 +02:00
#terminal {
background-color: #0001002a;
2024-09-16 21:01:46 +02:00
=======
#terminal {
background-color: rgba(0, 0, 0, 0.1);
>>>>>>> 079d2a0 (terminal intigration)
color: chartreuse;
2024-09-13 15:07:56 +02:00
border-style: solid;
border-color: chartreuse;
border-radius: 20px;
padding: 15px;
font-family: 'Courier New', Courier, monospace;
font-size: 16px;
2024-09-16 21:01:46 +02:00
<<<<<<< HEAD
2024-09-13 15:07:56 +02:00
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;
2024-09-16 21:01:46 +02:00
=======
height: 100%;
overflow-y: auto;
box-shadow: 0 0 10px rgb(0, 255, 0);
>>>>>>> 079d2a0 (terminal intigration)
2024-09-13 15:07:56 +02:00
}