1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

Style nav-tabs, service-status

This commit is contained in:
billz 2019-10-14 21:16:11 +01:00
parent 5c5ff6c5bb
commit 578d5a981a

View File

@ -37,6 +37,19 @@ body {
font-size: 0.85rem; font-size: 0.85rem;
} }
.nav-tabs .nav-link.active,
.nav-tabs .nav-link {
font-size: 1.0rem;
}
.nav-tabs a.nav-link {
color: #6e707e;
}
a.nav-link.active {
font-weight: bolder;
}
.sidebar .nav-item .nav-link { .sidebar .nav-item .nav-link {
padding: 0.6rem; padding: 0.6rem;
} }
@ -80,26 +93,15 @@ body {
min-height:500px; min-height:500px;
} }
.service-status-running, .service-status {
.service-status-stopped { border-width: 0;
background-color: #fff;
color: #333;
text-transform: uppercase;
line-height: inherit;
} }
.service-status-running:before,
.service-status-stopped:before { .service-status-running {
display: inline-block;
height: 16px;
width: 16px;
content: "\2022";
font-size: 3.5em;
color: green; color: green;
line-height: 16px;
vertical-align: bottom;
margin-right: 2px;
} }
.service-status-stopped:before {
.service-status-stopped {
color: red; color: red;
animation: flash 1s linear infinite; animation: flash 1s linear infinite;
} }