update 6-10-21

This commit is contained in:
deathbybandaid 2021-06-10 08:25:26 -04:00
parent c8bd544ab4
commit 2fad96e5b0
364 changed files with 1166 additions and 421 deletions

View File

@ -1,8 +1,8 @@
# CSS Addons # CSS Addons
## [Organizr](https://github.com/gilbN/theme.park/tree/master/CSS/addons/organizr/) ## [Organizr](https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/organizr/)
## [Radarr](https://github.com/gilbN/theme.park/tree/master/CSS/addons/radarr) ## [Radarr](https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/radarr)
## [Sonarr](https://github.com/gilbN/theme.park/tree/master/CSS/addons/sonarr) ## [Sonarr](https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/sonarr)

View File

@ -12,7 +12,7 @@
background-size: cover; background-size: cover;
-webkit-background-size: cover; -webkit-background-size: cover;
-moz-background-size: cover; -moz-background-size: cover;
-o-backgroun-.dev -o-background-size: cover;
} }
} }

View File

@ -1,3 +1,3 @@
# Organizr Addons # Organizr Addons
## [Glass](https://github.com/gilbN/theme.park/tree/master/CSS/addons/organizr/glass) ## [Glass](https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/organizr/glass)

View File

@ -2,18 +2,18 @@
## Installation ## Installation
* [Full](https://github.com/gilbN/theme.park/tree/master/CSS/addons/organizr/glass#Full) * [Full](https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/organizr/glass#Full)
* [Login - Lockscreen only](https://github.com/gilbN/theme.park/tree/master/CSS/addons/organizr/glass#login---lockscreen-only) * [Login - Lockscreen only](https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/organizr/glass#login---lockscreen-only)
*** ***
### `Tip!` ### `Tip!`
If you're on Docker use the `php-fpm` tag to speed up load times, like so: `organizrtools/organizr-v2:php-fpm` If you're on Docker use the `php-fpm` tag to speed up load times, like so: `organizrtools/organizr-v2:php-fpm`
*** ***
### NOTE ### NOTE
**Firefox:** `From version 70: this feature is behind the layout.css.backdrop-filter.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.` **Firefox:** `From version 70: this feature is behind the layout.css.backdrop-filter.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.`
@ -23,9 +23,9 @@
2. Import the `glass-base.css` and root variables in the Custom Theme CSS box like below. 2. Import the `glass-base.css` and root variables in the Custom Theme CSS box like below.
Replace `--main-bg-color` with a wallpaper you have uploaded to Organizr Replace `--main-bg-color` with a wallpaper you have uploaded to Organizr
```css ```css
@import "https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/organizr/glass/glass-base.css"; @import "https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/organizr/glass/glass-base.css";
:root { :root {
--main-bg-color: url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/organizr/glass/example.jpg) center center/cover no-repeat fixed; --main-bg-color: url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/organizr/glass/example.jpg) center center/cover no-repeat fixed;
--mobile-bg-color: radial-gradient(circle, #3a3a3a, #2d2d2d, #202020, #141414, #000000) center center/cover no-repeat fixed; --mobile-bg-color: radial-gradient(circle, #3a3a3a, #2d2d2d, #202020, #141414, #000000) center center/cover no-repeat fixed;
@ -90,7 +90,7 @@ Here are the other theme colors if you want to use that instead:
If you just want the login and lockscreen css, just add this in custom CSS: If you just want the login and lockscreen css, just add this in custom CSS:
```css ```css
@import "https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/organizr/glass/glass-login.css"; @import "https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/organizr/glass/glass-login.css";
``` ```
You can change the blur background color by adding the variables above. The default is dark. You can change the blur background color by adding the variables above. The default is dark.

View File

@ -69,5 +69,28 @@
-webkit-background-size: cover; -webkit-background-size: cover;
-moz-background-size: cover; -moz-background-size: cover;
-o-background-size: cover; -o-background-size: cover;
margin-left: 20px;
margin-right: 8px;
flex: 0 0 32px;
} }
} }
[class*="LoadingPage-logoFull-"] {
display: none !important;
}
[class*="LoadingPage-page-"]:before {
background-image: url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/radarr/radarr4k-v3.png");
display: inline-block;
width: 148px;
height: 48px;
content:"";
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
margin-top: 50px;
margin-right: auto;
margin-left: auto;
}

View File

