bunkerweb 1.4.0
This commit is contained in:
35
ui/static/css/base.css
Normal file
35
ui/static/css/base.css
Normal file
@@ -0,0 +1,35 @@
|
||||
body.bg-light {
|
||||
font-family: "Poppins", sans-serif;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
font-weight: 400;
|
||||
background-position: center;
|
||||
background-repeat: repeat;
|
||||
background-size: 7%;
|
||||
margin: 0;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.main-div {
|
||||
flex: 1 0 auto;
|
||||
}
|
||||
|
||||
::selection {
|
||||
color: #fff;
|
||||
background-color: #085577;
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
color: #fff;
|
||||
background-color: #085577;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .toast {
|
||||
background-color: rgba(0, 0, 0, 0.85) !important;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1) !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .toast .toast-header {
|
||||
background-color: rgba(0, 0, 0, 0.85) !important;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1) !important;
|
||||
}
|
||||
7
ui/static/css/bootstrap-datepicker.min.css
vendored
Normal file
7
ui/static/css/bootstrap-datepicker.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
5
ui/static/css/bootstrap.min.css
vendored
5
ui/static/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
289
ui/static/css/configs&plugins&cache.css
Normal file
289
ui/static/css/configs&plugins&cache.css
Normal file
@@ -0,0 +1,289 @@
|
||||
.widget {
|
||||
padding: 18px;
|
||||
background-color: #fff;
|
||||
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
|
||||
}
|
||||
|
||||
.folder-container {
|
||||
margin: 10px;
|
||||
padding: 0 20px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.folder-wrapper {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.file-item,
|
||||
.folder-item {
|
||||
margin-left: -16px;
|
||||
padding-left: 20px;
|
||||
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.file-item {
|
||||
background: transparent
|
||||
url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAsUlEQVQ4T2NkgIKE2q4DMDZW+j+jAgPj//0LmssSkeUZEQZ0/1/QXArnoxuSUNPdwMDIEMDwn2HDgpbSBpg8aQYw/H/PwMCQwMDIMHFBc9kCkCGkGODAwMAAwiBd9TDXYhiQUNtdwPCfgR97ePy7uKClfENCLcK7RLsA2UC8BoADi4HhP44YObigpfTAsHfBgMcC3vwAzze0TAcUuKDrAMN/RlwJCNVcRoaPC5pLA0CCALOMnRHTr6OKAAAAAElFTkSuQmCC")
|
||||
no-repeat left center;
|
||||
}
|
||||
|
||||
.folder-item {
|
||||
font-weight: bold;
|
||||
background: transparent
|
||||
url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA6UlEQVQ4T62TvQ3CMBCF31OgDxPACGwATAAjeAOgSKpECgoCiRTABmYDNgA2yAawAUpNwiGHH0GBlATcuPH3vbPvTPy4+COPXKCCpY30sgORPIU6dLtF5FTeYgWgA2KtQ1fnQj8amQ2C81fJVcZ65sZUfhTr0GmrYN5iZjWLpIqwC0oLVjah8hd7WPUBsvQIwC4ieD9zFwgDELuyMCCHuwDcAliWFgg2jwoQgxxWEDzeICfZqSDoPa9QHjZpVq1B5UUnEIXa91GhSKKnrm3mQEqXngNyMNNqBKYD/QqSsQ6d1X8+U4X0F3IDjRRPOikDqHUAAAAASUVORK5CYII=")
|
||||
no-repeat left center;
|
||||
}
|
||||
|
||||
.folder-item .collapse-div {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.folder-item .collapse-div .fa-play {
|
||||
color: var(--bs-body-color);
|
||||
vertical-align: center;
|
||||
}
|
||||
|
||||
.folder-container span,
|
||||
.folder-container h6 {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.folder-item .collapse-div .rotate-icon {
|
||||
-o-transition: all 2s linear;
|
||||
-moz-transition: all 2s linear;
|
||||
-webkit-transition: all 2s linear;
|
||||
transition: all 2s linear;
|
||||
}
|
||||
|
||||
.folder-item .collapse-div .rotate-icon.down {
|
||||
-ms-transform: rotate(90deg);
|
||||
-o-transform: rotate(90deg);
|
||||
-moz-transform: rotate(90deg);
|
||||
-webkit-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.uploader {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-family: "Poppins", sans-serif;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
width: 322px;
|
||||
background: #fff;
|
||||
border-radius: 5px;
|
||||
padding: 22px;
|
||||
box-shadow: 7px 7px 12px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.wrapper header {
|
||||
color: #085577;
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.wrapper header .btn {
|
||||
color: #085577;
|
||||
border-color: #085577;
|
||||
}
|
||||
|
||||
.wrapper header .btn:hover {
|
||||
color: #fff;
|
||||
background-color: #085577;
|
||||
}
|
||||
|
||||
.wrapper form.drop-zone {
|
||||
height: 125px;
|
||||
display: flex;
|
||||
cursor: pointer;
|
||||
margin: 22px 0;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
border-radius: 5px;
|
||||
border: 2px dashed #085577;
|
||||
}
|
||||
|
||||
.wrapper form.drop-zone.drop-zone--over {
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.wrapper form :where(i, p, svg) {
|
||||
color: #085577;
|
||||
}
|
||||
|
||||
.wrapper form :where(i, svg) {
|
||||
font-size: 37px;
|
||||
}
|
||||
|
||||
.wrapper form p {
|
||||
margin-top: 11px;
|
||||
margin-bottom: 0.3rem;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.wrapper section .row {
|
||||
margin-bottom: 10px;
|
||||
background: #e9f0ff;
|
||||
list-style: none;
|
||||
padding: 11px 15px;
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.wrapper section .row.failed {
|
||||
background: #f9ecec;
|
||||
}
|
||||
|
||||
.wrapper section .row :where(i, svg) {
|
||||
color: #085577;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.wrapper section .details span {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.wrapper .progress-area .row .content {
|
||||
width: 100%;
|
||||
margin-left: 11px;
|
||||
}
|
||||
|
||||
.wrapper .progress-area .details {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 7px;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.wrapper .progress-area .content .progress-bar {
|
||||
height: 6px;
|
||||
width: 100%;
|
||||
margin-bottom: 4px;
|
||||
background: #fff;
|
||||
border-radius: 22px;
|
||||
}
|
||||
|
||||
.wrapper .content .progress-bar .progress {
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
background: #085577;
|
||||
border-radius: inherit;
|
||||
}
|
||||
|
||||
.wrapper .uploaded-area {
|
||||
max-height: 261px;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.wrapper .uploaded-area.onprogress {
|
||||
max-height: 112px;
|
||||
}
|
||||
|
||||
.wrapper .uploaded-area::-webkit-scrollbar {
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
.wrapper .uploaded-area .row .content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.wrapper .uploaded-area .row .details {
|
||||
display: flex;
|
||||
margin-left: 11px;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.wrapper .uploaded-area .row .details .size {
|
||||
color: #404040;
|
||||
font-size: 8px;
|
||||
}
|
||||
|
||||
.wrapper .uploaded-area :where(i, svg).fa-check,
|
||||
.wrapper .uploaded-area :where(i, svg).fa-xmark {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .widget {
|
||||
background: #1d1d1d;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .modal-content,
|
||||
[data-theme="dark"] .wrapper {
|
||||
background-color: #222 !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .modal-content .bg-light {
|
||||
background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
|
||||
border-color: #111 !important;
|
||||
border: 1px solid #343636 !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .modal-body .nav-link span {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .wrapper header {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .wrapper header .btn {
|
||||
color: #fff;
|
||||
border-color: #fff;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .wrapper header .btn:hover {
|
||||
color: #085577;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .wrapper form.drop-zone {
|
||||
border: 2px dashed #fff;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .wrapper form :where(i, p, svg) {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .wrapper .progress-area .content .progress-bar {
|
||||
background: #085577;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .wrapper .content .progress-bar .progress {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .wrapper .uploaded-area .row .details .name {
|
||||
color: #085577;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .wrapper section .row {
|
||||
background: #cddcff;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .wrapper section .row.failed {
|
||||
background: #ffcdcd;
|
||||
}
|
||||
|
||||
[data-theme="dark"] textarea {
|
||||
border: 1px solid #343636;
|
||||
background: #222;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
[data-theme="dark"] textarea:focus {
|
||||
background: inherit;
|
||||
color: inherit;
|
||||
}
|
||||
@@ -1,40 +0,0 @@
|
||||
.bd-placeholder-img {
|
||||
font-size: 1.125rem;
|
||||
text-anchor: middle;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
main > .container {
|
||||
padding: 100px 15px 0;
|
||||
}
|
||||
|
||||
.form-signin {
|
||||
width: 100%;
|
||||
max-width: 330px;
|
||||
padding: 15px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.form-signin .form-floating:focus-within {
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.form-signin input[name="username"] {
|
||||
margin-bottom: -1px;
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
|
||||
.form-signin input[name="password"] {
|
||||
margin-bottom: 10px;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
6
ui/static/css/fa.all.min.css
vendored
Normal file
6
ui/static/css/fa.all.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
5
ui/static/css/fa.min.css
vendored
5
ui/static/css/fa.min.css
vendored
File diff suppressed because one or more lines are too long
176
ui/static/css/footer.css
Normal file
176
ui/static/css/footer.css
Normal file
@@ -0,0 +1,176 @@
|
||||
.footer-bs {
|
||||
background-image: linear-gradient(#085577, #05364b);
|
||||
padding: 60px 40px;
|
||||
color: rgba(255, 255, 255, 1);
|
||||
transition: all 200ms linear 0s;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .footer-bs {
|
||||
background-image: linear-gradient(#05364b, #031e29);
|
||||
}
|
||||
|
||||
.footer-bs .footer-brand,
|
||||
.footer-bs .footer-nav,
|
||||
.footer-bs .footer-social,
|
||||
.footer-bs .footer-ns {
|
||||
padding: 10px 25px;
|
||||
}
|
||||
|
||||
.footer-bs .footer-nav,
|
||||
.footer-bs .footer-social,
|
||||
.footer-bs .footer-ns {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.footer-bs .footer-brand h2 {
|
||||
margin: 0px 0px 10px;
|
||||
}
|
||||
|
||||
.footer-bs .footer-brand p {
|
||||
margin-top: 10px;
|
||||
font-size: 12px;
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
.footer-bs .footer-nav ul.pages {
|
||||
list-style: none;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.footer-bs .footer-nav ul.pages li {
|
||||
padding: 5px 0px;
|
||||
}
|
||||
|
||||
.footer-bs .footer-nav ul.pages a {
|
||||
text-decoration: none;
|
||||
color: rgba(255, 255, 255, 1);
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.footer-bs .footer-nav ul.pages a:hover {
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.footer-bs .footer-nav h4 {
|
||||
font-size: 11px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 3px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.footer-bs .footer-nav ul.list {
|
||||
list-style: none;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.footer-bs .footer-nav ul.list li {
|
||||
padding: 5px 0px;
|
||||
}
|
||||
|
||||
.footer-bs .footer-nav ul.list a {
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
}
|
||||
|
||||
.footer-bs .footer-nav ul.list a:hover {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.footer-bs .footer-social ul {
|
||||
list-style: none;
|
||||
padding: 0px;
|
||||
}
|
||||
.footer-bs .footer-social h4 {
|
||||
font-size: 11px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 3px;
|
||||
}
|
||||
.footer-bs .footer-social li {
|
||||
padding: 5px 4px;
|
||||
}
|
||||
.footer-bs .footer-social a {
|
||||
text-decoration: none;
|
||||
color: rgba(255, 255, 255, 1);
|
||||
}
|
||||
.footer-bs .footer-social a:hover {
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
}
|
||||
|
||||
.footer-bs .footer-ns h4 {
|
||||
font-size: 11px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 3px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.footer-bs .footer-ns div {
|
||||
font-size: 12px;
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.footer-bs .footer-nav,
|
||||
.footer-bs .footer-social,
|
||||
.footer-bs .footer-ns {
|
||||
border-left: solid 1px rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
.footer-brand {
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer-brand img {
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.footer-brand img {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-social .bi {
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.bi-twitter {
|
||||
color: #1da1f2;
|
||||
}
|
||||
|
||||
.bi-linkedin {
|
||||
color: #00a0dc;
|
||||
}
|
||||
|
||||
.bi-discord {
|
||||
color: #7289da;
|
||||
}
|
||||
|
||||
.input-group .btn-light {
|
||||
background-color: #fff;
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 0.25rem !important;
|
||||
border-top-left-radius: 0 !important;
|
||||
border-bottom-left-radius: 0 !important;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.input-group .btn-light:hover {
|
||||
background-color: #e5e5e5;
|
||||
border: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
.footer-bs h4 {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.footer-ns .invalid-feedback {
|
||||
color: red !important;
|
||||
}
|
||||
|
||||
.footer-ns .btn-light {
|
||||
margin-left: 10px;
|
||||
}
|
||||
53
ui/static/css/global-config.css
Normal file
53
ui/static/css/global-config.css
Normal file
@@ -0,0 +1,53 @@
|
||||
#form-edit-global-conf .row .col-form-label,
|
||||
#form-edit-global-conf .row .col-8 {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.nav-pills .nav-link.active,
|
||||
.nav-pills .nav-link:hover {
|
||||
background-color: rgba(64, 187, 107, 0.5) !important;
|
||||
background-clip: border-box !important;
|
||||
}
|
||||
|
||||
#form-edit-global-conf .fa-circle-info,
|
||||
#form-edit-global-conf .fa-question-circle,
|
||||
#form-edit-global-conf .fa-circle-question {
|
||||
color: #085577 !important;
|
||||
}
|
||||
|
||||
#form-edit-global-conf .nav-link span {
|
||||
color: #000 !important;
|
||||
}
|
||||
|
||||
#form-edit-global-conf aside {
|
||||
background: none !important;
|
||||
}
|
||||
|
||||
#form-edit-global-conf .btn-primary {
|
||||
background-color: #085577;
|
||||
border-color: #085577;
|
||||
}
|
||||
|
||||
#form-edit-global-conf .btn-primary:hover {
|
||||
background-color: #247496;
|
||||
border-color: #247496;
|
||||
}
|
||||
|
||||
[data-theme="dark"] #form-edit-global-conf,
|
||||
[data-theme="dark"] .wrapper {
|
||||
background-color: #222 !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] #form-edit-global-conf .bg-light {
|
||||
background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
|
||||
border-color: #111 !important;
|
||||
border: 1px solid #343636 !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] #form-edit-global-conf .nav-link span {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .nav-pills .nav-link.active {
|
||||
background-color: #535353 !important;
|
||||
}
|
||||
309
ui/static/css/home.css
Normal file
309
ui/static/css/home.css
Normal file
@@ -0,0 +1,309 @@
|
||||
.card-body .btn-outline-success {
|
||||
background-color: #40bb6b;
|
||||
border-color: #40bb6b;
|
||||
}
|
||||
|
||||
.no_internet.container-fluid {
|
||||
padding-top: 0 !important;
|
||||
}
|
||||
|
||||
section.blog-list {
|
||||
padding-top: 0 !important;
|
||||
}
|
||||
|
||||
.blog-list .item .title {
|
||||
font-size: 1.275rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.blog-list .item .title a {
|
||||
color: #292929;
|
||||
}
|
||||
|
||||
.blog-list .item .title a:hover {
|
||||
color: #292929;
|
||||
}
|
||||
|
||||
.blog-list .item .post-thumb {
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.blog-list .item .intro {
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
.blog-list .item .more-link {
|
||||
font-size: 0.8125rem;
|
||||
}
|
||||
|
||||
.blog-list .text-link {
|
||||
color: #40bb6b;
|
||||
}
|
||||
|
||||
.blog-list a.text-link {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.blog-list a.text-link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.blog-list .blog-nav .nav-link {
|
||||
background: #53b463;
|
||||
color: #fff;
|
||||
font-size: 1rem;
|
||||
padding: 1rem;
|
||||
font-weight: bold;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.blog-list .blog-nav .nav-link:hover {
|
||||
background: #3dba52;
|
||||
}
|
||||
|
||||
.blog-list .blog-nav .nav-link-prev {
|
||||
border-right: 1px solid #309441;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.blog-list .post-thumb {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.blog-list .post-thumb {
|
||||
max-width: 150px;
|
||||
}
|
||||
}
|
||||
|
||||
.blog-list .single-col-max-width {
|
||||
max-width: 820px;
|
||||
}
|
||||
|
||||
.blog-list .meta {
|
||||
color: #8f8f8f;
|
||||
font-size: 0.8125rem;
|
||||
}
|
||||
|
||||
.blog-list .meta span {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.blog-list .meta span a {
|
||||
color: #8f8f8f;
|
||||
}
|
||||
|
||||
.blog-list .meta span a:hover {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
|
||||
.blog-list .meta span:after {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
border-radius: 50%;
|
||||
background: #8f8f8f;
|
||||
margin-left: 0.5rem;
|
||||
margin-right: 0.5rem;
|
||||
position: relative;
|
||||
top: -3px;
|
||||
}
|
||||
|
||||
.blog-list .meta span:last-child:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.blog-list .intro {
|
||||
color: #4f4f4f;
|
||||
}
|
||||
|
||||
.blog-list h1 {
|
||||
margin-bottom: 5vh;
|
||||
}
|
||||
|
||||
.text-xs {
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
.text-primary {
|
||||
color: #085577 !important;
|
||||
}
|
||||
|
||||
.font-weight-bold {
|
||||
font-weight: 700 !important;
|
||||
}
|
||||
|
||||
.text-uppercase {
|
||||
text-transform: uppercase !important;
|
||||
}
|
||||
|
||||
.mb-1,
|
||||
.my-1 {
|
||||
margin-bottom: 0.25rem !important;
|
||||
}
|
||||
|
||||
.fa-arrow-right-long {
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.text-gray-800 {
|
||||
color: #5a5c69 !important;
|
||||
}
|
||||
|
||||
.text-gray-300 {
|
||||
color: #dddfeb !important;
|
||||
}
|
||||
|
||||
a .fa-twitter:hover {
|
||||
color: #1da1f2 !important;
|
||||
}
|
||||
|
||||
a .fa-linkedin:hover {
|
||||
color: #0077b5 !important;
|
||||
}
|
||||
|
||||
a .fa-discord:hover {
|
||||
color: #7289da !important;
|
||||
}
|
||||
|
||||
a .fa-github:hover {
|
||||
color: #333 !important;
|
||||
}
|
||||
|
||||
.border-left-primary {
|
||||
border-left: 0.25rem solid #085577 !important;
|
||||
}
|
||||
|
||||
.card .btn {
|
||||
color: #222;
|
||||
font-size: 12px;
|
||||
background: none;
|
||||
}
|
||||
|
||||
[data-theme="dark"] a .fa-twitter:hover {
|
||||
color: #1da1f2 !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] a .fa-linkedin:hover {
|
||||
color: #0077b5 !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] a .fa-discord:hover {
|
||||
color: #7289da !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] a .fa-github:hover {
|
||||
color: #ccc !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .card {
|
||||
background-color: #222 !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .card .text-gray-800 {
|
||||
color: #f6f6f6 !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .card .card-title,
|
||||
[data-theme="dark"] .card .btn,
|
||||
[data-theme="dark"] .blog-list .title .text-link {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .blog-list .intro {
|
||||
color: #f6f6f6;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .blog-list .meta {
|
||||
color: #b8b8b8;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .blog-list .blog-nav .nav-link {
|
||||
background: #459653;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .blog-list .blog-nav .nav-link:hover {
|
||||
background: #2e8b3d;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .blog-list .blog-nav .nav-link-prev {
|
||||
border-right: 1px solid #2e8b3d;
|
||||
}
|
||||
|
||||
.no_internet h3 {
|
||||
color: #9e9e9e;
|
||||
font-size: calc(20px + 6 * ((100vw - 320px) / 680));
|
||||
}
|
||||
|
||||
.no_internet button:focus {
|
||||
box-shadow: none !important;
|
||||
outline-width: 0;
|
||||
}
|
||||
|
||||
.no_internet .card {
|
||||
border-radius: 0;
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
|
||||
.no_internet .card-header {
|
||||
background-color: #f44236 !important;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.no_internet img {
|
||||
width: 180px !important;
|
||||
}
|
||||
|
||||
.no_internet .btn-primary {
|
||||
background: #b52ab4;
|
||||
color: #fff !important;
|
||||
border-radius: 0 !important;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.no_internet .btn-primary:hover {
|
||||
background: #b52ab4;
|
||||
}
|
||||
|
||||
.no_internet .btn-primary:focus {
|
||||
background: #b52ab4 !important;
|
||||
}
|
||||
|
||||
.no_internet .btn-success {
|
||||
border: 1px solid #b52ab4;
|
||||
padding: 8px 20px 8px 20px !important;
|
||||
border-radius: 20px !important;
|
||||
}
|
||||
|
||||
.no_internet .btn-success:hover {
|
||||
background: #b52ab4;
|
||||
color: #fff !important;
|
||||
border-color: #b52ab4 !important;
|
||||
}
|
||||
|
||||
.no_internet .btn-success:focus {
|
||||
background: #b52ab4 !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
.no_internet .btn-success {
|
||||
background: #b52ab4 !important;
|
||||
}
|
||||
|
||||
.inner li {
|
||||
list-style-type: disc !important;
|
||||
}
|
||||
|
||||
.fa-times-circle {
|
||||
vertical-align: middle !important;
|
||||
cursor: pointer !important;
|
||||
}
|
||||
|
||||
@media (max-width: 654px) {
|
||||
.card {
|
||||
width: unset;
|
||||
}
|
||||
}
|
||||
151
ui/static/css/instances&services.css
Normal file
151
ui/static/css/instances&services.css
Normal file
@@ -0,0 +1,151 @@
|
||||
.card {
|
||||
border: none;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.c-details span {
|
||||
font-weight: 300;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.icon {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 39px;
|
||||
}
|
||||
|
||||
.icon.True {
|
||||
background-color: #00ce6e;
|
||||
}
|
||||
|
||||
.icon.False {
|
||||
background-color: #f44336;
|
||||
}
|
||||
|
||||
.icon .fa-power-off {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.badge span {
|
||||
background-color: #fffbec;
|
||||
width: 60px;
|
||||
height: 25px;
|
||||
padding-bottom: 3px;
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
color: #fed85d;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.progress {
|
||||
height: 10px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.progress div {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
.text1 {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.text2 {
|
||||
color: #a5aec0;
|
||||
}
|
||||
|
||||
.dropdown-menu .svg-inline--fa {
|
||||
width: 14px !important;
|
||||
height: 16px !important;
|
||||
}
|
||||
|
||||
.modal {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.modal-body .flex-grow-1.d-flex {
|
||||
background-clip: content-box;
|
||||
}
|
||||
|
||||
.modal-body .row .col-form-label,
|
||||
.modal-body .row .col-8 {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.nav-pills .nav-link.active,
|
||||
.modal-body .nav-link:hover {
|
||||
background-color: rgba(64, 187, 107, 0.5) !important;
|
||||
background-clip: border-box !important;
|
||||
}
|
||||
|
||||
.modal-body .fa-circle-info,
|
||||
.modal-body .fa-question-circle,
|
||||
.modal-body .fa-circle-question {
|
||||
color: #085577 !important;
|
||||
}
|
||||
|
||||
.modal-body .nav-link span {
|
||||
color: #000 !important;
|
||||
}
|
||||
|
||||
.modal-body aside {
|
||||
background: none !important;
|
||||
}
|
||||
|
||||
.modal-footer .btn-primary {
|
||||
background-color: #085577;
|
||||
border-color: #085577;
|
||||
}
|
||||
|
||||
.modal-footer .btn-primary:hover {
|
||||
background-color: #247496;
|
||||
border-color: #247496;
|
||||
}
|
||||
|
||||
button.state-button {
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .card {
|
||||
background-color: #222 !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .btn-outline-secondary {
|
||||
color: #fff !important;
|
||||
border-color: #fff !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .btn-outline-secondary:hover {
|
||||
color: #000 !important;
|
||||
background-color: #fff !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .modal-content {
|
||||
background-color: #222 !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .modal-content .bg-light {
|
||||
background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
|
||||
border-color: #111 !important;
|
||||
border: 1px solid #343636 !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .modal-body .nav-link span {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .nav-pills .nav-link.active {
|
||||
background-color: #535353 !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .modal-body .fa-circle-info,
|
||||
[data-theme="dark"] .modal-body .fa-circle-question {
|
||||
color: #1da1f2 !important;
|
||||
}
|
||||
32
ui/static/css/jquery.numberedtextarea.css
Normal file
32
ui/static/css/jquery.numberedtextarea.css
Normal file
@@ -0,0 +1,32 @@
|
||||
div.numberedtextarea-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
div.numberedtextarea-wrapper textarea {
|
||||
display: block;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
div.numberedtextarea-line-numbers {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 50px;
|
||||
border-right: 1px solid rgba(0, 0, 0, 0.5);
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div.numberedtextarea-number {
|
||||
padding-right: 6px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
[data-theme="dark"] div.numberedtextarea-line-numbers {
|
||||
border-right: 1px solid rgba(255, 255, 255, 0.5);
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
144
ui/static/css/loading.css
Normal file
144
ui/static/css/loading.css
Normal file
@@ -0,0 +1,144 @@
|
||||
body,
|
||||
html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #042a3a;
|
||||
}
|
||||
body {
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
|
||||
padding: 0;
|
||||
min-height: 100%;
|
||||
-webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
|
||||
box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
|
||||
display: table;
|
||||
font-family: "Open Sans", Arial, sans-serif;
|
||||
margin: 0;
|
||||
-ms-text-size-adjust: 100%;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
}
|
||||
h1 {
|
||||
font-family: inherit;
|
||||
font-weight: 500;
|
||||
line-height: 1.1;
|
||||
color: inherit;
|
||||
font-size: 36px;
|
||||
}
|
||||
h1 small {
|
||||
font-size: 68%;
|
||||
font-weight: 400;
|
||||
line-height: 1;
|
||||
color: #777;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
font-size: inherit;
|
||||
border-bottom: dotted 1px #979797;
|
||||
}
|
||||
.lead {
|
||||
color: silver;
|
||||
font-size: 21px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
.cover {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
padding: 0 20px;
|
||||
}
|
||||
img {
|
||||
width: 175px;
|
||||
}
|
||||
footer {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
color: #a0a0a0;
|
||||
font-size: 14px;
|
||||
}
|
||||
.lds-roller {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.lds-roller div {
|
||||
animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
|
||||
transform-origin: 40px 40px;
|
||||
}
|
||||
.lds-roller div:after {
|
||||
content: " ";
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
border-radius: 50%;
|
||||
background: #fff;
|
||||
margin: -4px 0 0 -4px;
|
||||
}
|
||||
.lds-roller div:nth-child(1) {
|
||||
animation-delay: -0.036s;
|
||||
}
|
||||
.lds-roller div:nth-child(1):after {
|
||||
top: 63px;
|
||||
left: 63px;
|
||||
}
|
||||
.lds-roller div:nth-child(2) {
|
||||
animation-delay: -0.072s;
|
||||
}
|
||||
.lds-roller div:nth-child(2):after {
|
||||
top: 68px;
|
||||
left: 56px;
|
||||
}
|
||||
.lds-roller div:nth-child(3) {
|
||||
animation-delay: -0.108s;
|
||||
}
|
||||
.lds-roller div:nth-child(3):after {
|
||||
top: 71px;
|
||||
left: 48px;
|
||||
}
|
||||
.lds-roller div:nth-child(4) {
|
||||
animation-delay: -0.144s;
|
||||
}
|
||||
.lds-roller div:nth-child(4):after {
|
||||
top: 72px;
|
||||
left: 40px;
|
||||
}
|
||||
.lds-roller div:nth-child(5) {
|
||||
animation-delay: -0.18s;
|
||||
}
|
||||
.lds-roller div:nth-child(5):after {
|
||||
top: 71px;
|
||||
left: 32px;
|
||||
}
|
||||
.lds-roller div:nth-child(6) {
|
||||
animation-delay: -0.216s;
|
||||
}
|
||||
.lds-roller div:nth-child(6):after {
|
||||
top: 68px;
|
||||
left: 24px;
|
||||
}
|
||||
.lds-roller div:nth-child(7) {
|
||||
animation-delay: -0.252s;
|
||||
}
|
||||
.lds-roller div:nth-child(7):after {
|
||||
top: 63px;
|
||||
left: 17px;
|
||||
}
|
||||
.lds-roller div:nth-child(8) {
|
||||
animation-delay: -0.288s;
|
||||
}
|
||||
.lds-roller div:nth-child(8):after {
|
||||
top: 56px;
|
||||
left: 12px;
|
||||
}
|
||||
@keyframes lds-roller {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
133
ui/static/css/login.css
Executable file
133
ui/static/css/login.css
Executable file
@@ -0,0 +1,133 @@
|
||||
body {
|
||||
font-family: "Karla", sans-serif;
|
||||
background-image: linear-gradient(#085577, #05364b);
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.brand-wrapper {
|
||||
padding-top: 7px;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
.brand-wrapper .logo {
|
||||
height: 8vh;
|
||||
}
|
||||
|
||||
.login-section-wrapper {
|
||||
display: -webkit-box;
|
||||
display: flex;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
flex-direction: column;
|
||||
padding: 68px 100px;
|
||||
background-color: #fff;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.login-section-wrapper {
|
||||
padding-left: 50px;
|
||||
padding-right: 50px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.login-section-wrapper {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
min-height: 100vh;
|
||||
}
|
||||
}
|
||||
|
||||
.login-wrapper {
|
||||
width: 300px;
|
||||
max-width: 100%;
|
||||
padding-top: 24px;
|
||||
padding-bottom: 24px;
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.login-wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.login-wrapper label {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color: #b0adad;
|
||||
}
|
||||
.login-wrapper .form-control {
|
||||
border: none;
|
||||
border-bottom: 1px solid #e7e7e7;
|
||||
border-radius: 0;
|
||||
padding: 9px 5px;
|
||||
min-height: 40px;
|
||||
font-size: 18px;
|
||||
font-weight: normal;
|
||||
}
|
||||
.login-wrapper .form-control::-webkit-input-placeholder {
|
||||
color: #b0adad;
|
||||
}
|
||||
.login-wrapper .form-control::-moz-placeholder {
|
||||
color: #b0adad;
|
||||
}
|
||||
.login-wrapper .form-control:-ms-input-placeholder {
|
||||
color: #b0adad;
|
||||
}
|
||||
.login-wrapper .form-control::-ms-input-placeholder {
|
||||
color: #b0adad;
|
||||
}
|
||||
.login-wrapper .form-control::placeholder {
|
||||
color: #b0adad;
|
||||
}
|
||||
.login-wrapper .login-btn {
|
||||
padding: 13px 20px;
|
||||
background-color: #085577;
|
||||
border-radius: 0;
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
.login-wrapper .login-btn:hover {
|
||||
border: 1px solid #085577;
|
||||
background-color: #fff;
|
||||
color: #085577;
|
||||
}
|
||||
.login-wrapper a.forgot-password-link {
|
||||
color: #080808;
|
||||
font-size: 14px;
|
||||
text-decoration: underline;
|
||||
display: inline-block;
|
||||
margin-bottom: 54px;
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.login-wrapper a.forgot-password-link {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
}
|
||||
.login-wrapper-footer-text {
|
||||
font-size: 16px;
|
||||
color: #000;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.login-title {
|
||||
font-size: 30px;
|
||||
color: #085577;
|
||||
font-weight: bold;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.login-img {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
-o-object-position: left;
|
||||
object-position: left;
|
||||
}
|
||||
|
||||
.login-logo {
|
||||
position: absolute;
|
||||
width: 20%;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 65%;
|
||||
margin: auto;
|
||||
}
|
||||
103
ui/static/css/logs.css
Normal file
103
ui/static/css/logs.css
Normal file
@@ -0,0 +1,103 @@
|
||||
.search-bar form {
|
||||
position: relative;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
background: white;
|
||||
box-sizing: border-box;
|
||||
border-radius: 25px;
|
||||
border: 4px solid white;
|
||||
padding: 5px;
|
||||
width: 75%;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.search-bar input {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 42.5px;
|
||||
line-height: 30px;
|
||||
outline: 0;
|
||||
border: 0;
|
||||
display: block;
|
||||
font-size: 1em;
|
||||
border-radius: 20px;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.search-bar svg:not(:host).svg-inline--fa,
|
||||
.search-bar svg:not(:root).svg-inline--fa {
|
||||
box-sizing: border-box !important;
|
||||
}
|
||||
|
||||
.search-bar .fa-magnifying-glass {
|
||||
padding: 10px;
|
||||
width: 42.5px;
|
||||
height: 42.5px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
border-radius: 50%;
|
||||
color: #07051a;
|
||||
text-align: center;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
.search-bar form .fa-magnifying-glass {
|
||||
background: #07051a;
|
||||
color: white;
|
||||
}
|
||||
|
||||
#date-clear {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.widget {
|
||||
padding: 18px;
|
||||
background-color: #fff;
|
||||
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
|
||||
}
|
||||
|
||||
.rotate {
|
||||
animation: rotation 2s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes rotation {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
.container .nav {
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .widget {
|
||||
background: #1d1d1d;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .nav .nav-link.active {
|
||||
background-color: #535353 !important;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .list-group .list-group-item {
|
||||
background-color: #1d1d1d;
|
||||
color: #fff;
|
||||
border-color: #7e7e7e;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 767px) {
|
||||
.search-bar form {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
274
ui/static/css/navbar.css
Normal file
274
ui/static/css/navbar.css
Normal file
@@ -0,0 +1,274 @@
|
||||
/* #Navigation
|
||||
================================================== */
|
||||
|
||||
body[data-theme="dark"] {
|
||||
color: #fff;
|
||||
background-color: #1f2029 !important;
|
||||
}
|
||||
|
||||
.start-body {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
padding: 20px 0;
|
||||
box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
|
||||
-webkit-transition: all 0.3s ease-out;
|
||||
transition: all 0.3s ease-out;
|
||||
}
|
||||
.start-body.scroll-on {
|
||||
box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
|
||||
padding: 10px 0;
|
||||
-webkit-transition: all 0.3s ease-out;
|
||||
transition: all 0.3s ease-out;
|
||||
}
|
||||
.start-body.scroll-on .navbar-brand img {
|
||||
height: 32px;
|
||||
-webkit-transition: all 0.3s ease-out;
|
||||
transition: all 0.3s ease-out;
|
||||
}
|
||||
.navigation-wrap {
|
||||
width: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 1000;
|
||||
-webkit-transition: all 0.3s ease-out;
|
||||
transition: all 0.3s ease-out;
|
||||
}
|
||||
.navbar {
|
||||
padding: 0;
|
||||
}
|
||||
.navbar-brand img {
|
||||
height: 32px;
|
||||
width: auto;
|
||||
display: block;
|
||||
-webkit-transition: all 0.3s ease-out;
|
||||
transition: all 0.3s ease-out;
|
||||
}
|
||||
.navbar-toggler {
|
||||
float: right;
|
||||
border: none;
|
||||
padding-right: 0;
|
||||
}
|
||||
.navbar-toggler:active,
|
||||
.navbar-toggler:focus {
|
||||
outline: none;
|
||||
}
|
||||
.navbar-light .navbar-toggler-icon {
|
||||
width: 24px;
|
||||
height: 17px;
|
||||
background-image: none;
|
||||
position: relative;
|
||||
border-bottom: 1px solid #fff;
|
||||
transition: all 300ms linear;
|
||||
}
|
||||
.navbar-light .navbar-toggler-icon:after,
|
||||
.navbar-light .navbar-toggler-icon:before {
|
||||
width: 24px;
|
||||
position: absolute;
|
||||
height: 1px;
|
||||
background-color: #fff;
|
||||
top: 0;
|
||||
left: 0;
|
||||
content: "";
|
||||
z-index: 2;
|
||||
transition: all 300ms linear;
|
||||
}
|
||||
.navbar-light .navbar-toggler-icon:after {
|
||||
top: 8px;
|
||||
}
|
||||
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
|
||||
transform: translateY(8px) rotate(-45deg);
|
||||
}
|
||||
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
|
||||
border-color: transparent;
|
||||
}
|
||||
.navbar .nav-link {
|
||||
color: #fff !important;
|
||||
font-weight: 500;
|
||||
transition: all 200ms linear;
|
||||
}
|
||||
.navbar .nav-item:hover .nav-link,
|
||||
.navbar .nav-item.active .nav-link {
|
||||
color: #40bb6b !important;
|
||||
}
|
||||
.navbar .nav-link {
|
||||
position: relative;
|
||||
padding: 5px 0 !important;
|
||||
display: inline-block;
|
||||
}
|
||||
.navbar .nav-item:after {
|
||||
position: absolute;
|
||||
bottom: -5px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
content: "";
|
||||
background-color: #40bb6b;
|
||||
opacity: 0;
|
||||
transition: all 200ms linear;
|
||||
}
|
||||
.navbar .nav-item:hover:after,
|
||||
.navbar .nav-item.active:after {
|
||||
bottom: 4px;
|
||||
opacity: 1;
|
||||
}
|
||||
.navbar .nav-item {
|
||||
position: relative;
|
||||
transition: all 200ms linear;
|
||||
}
|
||||
|
||||
/* #Primary style
|
||||
================================================== */
|
||||
|
||||
.bg-custom {
|
||||
background-color: #085577 !important;
|
||||
transition: all 200ms linear;
|
||||
}
|
||||
.section {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
.full-height {
|
||||
height: 100vh;
|
||||
}
|
||||
.over-hide {
|
||||
overflow: hidden;
|
||||
}
|
||||
.absolute-center {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
margin-top: 40px;
|
||||
transform: translateY(-50%);
|
||||
z-index: 20;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .bg-custom {
|
||||
background-color: #05364b !important;
|
||||
}
|
||||
[data-theme="dark"] .start-body {
|
||||
box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
[data-theme="dark"] .start-body.scroll-on {
|
||||
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
[data-theme="dark"] .dropdown-menu {
|
||||
color: #fff;
|
||||
background-color: #1f2029;
|
||||
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
[data-theme="dark"] .dropdown-item {
|
||||
color: #fff;
|
||||
}
|
||||
[data-theme="dark"] .navbar-light .navbar-toggler-icon {
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
[data-theme="dark"] .navbar-light .navbar-toggler-icon:after,
|
||||
[data-theme="dark"] .navbar-light .navbar-toggler-icon:before {
|
||||
background-color: #fff;
|
||||
}
|
||||
[data-theme="dark"] .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
/* #Media
|
||||
================================================== */
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.navbar .nav-item:after {
|
||||
display: none;
|
||||
}
|
||||
.navbar .nav-item::before {
|
||||
position: absolute;
|
||||
display: block;
|
||||
top: 17px;
|
||||
left: -15px;
|
||||
width: 11px;
|
||||
height: 1px;
|
||||
content: "";
|
||||
border: none;
|
||||
background-color: #fff;
|
||||
vertical-align: 0;
|
||||
}
|
||||
.dropdown-toggle::after {
|
||||
position: absolute;
|
||||
display: block;
|
||||
top: 10px;
|
||||
left: -23px;
|
||||
width: 1px;
|
||||
height: 11px;
|
||||
content: "";
|
||||
border: none;
|
||||
background-color: #000;
|
||||
vertical-align: 0;
|
||||
transition: all 200ms linear;
|
||||
}
|
||||
.dropdown-toggle[aria-expanded="true"]::after {
|
||||
transform: rotate(90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
[data-theme="dark"] .navbar .nav-item::before {
|
||||
background-color: #fff;
|
||||
}
|
||||
[data-theme="dark"] .dropdown-toggle::after {
|
||||
background-color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.navbar-nav {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
/* #Link to page
|
||||
================================================== */
|
||||
|
||||
.logo {
|
||||
position: absolute;
|
||||
bottom: 30px;
|
||||
right: 30px;
|
||||
display: block;
|
||||
z-index: 100;
|
||||
transition: all 250ms linear;
|
||||
}
|
||||
.logo img {
|
||||
height: 26px;
|
||||
width: auto;
|
||||
display: block;
|
||||
filter: brightness(10%);
|
||||
transition: all 250ms linear;
|
||||
}
|
||||
[data-theme="dark"] .logo img {
|
||||
filter: brightness(100%);
|
||||
}
|
||||
|
||||
.navbar-collapse .nav-item {
|
||||
margin-left: 2.3rem;
|
||||
}
|
||||
|
||||
.navbar-collapse .nav-item-switch {
|
||||
margin-left: 4rem;
|
||||
}
|
||||
|
||||
.nav-switch {
|
||||
color: #fff !important;
|
||||
font-weight: 500;
|
||||
transition: all 200ms linear;
|
||||
}
|
||||
|
||||
.nav-switch {
|
||||
position: relative;
|
||||
padding: 5px 0 !important;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .nav-switch {
|
||||
color: #fff !important;
|
||||
}
|
||||
Reference in New Issue
Block a user