20 lines
304 B
CSS
20 lines
304 B
CSS
|
|
.container{
|
||
|
|
margin: 0;
|
||
|
|
padding: 10px;
|
||
|
|
width: 100%;
|
||
|
|
min-height: 93vh;
|
||
|
|
background-color: #000d2c;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
.nav-right{
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
width: 300px;
|
||
|
|
}
|
||
|
|
.text-green{
|
||
|
|
color: #67C23A;
|
||
|
|
}
|
||
|
|
.text-red{
|
||
|
|
color: red;
|
||
|
|
}
|