@ -1,12 +1,12 @@
/* Desktop */ /* Desktop */
@media (min-width: 752px) { @media (min-width: 752px) {
.navbar-brand>img { .navbar-brand>img {
display:none !important; display:none !important;
} }
.navbar > .container-fluid .navbar-brand:before { .navbar > .container-fluid .navbar-brand:before {
background-image: url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/sonarr/sonarr-4k.png"); background-image: url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/sonarr/sonarr-4k.png");
display: inline-block; display: inline-block;
width: 128px; width: 128px;
height: 128px; height: 128px;
content:""; content:"";
background-size: cover; background-size: cover;
@ -20,14 +20,14 @@
@media (max-width: 1200px) { @media (max-width: 1200px) {
.navbar-brand .visible-xs img, .logo-text { .navbar-brand .visible-xs img, .logo-text {
display: none !important; display: none !important;
} }
.navbar-brand .visible-xs { .navbar-brand .visible-xs {
display: inline !important; display: inline !important;
} }
.navbar > .container-fluid .navbar-brand:before { .navbar > .container-fluid .navbar-brand:before {
background-image: url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/sonarr/sonarr-4k.png"); background-image: url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/sonarr/sonarr-4k.png");
display: inline-block; display: inline-block;
width: 64px; width: 64px;
height: 64px; height: 64px;
content:""; content:"";
background-size: cover; background-size: cover;
@ -41,14 +41,14 @@
@media (max-width: 767px) { @media (max-width: 767px) {
.navbar-brand .visible-xs img { .navbar-brand .visible-xs img {
display: none !important; display: none !important;
} }
.navbar-brand .visible-xs { .navbar-brand .visible-xs {
display: inline !important; display: inline !important;
} }
.navbar > .container-fluid .navbar-brand:before { .navbar > .container-fluid .navbar-brand:before {
background-image: url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/sonarr/sonarr-4k.png"); background-image: url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/sonarr/sonarr-4k.png");
display: inline-block; display: inline-block;
width: 32px; width: 32px;
height: 32px; height: 32px;
content:""; content:"";
background-size: cover; background-size: cover;
@ -67,29 +67,49 @@
[class*="PageHeader\/logoContainer\/"]:before { [class*="PageHeader\/logoContainer\/"]:before {
background-image: url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/sonarr/sonarr-4k.png"); background-image: url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/sonarr/sonarr-4k.png");
display: inline-block; display: inline-block;
width: 32px; width: 32px;
height: 32px; height: 32px;
content:""; content:"";
background-size: cover; background-size: cover;
-webkit-background-size: cover; -webkit-background-size: cover;
-moz-background-size: cover; -moz-background-size: cover;
-o-background-size: cover; -o-background-size: cover;
} }
} }
@media (max-width: 767px) { @media (max-width: 767px) {
[class*="PageHeader\/logo\/"] { [class*="PageHeader\/logo\/"] {
display: none !important; display: none !important;
} }
[class*="PageHeader\/logoContainer\/"]:before { [class*="PageHeader\/logoContainer\/"]:before {
background-image: url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/sonarr/sonarr-4k.png"); background-image: url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/sonarr/sonarr-4k.png");
display: inline-block; display: inline-block;
width: 32px; width: 32px;
height: 32px; height: 32px;
content:""; content:"";
background-size: cover; background-size: cover;
-webkit-background-size: cover; -webkit-background-size: cover;
-moz-background-size: cover; -moz-background-size: cover;
-o-background-size: cover; -o-background-size: cover;
} }
} }
[class*="LoadingPage\/logoFull\/"] {
display: none !important;
}
[class*="LoadingPage\/page\/"]:before {
background-image: url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/addons/sonarr/sonarr-4k.png");
display: inline-block;
width: 48px;
height: 48px;
content:"";
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
margin-top: 50px;
margin-right: auto;
margin-left: auto;
}

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
body { body {
background: var(--main-bg-color); background: var(--main-bg-color);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* ADGUARD AQUAMARINE THEME */ /* ADGUARD AQUAMARINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/adguard/adguard-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/adguard/adguard-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* ADGUARD DARK THEME */ /* ADGUARD DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/adguard/adguard-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/adguard/adguard-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* ADGUARD HOTLINE THEME */ /* ADGUARD HOTLINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/adguard/adguard-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/adguard/adguard-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* ADGUARD ORGANIZR-DARK THEME */ /* ADGUARD ORGANIZR-DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/adguard/adguard-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/adguard/adguard-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* ADGUARD PLEX THEME */ /* ADGUARD PLEX THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/adguard/adguard-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/adguard/adguard-base.css);
@ -25,4 +25,4 @@
--tooltip-link-color: #e5a00d; --tooltip-link-color: #e5a00d;
--text: #eee; --text: #eee;
--text-hover: #fff; --text-hover: #fff;
} }

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* ADGUARD SPACE GRAY THEME */ /* ADGUARD SPACE GRAY THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/adguard/adguard-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/adguard/adguard-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* BAZARR AQUAMARINE THEME */ /* BAZARR AQUAMARINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bazarr/bazarr-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bazarr/bazarr-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
html { html {
background: var(--main-bg-color); background: var(--main-bg-color);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
* { * {
outline: none; outline: none;

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* BAZARR DARK THEME */ /* BAZARR DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bazarr/bazarr-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bazarr/bazarr-base.css);
@ -27,8 +27,8 @@
--queue-color: #6b5; --queue-color: #6b5;
--link-color: #ddd; --link-color: #ddd;
--link-color-hover: #fff; --link-color-hover: #fff;
--text:#eee; --text:#eee;
--text-hover: #fff; --text-hover: #fff;
--text-muted: #999; --text-muted: #999;
} }

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* BAZARR HOTLINE THEME */ /* BAZARR HOTLINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bazarr/bazarr-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bazarr/bazarr-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* BAZARR ORGANIZR-DARK THEME */ /* BAZARR ORGANIZR-DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bazarr/bazarr-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bazarr/bazarr-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* BAZARR PLEX THEME */ /* BAZARR PLEX THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bazarr/bazarr-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bazarr/bazarr-base.css);
@ -27,8 +27,8 @@
--queue-color: #27c24c; --queue-color: #27c24c;
--link-color: #e5a00d; --link-color: #e5a00d;
--link-color-hover: #fff; --link-color-hover: #fff;
--text:#eee; --text:#eee;
--text-hover: #fff; --text-hover: #fff;
--text-muted: #bbb; --text-muted: #bbb;
} }

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* BAZARR SPACE GRAY THEME */ /* BAZARR SPACE GRAY THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bazarr/bazarr-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bazarr/bazarr-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* BITWARDEN AQUAMARINE THEME */ /* BITWARDEN AQUAMARINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bitwarden/bitwarden-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bitwarden/bitwarden-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
* { * {
outline: none; outline: none;

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* BITWARDEN DARK THEME */ /* BITWARDEN DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bitwarden/bitwarden-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bitwarden/bitwarden-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* BITWARDEN HOTLINE THEME */ /* BITWARDEN HOTLINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bitwarden/bitwarden-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bitwarden/bitwarden-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* BITWARDEN ORGANIZR-DARK THEME */ /* BITWARDEN ORGANIZR-DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bitwarden/bitwarden-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bitwarden/bitwarden-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* BITWARDEN PLEX THEME */ /* BITWARDEN PLEX THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bitwarden/bitwarden-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bitwarden/bitwarden-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* BITWARDEN SPACE GRAY THEME */ /* BITWARDEN SPACE GRAY THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bitwarden/bitwarden-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/bitwarden/bitwarden-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* CALIBRE-WEB AQUAMARINE THEME */ /* CALIBRE-WEB AQUAMARINE THEME */
/* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */ /* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */

View File

@ -10,7 +10,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* "Re-skin" of CaliBlur https://github.com/leram84/layer.Cake/tree/master/caliBlur */ /* "Re-skin" of CaliBlur https://github.com/leram84/layer.Cake/tree/master/caliBlur */
/* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */ /* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* CALIBRE-WEB DARK THEME */ /* CALIBRE-WEB DARK THEME */
/* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */ /* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* CALIBRE-WEB HOTLINE THEME */ /* CALIBRE-WEB HOTLINE THEME */
/* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */ /* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* CALIBRE-WEB ORGANIZR-DARK THEME */ /* CALIBRE-WEB ORGANIZR-DARK THEME */
/* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */ /* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* CALIBRE-WEB SPACE GRAY THEME */ /* CALIBRE-WEB SPACE GRAY THEME */
/* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */ /* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DELUGE AQUAMARINE THEME */ /* DELUGE AQUAMARINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/deluge/deluge-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/deluge/deluge-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DELUGE DARK THEME */ /* DELUGE DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/deluge/deluge-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/deluge/deluge-base.css);

View File

@ -10,7 +10,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* Based on https://github.com/HalianElf/Deluge-Dark/blob/master/deluge.css */ /* Based on https://github.com/HalianElf/Deluge-Dark/blob/master/deluge.css */

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DELUGE HOTLINE THEME */ /* DELUGE HOTLINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/deluge/deluge-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/deluge/deluge-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DELUGE ORGANIZR-DARK THEME */ /* DELUGE ORGANIZR-DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/deluge/deluge-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/deluge/deluge-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DELUGE PLEX THEME */ /* DELUGE PLEX THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/deluge/deluge-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/deluge/deluge-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DELUGE SPACE GRAY THEME */ /* DELUGE SPACE GRAY THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/deluge/deluge-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/deluge/deluge-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DOZZLE AQUAMARINE THEME */ /* DOZZLE AQUAMARINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/dozzle/dozzle-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/dozzle/dozzle-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DOZZLE DARK THEME */ /* DOZZLE DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/dozzle/dozzle-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/dozzle/dozzle-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
* { * {
outline: none; outline: none;

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DOZZLE HOTLINE THEME */ /* DOZZLE HOTLINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/dozzle/dozzle-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/dozzle/dozzle-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DOZZLE ORGANIZR-DARK THEME */ /* DOZZLE ORGANIZR-DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/dozzle/dozzle-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/dozzle/dozzle-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DOZZLE PLEX THEME */ /* DOZZLE PLEX THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/dozzle/dozzle-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/dozzle/dozzle-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DOZZLE SPACE GRAY THEME */ /* DOZZLE SPACE GRAY THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/dozzle/dozzle-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/dozzle/dozzle-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DUPLICACY AQUAMARINE THEME */ /* DUPLICACY AQUAMARINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/duplicacy/duplicacy-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/duplicacy/duplicacy-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DUPLICACY DARK THEME */ /* DUPLICACY DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/duplicacy/duplicacy-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/duplicacy/duplicacy-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
body { body {

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DUPLICACY HOTLINE THEME */ /* DUPLICACY HOTLINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/duplicacy/duplicacy-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/duplicacy/duplicacy-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DUPLICACY ORGANIZR-DARK THEME */ /* DUPLICACY ORGANIZR-DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/duplicacy/duplicacy-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/duplicacy/duplicacy-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DUPLICACY PLEX THEME */ /* DUPLICACY PLEX THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/duplicacy/duplicacy-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/duplicacy/duplicacy-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* DUPLICACY SPACE GRAY THEME */ /* DUPLICACY SPACE GRAY THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/duplicacy/duplicacy-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/duplicacy/duplicacy-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* EMBY AQUAMARINE THEME */ /* EMBY AQUAMARINE THEME */
@import url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/emby/emby-base.css"); @import url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/emby/emby-base.css");

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* EMBY DARK THEME */ /* EMBY DARK THEME */
@import url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/emby/emby-base.css"); @import url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/emby/emby-base.css");

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* EMBY HOTLINE THEME */ /* EMBY HOTLINE THEME */
@import url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/emby/emby-base.css"); @import url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/emby/emby-base.css");

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* EMBY ORGANIZR-DARK THEME */ /* EMBY ORGANIZR-DARK THEME */
@import url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/emby/emby-base.css"); @import url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/emby/emby-base.css");

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* EMBY PLEX THEME */ /* EMBY PLEX THEME */
@import url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/emby/emby-base.css"); @import url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/emby/emby-base.css");

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* EMBY SPACE GRAY THEME */ /* EMBY SPACE GRAY THEME */
@import url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/emby/emby-base.css"); @import url("https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/emby/emby-base.css");

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* FILEBROWSER AQUAMARINE THEME */ /* FILEBROWSER AQUAMARINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/filebrowser/filebrowser-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/filebrowser/filebrowser-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* FILEBROWSER DARK THEME */ /* FILEBROWSER DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/filebrowser/filebrowser-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/filebrowser/filebrowser-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* Based on https://github.com/Archmonger/Blackberry-Themes/blob/master/Themes/Blackberry-Flat/bbf_filebrowser.css */ /* Based on https://github.com/Archmonger/Blackberry-Themes/blob/master/Themes/Blackberry-Flat/bbf_filebrowser.css */

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* FILEBROWSER HOTLINE THEME */ /* FILEBROWSER HOTLINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/filebrowser/filebrowser-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/filebrowser/filebrowser-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* FILEBROWSER ORGANIZR-DARK THEME */ /* FILEBROWSER ORGANIZR-DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/filebrowser/filebrowser-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/filebrowser/filebrowser-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* FILEBROWSER PLEX THEME */ /* FILEBROWSER PLEX THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/filebrowser/filebrowser-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/filebrowser/filebrowser-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* FILEBROWSER SPACE GRAY THEME */ /* FILEBROWSER SPACE GRAY THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/filebrowser/filebrowser-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/filebrowser/filebrowser-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* FLOOD AQUAMARINE THEME */ /* FLOOD AQUAMARINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/flood/flood-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/flood/flood-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* FLOOD DARK THEME */ /* FLOOD DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/flood/flood-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/flood/flood-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* MOBILE */ /* MOBILE */

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* FLOOD HOTLINE THEME */ /* FLOOD HOTLINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/flood/flood-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/flood/flood-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* FLOOD ORGANIZR-DARK THEME */ /* FLOOD ORGANIZR-DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/flood/flood-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/flood/flood-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* FLOOD PLEX THEME */ /* FLOOD PLEX THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/flood/flood-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/flood/flood-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* FLOOD SPACE GRAY THEME */ /* FLOOD SPACE GRAY THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/flood/flood-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/flood/flood-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GAPS AQUAMARINE THEME */ /* GAPS AQUAMARINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gaps/gaps-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gaps/gaps-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GAPS DARK THEME */ /* GAPS DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gaps/gaps-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gaps/gaps-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
body { body {
background: var(--main-bg-color); background: var(--main-bg-color);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GAPS HOTLINE THEME */ /* GAPS HOTLINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gaps/gaps-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gaps/gaps-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GAPS ORGANIZR-DARK THEME */ /* GAPS ORGANIZR-DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gaps/gaps-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gaps/gaps-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GAPS PLEX THEME */ /* GAPS PLEX THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gaps/gaps-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gaps/gaps-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GAPS SPACE-GRAY THEME */ /* GAPS SPACE-GRAY THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gaps/gaps-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gaps/gaps-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GITEA AQUAMARINE THEME */ /* GITEA AQUAMARINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gitea/gitea-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gitea/gitea-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GITEA DARK THEME */ /* GITEA DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gitea/gitea-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gitea/gitea-base.css);

View File

@ -8,7 +8,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
body { body {
background: var(--main-bg-color); background: var(--main-bg-color);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GITEA HOTLINE THEME */ /* GITEA HOTLINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gitea/gitea-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gitea/gitea-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GITEA ORGANIZR-DARK THEME */ /* GITEA ORGANIZR-DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gitea/gitea-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gitea/gitea-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GITEA PLEX THEME */ /* GITEA PLEX THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gitea/gitea-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gitea/gitea-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GITEA SPACE GRAY THEME */ /* GITEA SPACE GRAY THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gitea/gitea-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/gitea/gitea-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GRAFANA AQUAMARINE THEME */ /* GRAFANA AQUAMARINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/grafana/grafana-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/grafana/grafana-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GRAFANA DARK THEME */ /* GRAFANA DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/grafana/grafana-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/grafana/grafana-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
body { body {
color:#FFFFFF !important; color:#FFFFFF !important;

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GRAFANA HOTLINE THEME */ /* GRAFANA HOTLINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/grafana/grafana-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/grafana/grafana-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GRAFANA ORGANIZR-DARK THEME */ /* GRAFANA ORGANIZR-DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/grafana/grafana-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/grafana/grafana-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GRAFANA THEME FOR ORGANIZR DASHBOARD INTEGRATION */ /* GRAFANA THEME FOR ORGANIZR DASHBOARD INTEGRATION */
body { body {

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* LIDARR PLEX THEME */ /* LIDARR PLEX THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/grafana/grafana-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/grafana/grafana-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GRAFANA SPACE GRAY THEME */ /* GRAFANA SPACE GRAY THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/grafana/grafana-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/grafana/grafana-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GUACAMOLE AQUAMARINE THEME */ /* GUACAMOLE AQUAMARINE THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/guacamole/guacamole-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/guacamole/guacamole-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
/* GUACAMOLE DARK THEME */ /* GUACAMOLE DARK THEME */
@import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/guacamole/guacamole-base.css); @import url(https://htpc.deathbybandaid.net/assets/theme.park/CSS/themes/guacamole/guacamole-base.css);

View File

@ -9,7 +9,7 @@
/* dP */ /* dP */
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://htpc.deathbybandaid.net/assets/theme.park */
body { body {
background: var(--main-bg-color) !important; background: var(--main-bg-color) !important;
background-repeat: repeat, no-repeat; background-repeat: repeat, no-repeat;

Some files were not shown because too many files have changed in this diff Show More