mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-24 16:40:24 +00:00
Apply service-status to theme
This commit is contained in:
parent
97efe3a516
commit
165b9865cf
1 changed files with 29 additions and 0 deletions
29
dist/css/hackernews.css
vendored
29
dist/css/hackernews.css
vendored
|
@ -81,3 +81,32 @@ h4 {
|
|||
width: 100%;
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
.service-status-running,
|
||||
.service-status-stopped {
|
||||
background-color: #fff;
|
||||
color: #333;
|
||||
text-transform: uppercase;
|
||||
line-height: inherit;
|
||||
}
|
||||
.service-status-running:before,
|
||||
.service-status-stopped:before {
|
||||
display: inline-block;
|
||||
height: 18px;
|
||||
width: 16px;
|
||||
content: "\2022";
|
||||
font-size: 1.5em;
|
||||
color: green;
|
||||
line-height: 16px;
|
||||
vertical-align: bottom;
|
||||
margin-right: 2px;
|
||||
}
|
||||
.service-status-stopped:before {
|
||||
color: red;
|
||||
animation: flash 1s linear infinite;
|
||||
}
|
||||
@keyframes flash {
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue