mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
Update theme
This commit is contained in:
parent
741c14a583
commit
05a00b02c2
@ -1,11 +1,11 @@
|
|||||||
html * {
|
html * {
|
||||||
font-family: Verdana, Geneva, sans-serif;
|
font-family: Verdana, Geneva, sans-serif;
|
||||||
font-size: 10pt;
|
font-size: 0.9rem;
|
||||||
color: #828282;
|
color: #828282;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav>li>a {
|
body {
|
||||||
font-size: 12pt;
|
color: #212529;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:focus, a:hover {
|
a:focus, a:hover {
|
||||||
@ -13,32 +13,43 @@ a:focus, a:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
font-size: 18px;
|
font-size: 1.3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel {
|
.card {
|
||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
}
|
|
||||||
|
|
||||||
.panel-primary {
|
|
||||||
border-color: #ff6600;
|
border-color: #ff6600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-primary>.panel-heading {
|
.card>.card-header {
|
||||||
border-color: #ff6600;
|
border-color: #ff6600;
|
||||||
background-color: #ff6600;
|
background-color: #ff6600;
|
||||||
color: #000;
|
color: #000;
|
||||||
font-size: 14pt;
|
font-size: 1.1rem;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
border-radius: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-heading {
|
.card-header .col {
|
||||||
border-top-left-radius: 1px;
|
color: #212529;
|
||||||
border-top-right-radius: 1px;
|
font-size: 1.1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-primary>.panel-heading .fa {
|
.card-header .fas {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
font-size: 1.0rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-brand-text {
|
||||||
|
text-transform: none;
|
||||||
|
color: #212529;
|
||||||
|
font-size: 2.0rem;
|
||||||
|
font-weight: 500;
|
||||||
|
font-family: Verdana, Geneva, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar .nav-item .nav-link {
|
||||||
|
padding: 0.6rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-header {
|
.page-header {
|
||||||
@ -46,22 +57,26 @@ h4 {
|
|||||||
margin: 10px 0 20px;
|
margin: 10px 0 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#wrapper,#page-wrapper,.panel-body,.nav>li>a,.navbar-default {
|
#wrapper,#page-wrapper,.card-body,.nav>li>a,.nav {
|
||||||
background-color: #f6f6ef;
|
background-color: #f6f6ef;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-footer {
|
.card-footer {
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary.btn-outline {
|
.alert-success {
|
||||||
color: #c61931;
|
background-color: #d4edda;
|
||||||
border-color: #c61931;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary:hover {
|
.btn-primary, .btn-primary:hover {
|
||||||
background-color: #c61931;
|
color: #828282;
|
||||||
border-color: #c61931;
|
background-color: #fff;
|
||||||
|
border-color: #828282;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-warning {
|
||||||
|
color: #333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress {
|
.progress {
|
||||||
@ -82,27 +97,19 @@ h4 {
|
|||||||
height: 300px;
|
height: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.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 {
|
i.fas.fa-circle.service-status-running {
|
||||||
display: inline-block;
|
|
||||||
height: 18px;
|
|
||||||
width: 16px;
|
|
||||||
content: "\2022";
|
|
||||||
font-size: 1.5em;
|
|
||||||
color: green;
|
color: green;
|
||||||
line-height: 16px;
|
|
||||||
vertical-align: bottom;
|
|
||||||
margin-right: 2px;
|
|
||||||
}
|
}
|
||||||
.service-status-stopped:before {
|
|
||||||
color: red;
|
i.fas.fa-circle.service-status-stopped {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service-status-stopped {
|
||||||
animation: flash 1s linear infinite;
|
animation: flash 1s linear infinite;
|
||||||
}
|
}
|
||||||
@keyframes flash {
|
@keyframes flash {
|
||||||
@ -110,3 +117,55 @@ h4 {
|
|||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.logoutput {
|
||||||
|
width:100%;
|
||||||
|
height:300px;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre.unstyled {
|
||||||
|
border-width: 0;
|
||||||
|
background-color: transparent;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dhcp-static-leases {
|
||||||
|
margin-top: 1em;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dhcp-static-lease-row {
|
||||||
|
margin-top: 0.5em;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loading-spinner {
|
||||||
|
background: url("../../app/img/loading-spinner.gif") no-repeat scroll center center transparent;
|
||||||
|
min-height: 150px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.js-reload-wifi-stations {
|
||||||
|
min-width: 10rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar.toggled .nav-item .nav-link span {
|
||||||
|
display: none;
|
||||||
|
} .sidebar .nav-item .nav-link i,
|
||||||
|
.sidebar .nav-item .nav-link span {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-warning:hover {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* change transition animation when sidebar is toggled */
|
||||||
|
#accordionSidebar.toggled {
|
||||||
|
-webkit-transition-timing-function: ease;
|
||||||
|
-o-transition-timing-function: ease;
|
||||||
|
transition-timing-function: ease;
|
||||||
|
-webkit-transition-duration: .2s;
|
||||||
|
-o-transition-duration: .2s;
|
||||||
|
transition-duration: .2s;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user