3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Panel/public/assets/css/style.css

691 lines
13 KiB
CSS
Raw Normal View History

2021-06-29 20:05:00 +00:00
@import "root.css";
2020-02-26 13:59:58 +00:00
html, body {
width: 100%;
min-height: 100%;
margin: 0;
padding: 0;
2021-06-29 20:05:00 +00:00
background: var(--bg) no-repeat center center fixed;
2020-02-26 13:59:58 +00:00
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
font-family: sans-serif;
}
.login-page {
background-size: cover;
display: flex;
height: 100vh;
width: 100vw;
overflow: hidden;
background: var(--banner) no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
flex-direction: column;
2021-06-29 20:05:00 +00:00
}
.login-text {
width: 100%;
height: available;
min-height: 50%;
display: flex;
align-items: center;
justify-content: center;
2021-06-29 20:05:00 +00:00
z-index: 1;
flex: 1;
2021-06-29 20:05:00 +00:00
}
.login-body {
float: right;
width: 100%;
height: fit-content;
display: flex;
align-items: center;
justify-content: center;
border-top-left-radius: 2.5rem;
border-top-right-radius: 2.5rem;
--tw-bg-opacity: 1;
background-color: #fff;
padding: 3rem 1.5rem 4rem;
overflow: hidden;
z-index: 1;
2021-06-29 20:05:00 +00:00
}
@media (min-width: 768px) {
.login-page {
flex-direction: row;
}
2020-02-26 13:59:58 +00:00
.login-text {
width: 65%;
}
2020-02-26 13:59:58 +00:00
.login-body {
position: relative;
height: 100%;
width: 35%;
border-top-right-radius: 0;
border-bottom-left-radius: 2.5rem;
padding: 1rem;
}
2020-02-26 13:59:58 +00:00
}
@media (min-width: 1024px) {
.login-body > div:not(.login-footer) {
width: 60%
}
2020-02-26 13:59:58 +00:00
}
.login-footer {
position: absolute;
bottom: 0;
2021-06-29 20:05:00 +00:00
width: 100%;
text-align: center;
padding: 10px;
text-decoration: none;
z-index: 1;
2020-02-26 13:59:58 +00:00
}
.login-footer span {
font-weight: 600;
2020-02-26 13:59:58 +00:00
}
.login-footer span a img {
height: 20px !important;
2020-02-26 13:59:58 +00:00
}
.form-input {
border-radius: 0.35rem;
margin-bottom: 1rem;
width: 100%;
border: 0 solid #9ca3af;
border-bottom-width: 2px;
background-color: #f9fafb;
padding: 0.5rem;
color: #333;
2020-02-26 13:59:58 +00:00
}
form a {
2021-06-29 20:05:00 +00:00
color: var(--color-light);
2020-02-26 13:59:58 +00:00
}
form a:hover {
color: var(--color-dark);
text-decoration: underline;
2020-02-26 13:59:58 +00:00
}
::-webkit-scrollbar {
width: 0;
background: transparent !important;
}
2021-06-29 20:05:00 +00:00
.banner {
width: 100%;
background: var(--banner) no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
overflow: hidden;
position: relative;
height: 150px;
}
.login-page:after,
2021-06-29 20:05:00 +00:00
.banner:after {
content: '\A';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0,0,0,0.3);
}
.banner > div {
position: absolute;
padding: 45px;
text-align: center;
width: 100%;
height: 100%;
z-index: 1;
inset: 0;
}
2020-02-26 13:59:58 +00:00
.wrapper {
padding: 15px;
width: 100% !important;
margin-bottom: 40px !important;
}
.footer {
margin-bottom: 0;
2021-06-29 20:05:00 +00:00
background-color: #fff;
position: fixed;
2020-02-26 13:59:58 +00:00
bottom: 0;
text-align: center;
padding: 10px;
width: 100%;
text-decoration: none;
}
.footer span {
font-weight: 600;
}
.footer span a img {
height: 20px !important;
}
.alert {
2021-06-29 20:05:00 +00:00
color: var(--color-text); !important;
2020-02-26 13:59:58 +00:00
}
.alert-success {
background-color: #2ecc71 !important;
border: none !important;
}
.alert-danger {
background-color: #e74c3c !important;
border: none !important;
}
.panel-theme {
2021-06-29 20:05:00 +00:00
border-color: var(--color-dark);
border-radius: 5px;
overflow: hidden;
2020-02-26 13:59:58 +00:00
}
.panel-theme>.panel-heading {
2021-06-29 20:05:00 +00:00
color: var(--color-text); !important;
background-color: var(--color-light) !important;
border-color: var(--color-dark) !important;
2020-02-26 13:59:58 +00:00
}
.panel-theme>.panel-heading+.panel-collapse>.panel-body {
2021-06-29 20:05:00 +00:00
border-top-color: var(--color-dark) !important;
2020-02-26 13:59:58 +00:00
}
.panel-theme>.panel-footer+.panel-collapse>.panel-body {
2021-06-29 20:05:00 +00:00
border-bottom-color: var(--color-dark) !important;
2020-02-26 13:59:58 +00:00
}
.navbar.navbar-theme {
2021-06-29 20:05:00 +00:00
background-color: var(--color-light);
2020-02-26 13:59:58 +00:00
border-color: transparent;
2021-06-29 20:05:00 +00:00
margin-bottom: 5px;
2020-02-26 13:59:58 +00:00
}
.navbar.navbar-theme .navbar-brand {
2021-06-29 20:05:00 +00:00
color: var(--color-text);
2020-02-26 13:59:58 +00:00
}
.navbar.navbar-theme .navbar-brand:hover,
.navbar.navbar-theme .navbar-brand:focus {
2021-06-29 20:05:00 +00:00
color: var(--color-text);
2020-02-26 13:59:58 +00:00
}
.navbar.navbar-theme .navbar-nav > li > a {
2021-06-29 20:05:00 +00:00
color: var(--color-text);
2020-02-26 13:59:58 +00:00
background-color: transparent;
}
.navbar.navbar-theme .navbar-nav > li > a:hover,
.navbar.navbar-theme .navbar-nav > li > a:focus {
2021-06-29 20:05:00 +00:00
color: var(--color-text);
background-color: var(--color-dark);
2020-02-26 13:59:58 +00:00
}
.navbar.navbar-theme .navbar-nav > .active > a,
.navbar.navbar-theme .navbar-nav > .active > a:hover,
.navbar.navbar-theme .navbar-nav > .active > a:focus {
2021-06-29 20:05:00 +00:00
color: var(--color-text);
background-color: var(--color-dark);
2020-02-26 13:59:58 +00:00
}
.navbar.navbar-theme .navbar-nav > .open > a,
.navbar.navbar-theme .navbar-nav > .open > a:hover,
.navbar.navbar-theme .navbar-nav > .open > a:focus {
2021-06-29 20:05:00 +00:00
color: var(--color-text);
background-color: var(--color-dark);
2020-02-26 13:59:58 +00:00
}
.navbar.navbar-theme .navbar-toggle {
2021-06-29 20:05:00 +00:00
border-color: var(--color-text);
color: var(--color-light);
2020-02-26 13:59:58 +00:00
}
.navbar.navbar-theme .navbar-toggle:hover,
.navbar.navbar-theme .navbar-toggle:focus {
2021-06-29 20:05:00 +00:00
border-color: var(--color-text);
color: var(--color-dark);
2020-02-26 13:59:58 +00:00
}
.navbar.navbar-theme .navbar-toggle .icon-bar {
2021-06-29 20:05:00 +00:00
background-color: var(--color-text);
color: var(--color-dark);
2020-02-26 13:59:58 +00:00
}
.navbar.navbar-theme .navbar-link {
2021-06-29 20:05:00 +00:00
color: var(--color-text);
background-color: var(--color-dark);
2020-02-26 13:59:58 +00:00
}
.navbar.navbar-theme .navbar-link:hover {
2021-06-29 20:05:00 +00:00
color: var(--color-text);
background-color: var(--color-dark);
2020-02-26 13:59:58 +00:00
}
.navbar.navbar-theme .dropdown-menu {
2021-06-29 20:05:00 +00:00
background-color: var(--color-light);
border-color: var(--color-dark);
2020-02-26 13:59:58 +00:00
margin: 0 !important;
padding: 0 !important;
}
.navbar.navbar-theme .dropdown-menu li {
margin: 0 !important;
padding: 0 !important;
}
.navbar.navbar-theme .dropdown-menu a {
2021-06-29 20:05:00 +00:00
color: var(--color-text);
2020-02-26 13:59:58 +00:00
padding: 7px !important;
}
.navbar.navbar-theme .dropdown-menu a:focus,
.navbar.navbar-theme .dropdown-menu a:hover {
2021-06-29 20:05:00 +00:00
color: var(--color-text);
background-color: var(--color-dark);
2020-02-26 13:59:58 +00:00
}
.dropdown-menu .divider {
2021-06-29 20:05:00 +00:00
background-color: var(--color-dark) !important;
2020-02-26 13:59:58 +00:00
}
.dropdown-menu .active a {
2021-06-29 20:05:00 +00:00
background-color: var(--color-dark) !important;
2020-02-26 13:59:58 +00:00
}
.news .panel-body .container-fluid {
word-wrap: break-word !important;
overflow: hidden !important;
margin: 0;
padding: 0;
width: 100% !important;
height: auto !important;
}
.checkbox {
margin-top: -10px;
}
.checkbox input[type="checkbox"] {
opacity: 0;
}
.checkbox label {
position: relative;
display: inline-block;
padding-left: 22px;
}
.checkbox label::before,
.checkbox label::after {
position: absolute;
content: "";
display: inline-block;
}
.checkbox label::before{
height: 16px;
width: 16px;
border: 1px solid;
left: 0px;
top: 3px;
}
.checkbox label::after {
height: 5px;
width: 9px;
border-left: 2px solid;
border-bottom: 2px solid;
transform: rotate(-45deg);
left: 4px;
top: 7px;
}
.checkbox input[type="checkbox"] + label::after {
content: none;
}
.checkbox input[type="checkbox"]:checked + label::after {
content: "";
}
.custom-select {
position: relative;
}
.custom-select select {
display: none;
}
.select-selected {
2021-06-29 20:05:00 +00:00
background-color: var(--color-light);
2020-02-26 13:59:58 +00:00
}
.select-selected:after {
position: absolute;
content: "";
top: 14px;
right: 10px;
width: 0;
height: 0;
2021-06-29 20:05:00 +00:00
border: 6px solid;
border-color: var(--color-text) transparent transparent transparent;
2020-02-26 13:59:58 +00:00
}
.select-selected.select-arrow-active:after {
2021-06-29 20:05:00 +00:00
border-color: transparent transparent var(--color-text) transparent;
2020-02-26 13:59:58 +00:00
top: 7px;
}
.select-items div,.select-selected {
2021-06-29 20:05:00 +00:00
color: var(--color-text);
2020-02-26 13:59:58 +00:00
padding: 8px 16px;
2021-06-29 20:05:00 +00:00
border: 1px solid;
border-color: transparent transparent var(--color-dark) transparent;
2020-02-26 13:59:58 +00:00
cursor: pointer;
user-select: none;
}
.select-items {
position: absolute;
2021-06-29 20:05:00 +00:00
background-color: var(--color-light);
2020-02-26 13:59:58 +00:00
top: 100%;
left: 0;
right: 0;
z-index: 99;
}
.select-hide {
display: none;
}
.select-items div:hover, .same-as-selected {
2021-06-29 20:05:00 +00:00
background-color: var(--color-dark);
2020-02-26 13:59:58 +00:00
}
.btn-custom {
outline: 0;
2021-06-29 20:05:00 +00:00
background: var(--color-light);
2020-02-26 13:59:58 +00:00
width: 180px;
border: 0;
padding: 5px;
2021-06-29 20:05:00 +00:00
color: var(--color-text);
2020-02-26 13:59:58 +00:00
font-size: 17px;
cursor: pointer;
border-radius: 3px;
}
.btn-custom:hover,.btn-custom:active,.btn-custom:focus {
2021-06-29 20:05:00 +00:00
background: var(--color-dark);
color: var(--color-text);
2020-02-26 13:59:58 +00:00
}
.controls {
padding: 0 !important;
margin: 0 !important;
}
.controls img {
width: 70% !important;
height: auto !important;
}
.controls.disabled {
filter: grayscale(100%) !important;
}
code {
background-color: #eef1f6;
color: #596981;
border-radius: 3px;
padding: 3px;
line-height: 1.4;
font-size: 85%;
border: 1px solid rgba(0, 0, 0, .1);
display: block;
width: 335px;
text-align: right;
margin: 0;
}
code i {
float: left;
margin: 3px;
}
.pagination li.active a {
2021-06-29 20:05:00 +00:00
background-color: var(--color-light);
border-color: transparent;
}
2021-06-29 20:05:00 +00:00
.actionfoto {
width: calc(100% - 4px) !important;
height: auto;
border: 2px solid #fff;
border-radius: 5px;
}
2021-06-29 20:05:00 +00:00
/* Status Card */
.status-card-row {
margin-right: -15px;
margin-left: -15px;
}
.status-card {
margin: 10px 0 0;
float: left;
display: inline-block;
box-sizing: border-box;
border: 0;
border-radius: 15px;
color: rgba(0, 0, 0, 0.87);
width: 100%;
box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
background: #fff center center;
background-size: cover;
text-align: center;
2021-06-29 20:05:00 +00:00
position: relative;
font-size: .775rem;
text-decoration: none !important;
overflow: hidden;
}
2021-06-29 20:05:00 +00:00
.status-card:after {
content: '\A';
position: absolute;
width: 100%;
height:100%;
top: 0;
left: 0;
background: rgba(0,0,0,0.4);
2021-06-29 20:05:00 +00:00
}
.status-card > .card-body {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
padding: 6.25rem 0;
-webkit-box-flex: 1;
z-index: 1;
}
.status-card .badge {
margin-top: 15px !important;
}
.badge {
display: inline-table;
margin: 0 auto;
border-radius: 5px;
2021-06-29 20:05:00 +00:00
padding: 10px 15px;
text-transform: uppercase;
font-size: 15px;
color: #fff;
font-weight: 500;
line-height: 1;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
}
.status-card > .card-body > .card-title {
color: #fff;
}
/* Region */
.region {
width: 100%;
display: inline-block;
position: relative;
padding-top: 65px;
}
.region:not(:first-child) {
margin-top: 15px;
}
.region > .region-title {
width: auto;
height: 0;
border-bottom: 25px solid var(--color-light);
border-top: 25px solid var(--color-light);
border-right: 15px solid transparent;
float: left;
padding-right: 20px;
font-size: 20px;
position: absolute;
left: 0;
top: 0;
border-radius: 10px 0 0 10px;
}
.region-title > span {
color: #fff;
position: relative;
top: -15px;
text-align: center;
left: 10px;
}
/* Show Card */
@media (min-width: 768px) {
.card-container {
display: flex;
justify-items: stretch;
flex-wrap: wrap;
2021-06-29 20:05:00 +00:00
}
}
.card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border-radius: 10px;
overflow: hidden;
margin-bottom: 15px;
}
.card .card-cover {
width: 100%;
display: block;
}
.card .card-body {
flex: 1 1 auto;
padding: 0 1.25rem 0.25rem;
}
.card .card-footer {
display: block;
padding: 0 1rem 1rem;
margin: 0;
}
.card .card-title {
font-weight: bolder;
margin-bottom: .75rem;
}
/* Operator Page */
.operator-item {
padding: 25px 25px 65px;
border-radius: 15px;
background-color: #fff;
text-align: center;
position: relative;
width: 100%;
transition: box-shadow 0.15s;
margin-bottom: 25px;
}
.operator-item-glow {
box-shadow: 0 0 10px 2px rgba(241,212,37,0.7);
}
.operator-item .operator-item-cover {
width: 80%;
max-width: 180px;
height: auto;
margin-bottom: 15px;
}
.operator-item .operator-badge {
display: block;
padding: 10px 35px;
border-radius: 5px;
background-color: #666;
color: #fff;
width: fit-content;
position: absolute;
bottom: 25px;
left: 50%;
transform: translate(-50%, 0);
cursor: pointer;
}
@media (max-width: 768px) {
.notifications-container {
max-width: unset;
width: 90%;
}
.notify-is-right .notify {
right: 5%;
}
}
.notifications-container {
max-width: 380px;
}
.notify__title {
font-size: 1.5rem;
}
.notify__text {
font-size: 1.25rem;
}