48 lines
575 B
CSS
48 lines
575 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-family: monospace;
|
|
font-size: 10pt;
|
|
background-color: black;
|
|
color: white;
|
|
width: 100%;
|
|
height: 290px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.fetch {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.prompt {
|
|
color: lightgreen;
|
|
}
|
|
|
|
.username {
|
|
color: violet;
|
|
}
|
|
|
|
.hostname {
|
|
color: skyblue;
|
|
}
|
|
|
|
.temp {
|
|
color: pink;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.humidity {
|
|
color: skyblue;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.plants {
|
|
color: lightgreen;
|
|
}
|
|
|
|
pre {
|
|
margin: 0;
|
|
}
|