32 lines
433 B
CSS
32 lines
433 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-family: monospace;
|
|
font-size: 12pt;
|
|
|
|
background-color: black;
|
|
color: white;
|
|
width: 100%;
|
|
height: 285px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.title {
|
|
color: thistle;
|
|
margin-bottom: 12pt;
|
|
}
|
|
|
|
.bubatzBot {
|
|
color: skyblue;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.pastaBot {
|
|
color: bisque;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.infoMessage {
|
|
color: lightgreen;
|
|
}
|