Browse Source

added radarr addon info

pull/56/head
gilbN 4 years ago
parent
commit
8267f1013b
  1. 5
      CSS/addons/README.MD
  2. 6
      CSS/addons/README.md
  3. 54
      CSS/addons/radarr/README.md
  4. BIN
      CSS/addons/radarr/desktop.png
  5. BIN
      CSS/addons/radarr/mobile.png
  6. 39
      CSS/addons/radarr/radarr-4k-logo.css
  7. BIN
      CSS/addons/radarr/radarr-v3-mobile.png
  8. BIN
      CSS/addons/radarr/radarr4k-v3.png
  9. BIN
      CSS/addons/radarr/v3-desktop.png
  10. BIN
      CSS/addons/radarr/v3-mobile.png

5
CSS/addons/README.MD

@ -1,3 +1,6 @@
# CSS Addons
## [Organizr](https://github.com/gilbN/theme.park/tree/master/CSS/addons/organizr/)
## [Organizr](https://github.com/gilbN/theme.park/tree/master/CSS/addons/organizr/)
## [Radarr](https://github.com/gilbN/theme.park/tree/master/CSS/addons/radarr)

6
CSS/addons/README.md

@ -0,0 +1,6 @@
# CSS Addons
## [Organizr](https://github.com/gilbN/theme.park/tree/master/CSS/addons/organizr/)
## [Radarr](https://github.com/gilbN/theme.park/tree/master/CSS/addons/radarr)

54
CSS/addons/radarr/README.md

@ -0,0 +1,54 @@
# Radarr 4K logo
Add a 4K logo to your Radarr css.
### Desktop
![](desktop.png)
![](v3-desktop.png)
### Mobile
![](mobile.png)
![](v3-mobile.png)
## Setup
#### Nginx
Examples of how to add it:
```nginx
proxy_set_header Accept-Encoding "";
sub_filter
'</head>'
'<link rel="stylesheet" type="text/css" href="https://gilbn.github.io/theme.park/CSS/themes/radarr/THEME.css">
<link rel="stylesheet" type="text/css" href="https://gilbn.github.io/theme.park/CSS/addons/radarr/radarr-4k-logo.css">
</head>';
sub_filter_once on;
```
#### Apache
```nginx
AddOutputFilterByType SUBSTITUTE text/html
Substitute 's|</head> '<link rel="stylesheet" type="text/css" href="https://gilbn.github.io/theme.park/CSS/themes/radarr/THEME.css"><link rel="stylesheet" type="text/css" href="https://gilbn.github.io/theme.park/CSS/addons/radarr/radarr-4k-logo.css">
</head>';|'
```
#### Caddy
```nginx
filter rule {
content_type text/html.*
search_pattern </head>
replacement "<link rel='stylesheet' type='text/css' href='https://gilbn.github.io/theme.park/CSS/themes/<APP_NAME>/<THEME>.css'><link rel='stylesheet' type='text/css' href='https://gilbn.github.io/theme.park/CSS/addons/radarr/radarr-4k-logo.css'></head>"
}
```
#### Stylus
Just add another import line.
```css
@import "https://gilbn.github.io/theme.park/CSS/themes/radarr/THEME.css";
@import "https://gilbn.github.io/theme.park/CSS/addons/radarr/radarr-4k-logo.css";
```

BIN
CSS/addons/radarr/desktop.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

BIN
CSS/addons/radarr/mobile.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 790 KiB

39
CSS/addons/radarr/radarr-4k-logo.css

@ -1,4 +1,4 @@
/* Desttop */
/* Desktop */
@media (min-width: 752px) {
.navbar-brand>img {
display:none !important;
@ -35,4 +35,39 @@
-o-background-size: cover;
margin-bottom: -12px;
}
}
}
/* Radarr V3*/
@media (min-width: 752px) {
.PageHeader-logoFull-2z6pD {
display: none !important;
}
.PageHeader-logoContainer-3bOb3:before {
background-image: url("https://gflix.app/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;
}
}
@media (max-width: 767px) {
.PageHeader-logo-2y8vm {
display: none !important;
}
.PageHeader-logoContainer-3bOb3:before {
background-image: url("https://gilbn.github.io/theme.park/CSS/addons/radarr/radarr-v3-mobile.png");
display: inline-block;
width: 32px;
height: 32px;
content:"";
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}
}

BIN
CSS/addons/radarr/radarr-v3-mobile.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

BIN
CSS/addons/radarr/radarr4k-v3.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

BIN
CSS/addons/radarr/v3-desktop.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

BIN
CSS/addons/radarr/v3-mobile.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Loading…
Cancel
Save