You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

220 lines
4.8 KiB

/* dP dP dP */
/* 88 88 88 */
/* d8888P 88d888b. .d8888b. 88d8b.d8b. .d8888b. 88d888b. .d8888b. 88d888b. 88 .dP */
/* 88 88' `88 88ooood8 88'`88'`88 88ooood8 88' `88 88' `88 88' `88 88888" */
/* 88 88 88 88. ... 88 88 88 88. ... 88. .88 88. .88 88 88 `8b. */
/* dP dP dP `88888P' dP dP dP `88888P' 88 88Y888P' `88888P8 dP dP `YP */
/* 88 */
/* dP */
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
4 years ago
* {
outline: none;
}
4 years ago
body {
background-repeat: repeat;
4 years ago
background: var(--main-bg-color) !important;
color: #FFF;
}
4 years ago
/* Scrollbar */
@media only screen and (min-width: 768px) {
html {
height: 100%;
width: 100%;
overflow: hidden;
}
4 years ago
body {
overflow-y: auto;
height: 100%;
background: var(--main-bg-color)
}
}
4 years ago
::-webkit-scrollbar {
width: 14px;
}
::-webkit-scrollbar-thumb {
min-height: 50px;
border: 3px solid transparent;
border-radius: 8px;
background-color: hsla(0, 0%, 100%, .2);
background-clip: padding-box;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb:hover {
min-height: 50px;
border: 3px solid transparent;
border-radius: 8px;
background-color: hsla(0, 0%, 100%, .5);
background-clip: padding-box;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
color: #fff;
}
4 years ago
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
color: #fff !important;
}
4 years ago
a {
color: #ffffff;
}
4 years ago
a:focus,
a:hover {
color: #f1f1f1;
}
4 years ago
.dataTables_wrapper .dataTables_filter input {
background: rgba(255, 255, 255, 0.08);
border: none;
outline: none;
4 years ago
color: #fff;
}
4 years ago
table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
border-top: none;
}
4 years ago
table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
border-left: none;
}
4 years ago
table.dataTable.cell-border tbody th,
table.dataTable.cell-border tbody td {
border-top: 1px solid #ddd0;
border-right: 1px solid #0000;
}
4 years ago
button,
input,
select,
textarea {
background: rgba(0, 0, 0, 0.25);
border: none;
4 years ago
outline: none;
}
4 years ago
#page {
background-color: rgba(0, 0, 0, 0.25);
}
4 years ago
table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
background-color: transparent;
}
4 years ago
table.dataTable.hover tbody tr:hover,
table.dataTable.display tbody tr:hover {
background-color: rgba(255, 255, 255, 0.08);
}
4 years ago
table.dataTable tbody tr {
background-color: transparent;
}
4 years ago
table.dataTable tfoot th,
table.dataTable tfoot td {
border-top: 1px solid #0000;
}
4 years ago
table.dataTable thead th,
table.dataTable thead td {
border-bottom: 1px solid #0000;
}
4 years ago
.form-control {
color: #fff;
background-color: rgba(0, 0, 0, 0.25);
border: 1px solid #ccc0;
}
4 years ago
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: rgba(0, 0, 0, 0.25);
}
4 years ago
.dataTables_length select,
.dataTables_filter input,
.dataTable.compact tfoot td select {
color: black;
}
4 years ago
#footer {
color: #ffffff;
}
4 years ago
.modal-content {
background: var(--modal-bg-color);
}
4 years ago
.dropdown-menu {
background: var(--modal-bg-color);
}
4 years ago
.dropdown-menu>li>a {
color: #fff;
}
4 years ago
.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
color: #ffffff;
background-color: rgba(255, 255, 255, 0.08);
}
4 years ago
.close {
color: #fff;
}
4 years ago
.btn-default {
color: #fff;
background-color: var(--button-color);
border-color: #ccc0;
}
4 years ago
.btn-default.active,
.btn-default.focus,
.btn-default:active,
.btn-default:focus,
.btn-default:hover,
.open>.dropdown-toggle.btn-default {
color: #fff;
background-color: var(--button-color-hover);
border-color: #00000000;
}
4 years ago
.input-group-addon {
color: #fff;
background-color: rgba(0, 0, 0, 0.25);
border: 1px solid #0000;
}
4 years ago
.alert-info {
color: #ffffff;
5 years ago
background-color: var(--modal-bg-color);
border-color: transparent;
}