17 lines
285 B
CSS
17 lines
285 B
CSS
/* Status bar */
|
|
.status-bar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: #2d2d2d;
|
|
padding: 5px 10px;
|
|
font-size: 12px;
|
|
color: #999;
|
|
border-top: 1px solid #3a3a3a;
|
|
height: 30px;
|
|
}
|
|
|
|
.status-right span {
|
|
margin-left: 15px;
|
|
}
|