mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
41 lines
651 B
CSS
41 lines
651 B
CSS
body {
|
|
padding-top: 60px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
/* nav-header is deprecated in bootstrap 3.x, so replicate it here */
|
|
.nav-header {
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
font-size: 11px;
|
|
display: block;
|
|
color: #999;
|
|
}
|
|
|
|
.nav .glyphicon,
|
|
.sidebar .glyphicon {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.navbar-brand img {
|
|
float: left;
|
|
margin-top: -14px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.running-status {
|
|
border-radius: 50%;
|
|
border: 1px solid black;
|
|
width: 8px;
|
|
height: 8px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.running-status.active {
|
|
background-color: rgb(0, 167, 0);
|
|
}
|
|
|
|
.running-status.inactive {
|
|
background-color: rgb(228, 66, 66);
|
|
}
|