1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-10-11 15:37:12 +02:00
theme.park/CSS/themes/nzbget/nzbget-base.css

547 lines
12 KiB
CSS
Raw Normal View History

2019-07-14 14:26:11 +02:00
/* 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 */
body {
2021-07-25 13:43:36 +02:00
background: var(--main-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
background-color: rgba(0, 0, 0, .0);
color: #FFFFFF !important;
2019-07-14 14:26:11 +02:00
}
/* scroller */
::-webkit-scrollbar-corner {
2021-07-25 13:43:36 +02:00
background-color: rgba(0, 0, 0, .25);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
::-webkit-scrollbar {
width: 10px;
height: 10px;
background: #0c1218;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
::-webkit-scrollbar-thumb {
-webkit-border-radius: 2px;
border-radius: 2px;
2021-07-25 13:43:36 +02:00
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.modal {
2021-07-25 13:43:36 +02:00
background: var(--modal-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
color: #FFFFFF !important;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.modal-footer {
background-color: transparent;
border-top: none;
}
/* TABLES */
.table a {
color: #ffffff;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.table a:hover {
color: #e5a00d;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.table-striped tbody tr:nth-child(odd) {
background-color: rgba(0, 0, 0, 0.25);
}
2021-07-25 13:43:36 +02:00
.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
2019-07-14 14:26:11 +02:00
background-color: transparent;
}
2021-07-25 13:43:36 +02:00
2020-01-08 18:50:46 +01:00
.table-striped tbody tr:nth-child(even) {
background-color: rgba(0, 0, 0, 0.08);
}
2021-07-25 13:43:36 +02:00
.table tbody tr:hover,
.table tbody tr:hover td,
.table tbody tr:hover a {
2019-07-14 14:26:11 +02:00
color: white;
2021-07-25 13:43:36 +02:00
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.table-striped tbody tr.checked:nth-child(2n+1) td,
.checked .progress {
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
tr.checked,
tr.checked td,
tr.checked:nth-child(odd) .progress {
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.table tbody tr.checked:hover,
.table tbody tr.checked:hover td {
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.table tbody tr.checked:hover,
.table tbody tr.checked:hover td {
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.table.check-simple tbody tr.checked:hover,
.table.check-simple tbody tr.checked:hover td {
background-color: hsla(0, 0%, 100%, .08);
2020-01-08 18:46:13 +01:00
}
2021-07-25 13:43:36 +02:00
.table th,
.table td {
2019-07-14 14:26:11 +02:00
border-top: none;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.table-bordered {
border-left: none;
2021-07-25 13:43:36 +02:00
border: none;
2019-07-14 14:26:11 +02:00
}
.pagination a {
border: none;
background: rgba(0, 0, 0, .25);
}
2021-07-25 13:43:36 +02:00
.pagination a:hover,
.pagination .active a {
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.pagination .active a {
color: #ffffff;
}
/* PROGRESS BAR */
.progress {
2021-07-25 13:43:36 +02:00
background: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.progress-warning.progress-striped .bar {
background-color: #cc7b19;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.progress-success.progress-striped .bar {
background-color: #51a351;
}
/* NAVBAR */
.navbar-fixed-top .navbar-inner {
color: #fff !important;
}
2021-07-25 13:43:36 +02:00
.navbar-inner {
background-image: none;
background-color: transparent;
2019-07-14 15:33:48 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 15:33:48 +02:00
.navbar-container {
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
2021-07-25 13:43:36 +02:00
-o-background-size: auto, cover;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.navbar .nav>li>a:hover {
2019-07-14 15:33:48 +02:00
color: var(--accent-color);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.navbar .nav .active>a,
.navbar .nav .active>a:hover {
background: hsla(0, 0%, 100%, .08);
2019-07-14 15:33:48 +02:00
color: var(--accent-color);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
[class^="icon-"],
[class*=" icon-"],
[class^="img-"],
[class*=" img-"] {
2019-07-14 14:26:11 +02:00
background-image: url(https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/nzbget/icons.png);
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.navbar-search .search-query {
color: #ffffff;
2019-07-14 15:33:48 +02:00
background-color: rgba(0, 0, 0, 0.25) !important;
2019-07-14 14:26:11 +02:00
border: 0px solid #151515;
}
2021-07-25 13:43:36 +02:00
.navbar-search .search-query:focus,
.navbar-search .search-query.focused {
2019-07-14 15:33:48 +02:00
color: #000 !important;
2019-07-14 14:26:11 +02:00
text-shadow: none;
background-color: white !important;
}
2021-07-25 13:43:36 +02:00
2019-07-14 15:33:48 +02:00
.search-caret-button {
outline: none;
}
2021-07-25 13:43:36 +02:00
2019-07-14 15:33:48 +02:00
.menu-header {
color: #ffffff;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.dropdown-menu {
background-color: #191a1c;
2021-07-25 13:43:36 +02:00
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
2021-07-25 13:43:36 +02:00
-o-background-size: auto, cover;
color: #FFF;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.dropdown-menu a {
color: #ffffff;
}
2021-07-25 13:43:36 +02:00
.dropdown-menu li>a:hover,
.dropdown-menu .active>a,
.dropdown-menu .active>a:hover {
2019-07-14 14:26:11 +02:00
color: #ffffff;
2021-07-25 13:43:36 +02:00
background-color: hsla(0, 0%, 100%, .05);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.dropdown-menu .divider {
height: 0px;
border-bottom: none;
}
/* BUTTONS */
2021-07-25 13:43:36 +02:00
.btn-group>.dropdown-toggle {
box-shadow: none;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.config-header .btn {
background: #FFF;
color: #adb1b1;
text-shadow: unset;
}
2019-07-14 14:26:11 +02:00
2021-07-25 13:43:36 +02:00
#ConfigData>div>button.btn {
background: rgba(0, 0, 0, .25) !important;
color: #FFF !important;
font-weight: bold;
text-shadow: unset;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
#ConfigData>div>button.btn:hover {
background: hsla(0, 0%, 100%, .08) !important;
color: #FFF !important;
font-weight: bold;
text-shadow: unset;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
#ConfigData>div>div>table>tbody>tr>td>.btn {
background: #414141;
color: #adb1b1;
text-shadow: unset;
font-weight: bold;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
#Config_Save:hover {
background-color: #51a351;
color: #FFF;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
#Config_Save {
2021-07-25 13:43:36 +02:00
background: rgba(0, 0, 0, 0.25);
color: #FFF;
margin: auto;
}
#ConfigData>div>div>button.btn.btn-danger {
background: #ad292c;
text-shadow: unset;
}
#ConfigData>div>div>button.btn.btn-danger:hover {
background: #d33a3e;
text-shadow: unset;
}
#ConfigData>div:nth-child(3)>div>button,
#ConfigData>div:nth-child(4)>div>button,
#ConfigData>div:nth-child(5)>div>button {
text-shadow: unset;
background: rgba(0, 0, 0, 0.25);
color: white;
}
#ConfigData>div:nth-child(3)>div>button:hover,
#ConfigData>div:nth-child(4)>div>button:hover,
#ConfigData>div:nth-child(5)>div>button:hover {
text-shadow: unset;
background: hsla(0, 0%, 100%, .08);
color: white;
}
#ConfigData input.btn.btn-primary {
background: var(--button-color) !important;
text-shadow: unset;
color: white;
}
#ConfigData input.btn {
background: rgba(0, 0, 0, 0.25) !important;
text-shadow: unset;
color: #a8a8a8;
}
#Config_ViewButton {
background: rgba(0, 0, 0, 0.25);
color: #FFF;
}
#Config_ViewButton:hover {
background: hsla(0, 0%, 100%, .08);
color: #FFF;
}
#DownloadsEditDialog input.btn.btn-primary {
2019-12-01 19:53:28 +01:00
background: var(--button-color) !important;
2021-07-25 13:43:36 +02:00
text-shadow: unset;
color: white;
2019-12-01 19:53:28 +01:00
}
2021-07-25 13:43:36 +02:00
#HistoryEdit_ParamData input.btn.btn-primary {
background: var(--button-color) !important;
2021-07-25 13:43:36 +02:00
text-shadow: unset;
color: white;
}
2019-07-14 14:26:11 +02:00
2021-07-25 13:43:36 +02:00
.btn {
2019-07-14 14:26:11 +02:00
color: #ffffff;
text-shadow: none;
2021-07-25 13:43:36 +02:00
background-color: rgba(0, 0, 0, 0.25);
2019-07-14 14:26:11 +02:00
background-image: none;
border-color: transparent;
border-bottom-color: transparent;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.btn:hover {
color: #FFF;
2021-07-25 13:43:36 +02:00
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
.config-header .btn {
background-color: rgba(0, 0, 0, 0.25);
}
.btn-group.open .btn.dropdown-toggle {
background-color: #FFF;
2021-07-25 13:43:36 +02:00
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
#ConfigData>div>div>table>tbody>tr>td>.btn {
background: rgba(0, 0, 0, 0.25);
color: #FFF;
text-shadow: unset;
font-weight: bold;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
#ConfigData>div>div>table>tbody>tr>td>.btn:hover {
background: hsla(0, 0%, 100%, .08);
color: #FFF;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
input,
textarea,
select,
.uneditable-input {
2019-07-14 14:26:11 +02:00
color: #ffffff;
background-color: rgb(0, 0, 0);
2019-07-14 15:33:48 +02:00
background-image: var(main-bg-color) !important;
2019-07-14 14:26:11 +02:00
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2019-07-14 15:33:48 +02:00
background-color: rgba(0, 0, 0, 0.25) !important;
2019-07-14 14:26:11 +02:00
color: #FFFFFF !important;
border: none;
}
2021-07-25 13:43:36 +02:00
2019-07-14 15:33:48 +02:00
select:focus {
2021-07-25 13:43:36 +02:00
background: #191a1c !important;
color: #FFF !important;
2019-07-14 15:33:48 +02:00
}
2021-07-25 13:43:36 +02:00
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
select:focus {
2019-07-14 14:26:11 +02:00
outline: thin dotted #333;
outline: none;
outline-offset: -2px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
2021-07-25 13:43:36 +02:00
input:focus,
textarea:focus {
2019-07-14 14:26:11 +02:00
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 0, 0, 0.6);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 0, 0, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 0, 0, 0.6);
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.alert-info {
2021-07-25 13:43:36 +02:00
font-weight: bold;
border-radius: unset;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
border: 0px;
background-color: hsla(0, 0%, 100%, .05);
text-shadow: unset;
color: #FFF;
text-transform: capitalize;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.alert-inverse {
2021-07-25 13:43:36 +02:00
background-color: #414141;
2019-07-14 15:33:48 +02:00
background-image: var(--main-bg-color) !important;
2019-07-14 14:26:11 +02:00
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
border-color: transparent;
2021-07-25 13:43:36 +02:00
opacity: 1;
2019-07-14 14:26:11 +02:00
}
/* SETTINGS */
label {
color: #FFF;
}
#ConfigNav {
2021-07-25 13:43:36 +02:00
border: 1px solid rgba(0, 0, 0, .25);
2019-07-14 14:26:11 +02:00
background-color: rgba(0, 0, 0, .25);
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
#ConfigNav.nav-list a {
color: #fff;
text-decoration: none;
}
2021-07-25 13:43:36 +02:00
.nav-list>li>a,
.nav-list .nav-header {
2019-07-14 14:26:11 +02:00
text-shadow: none;
}
2021-07-25 13:43:36 +02:00
.nav-list>.active>a,
.nav-list>.active>a:hover {
2019-07-14 14:26:11 +02:00
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
background-color: #0088cc;
}
2021-07-25 13:43:36 +02:00
.nav-list>.active>a,
.nav-list>.active>a:hover {
2019-07-14 15:33:48 +02:00
color: var(--accent-color) !important;
2019-07-14 14:26:11 +02:00
background-color: transparent;
}
2021-07-25 13:43:36 +02:00
.nav>li>a:hover {
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
span.help-option-title {
color: #eee;
}
2021-07-25 13:43:36 +02:00
.help-block,
.help-inline {
2019-07-14 14:26:11 +02:00
color: #eee;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.confirm-help-block {
color: #eee;
font-size: 13px;
line-height: 16px;
margin-bottom: 0;
}
2021-07-25 13:43:36 +02:00
.input-prepend .add-on,
.input-append .add-on {
2019-07-14 14:26:11 +02:00
background-color: rgba(0, 0, 0, 0.25);
2019-07-14 15:33:48 +02:00
background-image: var(--main-bg-color) !important;
2019-07-14 14:26:11 +02:00
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
background-color: transparent;
color: #FFFFFF !important;
border: none;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.config-settitle {
background-color: rgba(0, 0, 0, 0.25);
border-bottom: none;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
a {
2019-07-14 15:33:48 +02:00
color: var(--accent-color);
2019-07-14 14:26:11 +02:00
text-decoration: none;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
a:hover {
color: #fff;
text-decoration: underline;
}
2021-07-25 13:43:36 +02:00
.label-warning,
.badge-warning {
2019-07-14 15:33:48 +02:00
background-color: var(--button-color);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.caret {
border-top: 4px solid #ffffff;
2021-07-25 13:43:36 +02:00
}