Repository: CTalvio/Monochromic
Branch: master
Commit: 746f0597547f
Files: 13
Total size: 59.1 KB
Directory structure:
gitextract_9_ia0ml_/
├── README.md
├── alternate-itempage_style.css
├── alternate_style.css
├── backdrop-hack_style.css
├── bottom-progress_style.css
├── customcolor-advanced_style.css
├── customcolor_style.css
├── default_style.css
├── improve-performance_style.css
├── jfblue_style.css
├── jfpurple_style.css
├── sharp_style.css
└── test_style.css
================================================
FILE CONTENTS
================================================
================================================
FILE: README.md
================================================
# Monochromic - deprecated
### Superseded by the new [Ultrachromic](https://github.com/CTalvio/Ultrachromic) theme
A custom theme for Jellyfin mediaserver created using CSS overrides. Note that I maintain this theme to be compatible with whatever version of Jellyfin I am currently using. Which is usually the latest stable release. You can therefore assume that using the theme on older versions may not work, but also that if a new release breaks something, that I will fix it. If you encounter unthemed elements or something broken, open an issue.
Check out my other theme, [Kaleidochromic](https://github.com/CTalvio/Kaleidochromic), if you are looking for something more colorful, or [Novachromic](https://github.com/CTalvio/Novachromic) if you are a full on light mode kind of person.
To use the theme copy paste the line below into "Dashboard>General>Custom CSS" and click save, it will apply immediately server-wide to all users on top of any theme they may be using. To remove the theme, clear the "Custom CSS" field and then click save. **NOTE: Theme may not work when using reverse proxy**, check the bottom section of this readme for more info.
```css
@import url('https://ctalvio.github.io/Monochromic/default_style.css');
```


## Features
- Themes **EVERYTHING**
- Dark, Transparent, Minimalistic
- Uses the same font as the JF logo everywhere
- Add-ons for an easy personal touch
- Customizable accent color
- Blurred backdrops
- Squared aesthetic with rounded corners (optionally corners so sharp you might get an eye poked out)
- Two options for progress bars
- Works well on mobile
- More compact
- Smaller and squared cast info
## Add-ons
This theme has some additional options, they can allow the use of a custom accent color, and more. These are added immediately after the default import line.
### Alternate itempage
A different itempage to the default of the theme, more reminiscient of "vanilla" as it does not remove the backdrop banner.
```css
@import url('https://ctalvio.github.io/Monochromic/alternate-itempage_style.css');
```

### Improve performance
The theme uses mask-image to fade out items below the top bar as you scroll. This works well on most reasonable hardware but struggles on some phones and especially smart TVs. This switches to a method without using mask-image, but foregoes the fade-out effect. I may switch to this method being the default.
```css
@import url('https://ctalvio.github.io/Monochromic/improve-performance_style.css');
```
### Accent color presets
Blue restores some of the default jellyfin blue accenting, while purple uses... Well, purple, in a Jellyfin shade of course.
```css
@import url('https://ctalvio.github.io/Monochromic/jfblue_style.css');
@import url('https://ctalvio.github.io/Monochromic/jfpurple_style.css');
```
### Restore bottom bar style episode progress
Don't like my transparent view progress overlay? Use this to go back to the old style.
```css
@import url('https://ctalvio.github.io/Monochromic/bottom-progress_style.css');
```
### Backdrop on mobile for 10.7.0
This add-on turns the cover image on the mobile item page into a backdrop, since mobile on 10.7.0 has no backdrop for library items on mobile.
```css
@import url('https://ctalvio.github.io/Monochromic/backdrop-hack_style.css');
```
### Define your own accent color
This now uses a single RGB value in a variable. This lets me use the color at various transparencies and hence apply the accent more flexibly in places. Use any RGB color picker to find the value for any given color and enter it. **This import line and variable should always be last**.
```css
@import url('https://ctalvio.github.io/Monochromic/customcolor-advanced_style.css');
:root {--accent: R, G, B;}
```
### Modify rounding
By adding this variable at the bottom, after the import lines, the rounding can be removed, reduced or increased. **Variables should always be last**.
```css
:root {--rounding: 5px;}
```
## Screenshots





## Using with reverse proxy
When using the Nginx Reverse proxy config from the [Jellyfin docs](https://jellyfin.org/docs/general/networking/nginx.html) the theme will not work by default. (If you are using the subpath config, you can ignore all this.)
Because the config includes Content-Security-Policy which reduces risk of XSS, you need to add the URL from this repo and the fonts to the list of allowed external sources.
In the nginx config you should change the
```
add_header Content-Security-Policy ....
```
to:
```
add_header Content-Security-Policy "default-src https: data: blob:; style-src 'self' 'unsafe-inline' https://ctalvio.github.io/Monochromic/default_style.css https://ctalvio.github.io/Monochromic/jfblue_style.css https://ctalvio.github.io/Monochromic/jfpurple_style.css https://ctalvio.github.io/Monochromic/bottom-progress_style.css https://ctalvio.github.io/Monochromic/customcolor-advanced_style.css https://ctalvio.github.io/Monochromic/improve-performance_style.css https://fonts.googleapis.com/css2; script-src 'self' 'unsafe-inline' https://www.gstatic.com/cv/js/sender/v1/cast_sender.js worker-src 'self' blob:; connect-src 'self'; object-src 'none'; frame-ancestors 'self'";
```
If you don't do this the theme will simply not load (reverts back to default theme) and the browser console will spit out an error. Even if you paste in all the CSS, the font will still not load since it is loaded from an external source.
Thanks to [LickABrick](https://github.com/LickABrick) for discovering this, and submitting instructions on how to fix.
================================================
FILE: alternate-itempage_style.css
================================================
/*Alternate itempage*/
.itemBackdrop {
height: 31vh !important;
display: inherit;
}
.layout-desktop .detailRibbon {
margin-top: 0;
padding-top: .5em;
padding-bottom: .5em;
background: rgba(0,0,0,.2) !important;
}
.detailImageContainer .card.backdropCard {
top: 40vh;
}
.itemBackdrop::after {
background: rgba(0,0,0,.5) !important;
}
================================================
FILE: alternate_style.css
================================================
# Kaleidochromic
A custom theme for Jellyfin mediaserver created using CSS overrides. While a separate theme, it is built on top other theme, Monochromic. Therefore, please open any issues over there. Kaleidochromic is essentially Monochromic, but with yet another layer of overrides. This makes maintenance easier.
To use the theme copy paste the line below into "Dashboard>General>Custom CSS" and click save, it will apply immediately server-wide to all users on top of any theme they may be using. To remove the theme, clear the "Custom CSS" field and then click save. **NOTE: Theme may not work when using reverse proxy**, check the bottom section of this readme for more info.
```css
@import url('https://ctalvio.github.io/Kaleidochromic/default_style.css');
```


## Features
- Themes **EVERYTHING**
- Bright, Transparent, Minimalistic
- Uses the same font as the JF logo everywhere
- Add-ons for an easy personal touch
- Customizable accent color
- Blurred backdrops
- Rounded look (optionally sharp)
- Two options for progress bars
- Works well on mobile
- More compact
- Smaller and squared cast info
## Add-ons
This theme has some additional options, they can allow the use of a custom accent color, and more. These are added immediately after the default import line.
### Improve performance
The theme uses mask-image to fade out items below the top bar as you scroll. This works well on most reasonable hardware but struggles on some phones and especially smart TVs. This switches to a method without using mask-image, but foregoes the fade-out effect. I may switch to this method being the default.
```css
@import url('https://ctalvio.github.io/Monochromic/improve-performance_style.css');
```
### Restore bottom bar style episode progress
Don't like my transparent view progress overlay? Use this to go back to the old style.
```css
@import url('https://ctalvio.github.io/Monochromic/bottom-progress_style.css');
```
### Accent color presets
Blue restores some of the default jellyfin blue accenting, while purple uses... Well, purple, in a Jellyfin shade of course.
```css
@import url('https://ctalvio.github.io/Monochromic/jfblue_style.css');
@import url('https://ctalvio.github.io/Monochromic/jfpurple_style.css');
```
### Modify rounding
By adding this variable at the bottom, after the import lines, the rounding can be removed, reduced or increased. **Variables should always be last**.
```css
:root {--rounding: 12px;}
```
### Define your own accent color
This is now integrated into the theme and requires no additional import line, and uses a variable same as rounding. Use any RGB color picker to find the value for any given color and enter it. **Variables should always be last**.
:root {--accent: R, G, B;}
```
## Screenshots





## Using with reverse proxy
When using the Nginx Reverse proxy config from the [Jellyfin docs](https://jellyfin.org/docs/general/networking/nginx.html) the theme will not work by default. (If you are using the subpath config, you can ignore all this.)
Because the config includes Content-Security-Policy which reduces risk of XSS, you need to add the URL from this repo and the fonts to the list of allowed external sources.
In the nginx config you should change the
```
add_header Content-Security-Policy ....
```
to:
```
add_header Content-Security-Policy "default-src https: data: blob:; style-src 'self' 'unsafe-inline'
https://ctalvio.github.io/Monochromic/default_style.css
https://ctalvio.github.io/Monochromic/jfblue_style.css
https://ctalvio.github.io/Monochromic/jfpurple_style.css
https://ctalvio.github.io/Monochromic/bottom-progress_style.css.css
https://ctalvio.github.io/Monochromic/customcolor-advanced_style.css
https://ctalvio.github.io/Monochromic/improve-performance_style.css
https://ctalvio.github.io/Kaleidochromic/default_style.css
https://fonts.googleapis.com/css2;
script-src 'self' 'unsafe-inline'
https://www.gstatic.com/cv/js/sender/v1/cast_sender.js
https://www.youtube.com/iframe_api https://s.ytimg.com
https://ctalvio.github.io/Monochromic/default_style.css
https://ctalvio.github.io/Monochromic/jfblue_style.css
https://ctalvio.github.io/Monochromic/jfpurple_style.css
https://ctalvio.github.io/Monochromic/bottom-progress_style.css
https://ctalvio.github.io/Monochromic/customcolor-advanced_style.css
https://ctalvio.github.io/Monochromic/improve-performance_style.css
https://ctalvio.github.io/Kaleidochromic/default_style.css
worker-src 'self' blob:; connect-src 'self'; object-src 'none'; frame-ancestors 'self'";
```
If you don't do this the theme will simply not load (reverts back to default theme) and the browser console will spit out an error. Even if you paste in all the CSS, the font will still not load since it is loaded from an external source.
Thanks to [LickABrick](https://github.com/LickABrick) for discovering this, and submitting instructions on how to fix.
================================================
FILE: backdrop-hack_style.css
================================================
.layout-mobile .detailPageWrapperContainer {
margin-top: 0em;
z-index: 0;
}
.layout-mobile .detailPagePrimaryContainer {
z-index: -1;
}
.layout-mobile .primaryImageWrapper {
-webkit-flex: 0 0 auto;
flex: 0 0 auto;
}
.layout-mobile .mainDetailButtons {
background: rgba(0, 0, 0, 0.2);
z-index: 1;
margin-left: -.5em;
margin-right: -.5em;
}
.layout-mobile .infoText {
z-index: 1;
}
.layout-mobile .primaryImageWrapper > img {
min-width: 100vw;
min-height: 100vh;
position: fixed;
left: 0;
top: 0;
filter: blur(20px) saturate(190%) contrast(140%) brightness(25%);
}
================================================
FILE: bottom-progress_style.css
================================================
:root {--accent: 255, 255, 255;}
.itemProgressBar {
height: 5px;
background: rgba(0,0,0,.5);
}
.playbackProgress>div, .itemProgressBarForeground {
background-color: rgba(var(--accent), 0.75) !important;
}
.transcodingProgress>div {
background-color: rgba(var(--accent), 0.35) !important;
}
================================================
FILE: customcolor-advanced_style.css
================================================
.raised:hover,
.fab:hover,
a[data-role="button"]:hover {
background: rgba(var(--accent),0.5) !important;
}
.subtitleappearance-preview {
background: linear-gradient(140deg,rgb(var(--accent)),#111) !important;
}
.navMenuOption-selected {
color: rgba(var(--accent));
}
.mdl-slider-background-lower {
background-color: rgba(var(--accent));
}
.playbackProgress>div {
background-color: rgba(var(--accent),0.75);
}
progress::-moz-progress-bar {
background-color: rgba(var(--accent),0.75);
}
progress::-webkit-progress-value {
background-color: rgba(var(--accent),0.75);
}
.taskProgressInner {
background: rgba(var(--accent),0.75) !important;
}
.transcodingProgress>div,
.itemProgressBarForeground {
background-color: rgba(var(--accent),0.35);
}
.mdl-slider-background-lower {
background-color: rgb(var(--accent));
}
.mdl-slider::-moz-range-thumb {
background: rgb(var(--accent));
}
.mdl-slider::-ms-thumb {
background: rgb(var(--accent));
}
.mdl-slider::-webkit-slider-thumb {
background: rgb(var(--accent));
}
.iconOsdProgressInner {
background: rgb(var(--accent));
}
.paper-icon-button-light:hover,
.raised.homeLibraryButton:hover,
.button-flat:hover,
.playstatebutton-icon-played,
.ratingbutton-icon-withrating,
.paper-icon-button-light:hover:not(:disabled),
.emby-tab-button:hover,
.selectLabelFocused,
.inputLabelFocused,
.textareaLabelFocused,
.buttonActive,
.button-link {
color: rgba(var(--accent)) !important;
}
#itemDetailPage .button-link {color: inherit !important;}
.navMenuOption:hover,
.actionSheetMenuItem:hover {
background-color: rgba(var(--accent),0.5) !important;
}
.emby-checkbox:checked + span + .checkboxOutline,
.emby-textarea:focus,
.emby-select-withcolor:focus,
.emby-input:focus,
.itemSelectionPanel {
border: 0.01em solid rgba(var(--accent),0.5) !important;
}
.upNextDialog-countdownText {
color: rgba(var(--accent));
}
.mdl-spinner__layer-1 {
border-color: rgba(var(--accent));
}
.mdl-switch__input:checked + .mdl-switch__label + .mdl-switch__trackContainer > .mdl-switch__track {
background: rgba(var(--accent), 0.5);
}
.mdl-switch__input:checked + .mdl-switch__label + .mdl-switch__trackContainer > .mdl-switch__thumb {
background: rgba(var(--accent));
}
::-webkit-scrollbar-thumb {
background: rgba(var(--accent),0.8) !important;
}
* {
scrollbar-color: rgba(var(--accent),0.8) #0000 !important;
}
/* Syncplay theming*/
.syncPlayIconCircle {
color: rgba(var(--accent),1) !important;
text-shadow: none !important;
}
================================================
FILE: customcolor_style.css
================================================
.raised:hover, .fab:hover {
background: var(--hoveraccent) !important;
}
.navMenuOption-selected {
color: var(--accent);
}
.mdl-slider-background-lower {
background-color: var(--accent);
}
.itemProgressBarForeground {
background: var(--hoveraccent) !important;
}
div[data-role="controlgroup"] a.ui-btn-active,
.iconOsdProgressInner,
.mdl-slider::-moz-range-thumb {
background: var(--accent) !important;
}
.paper-icon-button-light:hover,
.raised.homeLibraryButton:hover,
.button-flat:hover,
.playstatebutton-icon-played,
.ratingbutton-icon-withrating,
.paper-icon-button-light:hover:not(:disabled),
.emby-tab-button:hover,
.selectLabelFocused,
.inputLabelFocused,
.textareaLabelFocused {
color: var(--accent) !important;
}
.navMenuOption:hover,
.actionSheetMenuItem:hover {
background-color: var(--hoveraccent) !important;
}
.emby-checkbox:checked + span + .checkboxOutline,
.emby-textarea:focus,
.emby-select-withcolor:focus,
.emby-input:focus,
.itemSelectionPanel {
border: 0.01em solid var(--hoveraccent) !important;
}
.mdl-spinner__layer-1 {border-color: var(--accent);}
================================================
FILE: default_style.css
================================================
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap'); body, h1, h2, h3, h4 {
font-family: 'Quicksand', sans-serif;
}
:root {--rounding: 5px;}
/*Narrow margins, theme main page*/
.cardBox-bottompadded {
margin-bottom: 0.6em !important;
}
.itemsContainer > .card > .cardBox {
margin-right: 0.8em;
}
.raised.homeLibraryButton {
background: rgba(0, 0, 0, 0.3) !important;
}
.raised.homeLibraryButton:hover {
background: rgba(0, 0, 0, 0.5) !important;
}
.raised.homeLibraryButton:hover {transition: filter 0.2s}
.raised.homeLibraryButton {transition: filter 0.2s}
.homeLibraryButton {
min-width: 12em;
margin: 0.4em;
}
/*Blur backdrops, feel free to edit the intensity of the blur/saturation/dimming*/
.backdropImage {
filter: blur(60px) saturate(200%) contrast(160%) brightness(25%);
}
.backgroundContainer.withBackdrop {
background-color: rgba(0,0,0,0);
}
/*Shrink and square (or round) cast thumnails*/
@media all and (min-width: 131.25em){
#castContent .card.overflowPortraitCard {
width: 6.3vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 120em) and (max-width: 131.25em){
#castContent .card.overflowPortraitCard {
width: 6.4vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 100em) and (max-width: 120em){
#castContent .card.overflowPortraitCard {
width: 7.6vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 87.5em) and (max-width: 100em){
#castContent .card.overflowPortraitCard {
width: 9.3vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 75em) and (max-width: 87.5em){
#castContent .card.overflowPortraitCard {
width: 10.5vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 50em) and (max-width: 75em){
#castContent .card.overflowPortraitCard {
width: 15vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 43.75em) and (max-width: 50em){
#castContent .card.overflowPortraitCard {
width: 20.1vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 25em) and (max-width: 43.75em){
#castContent .card.overflowPortraitCard {
width: 31.2vw !important;
font-size: 90% !important;
}
}
@media all and (max-width: 25em){
#castContent .card.overflowPortraitCard {
width: 40vw !important;
font-size: 90% !important;
}
}
.cardPadder {
background-color: #0000 !important; box-shadow: none !important;
}
/*Correct image aspect ratio behaviour, set border-radius to zero for square tiles*/
@media all and (min-width: 131.25em){
#castContent .cardScalable {
width: calc(6.3vw - 0.6em) !important;
height: calc(6.3vw - 0.6em) !important;
}
}
@media all and (min-width: 120em) and (max-width: 131.25em){
#castContent .cardScalable {
width: calc(6.4vw - 0.6em) !important;
height: calc(6.4vw - 0.6em) !important;
}
}
@media all and (min-width: 100em) and (max-width: 120em){
#castContent .cardScalable {
width: calc(7.6vw - 0.6em) !important;
height: calc(7.6vw - 0.6em) !important;
}
}
@media all and (min-width: 87.5em) and (max-width: 100em){
#castContent .cardScalable {
width: calc(9.3vw - 0.6em) !important;
height: calc(9.3vw - 0.6em) !important;
}
}
@media all and (min-width: 75em) and (max-width: 87.5em){
#castContent .cardScalable {
width: calc(10.5vw - 0.6em) !important;
height: calc(10.5vw - 0.6em) !important;
}
}
@media all and (min-width: 50em) and (max-width: 75em){
#castContent .cardScalable {
width: calc(15vw - 0.6em) !important;
height: calc(15vw - 0.6em) !important;
}
}
@media all and (min-width: 43.75em) and (max-width: 50em){
#castContent .cardScalable {
width: calc(20.1vw - 0.6em) !important;
height: calc(20.1vw - 0.6em) !important;
}
}
@media all and (min-width: 25em) and (max-width: 43.75em){
#castContent .cardScalable {
width: calc(31.2vw - 0.6em) !important;
height: calc(31.2vw - 0.6em) !important;
}
}
@media all and (max-width: 25em){
#castContent .cardScalable {
width: calc(40vw - 0.6em) !important;
height: calc(40vw - 0.6em) !important;
}
}
/*Tweak series/movie/album title screen*/
.detailImageContainer .card {
position:fixed;
}
.mainDetailButtons {
font-size: 120%;
}
@media all and (max-width: 100em){
.mainDetailButtons {
font-size: 155%;
}
}
.detailSectionContent {
max-width: 66em;
}
.trackSelections {
max-width: 22em;
}
.detailLogo {
display: none;
}
.detailPagePrimaryContainer {
background: rgba(0,0,0,0) !important;
}
@media all and (min-width: 32em){
.itemBackdrop {
display: none;
}
.layout-desktop .detailRibbon {
margin-top: 13vh;
}
}
/*Change backdrop behaviour on mobile pre-10.7.0*/
@media all and (max-width: 32em) {
.itemBackdrop {
width: 100vw!important;
height: 100vh!important;
position: fixed;
}
.detailPageWrapperContainer {
margin-top: 5em;
}
.itemBackdrop {
filter: blur(45px) saturate(200%) contrast(160%) brightness(25%);
}
}
/*Accommodate ultrawide aspect ratios*/
@media (min-aspect-ratio: 1.98/1) {
.detailImageContainer .card {
width: 21vw;
}
.detailPagePrimaryContainer {
padding-left: 28.45vw !important;
}
.detailPageContent {
padding-left: 28.45vw;
}
}
@media (min-aspect-ratio: 2.7/1) {
.detailImageContainer .card {
width: 16vw;
}
.detailPagePrimaryContainer {
padding-left: 23.45vw !important;
}
.detailPageContent {
padding-left: 23.45vw;
}
}
/*Size episode preview images in a more compact way*/
.listItem:hover {
transition: 0.2s; background: rgba(0, 0, 0, 0.4);
}
.listItemImage.listItemImage-large.itemAction.lazy {
transition: filter 0.2s
}
.listItemImageButton-icon {
padding: 0;
}
.secondary.listItem-overview.listItemBodyText {
height: 61px;
margin: 0;
}
.listItemImageButton {
margin: auto;
font-size: 1.6em !important;
}
@media all and (min-width: 100em){
.listItemImage.listItemImage-large.itemAction.lazy {
height: 110px;
}
.listItem-content {
height: 115px;
}
.secondary.listItem-overview.listItemBodyText {
height: 4em;
margin: 0;
}
}
@media all and (max-width: 100em){
.listItemImage.listItemImage-large.itemAction.lazy {height: 80px;}
.listItem-content {height: 85px;}
.secondary.listItem-overview.listItemBodyText {height: 2.5em; margin: 0;}
}
.missingIndicator, .unairedIndicator {
background: #ae3030eb;
padding: .3em .6em;
border-radius: var(--rounding);
color: #fff;
}
/*Banner transparency*/
#dashboardPage,
#dashboardGeneralPage,
#userProfilesPage,
#devicesPage,
#serverActivityPage,
#liveTvStatusPage,
#liveTvSettingsPage,
#networkingPage,
#apiKeysPage,
#logPage,
#notificationSettingsPage,
#scheduledTasksPage,
#itemDetailPage {
mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 60px, rgb(0, 0, 0) 90px);
-webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 60px, rgb(0, 0, 0) 90px);
overflow: scroll;
}
@media all and (min-width: 100em){
#indexPage,
#moviesPage,
#tvRecommendedPage,
#musicRecommendedPage {
mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 70px, rgb(0, 0, 0) 120px);
-webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 70px, rgb(0, 0, 0) 120px);
overflow: scroll;
}
#encodingSettingsPage,
#mediaLibraryPage,
#dlnaSettingsPage,
#pluginsPage {
mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 60px, rgb(0, 0, 0) 90px);
-webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 60px, rgb(0, 0, 0) 90px);
overflow: scroll;
}
}
@media all and (max-width: 100em){
#indexPage,
#moviesPage,
#tvRecommendedPage,
#encodingSettingsPage,
#mediaLibraryPage,
#dlnaSettingsPage,
#pluginsPage,
#musicRecommendedPage {
mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 100px, rgb(0, 0, 0) 130px);
-webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 100px, rgb(0, 0, 0) 135px);
overflow: scroll;
margin-top: 30px;
}
}
@media all and (max-width: 100em){
#indexPage,
#moviesPage,
#tvRecommendedPage,
#encodingSettingsPage,
#mediaLibraryPage,
#dlnaSettingsPage,
#pluginsPage,
#musicRecommendedPage {
mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 100px, rgb(0, 0, 0) 130px);
-webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 100px, rgb(0, 0, 0) 130px);
overflow: scroll;
margin-top: 20px;
}
}
/*Top "task bar" make transparent and enlarge text*/
.skinHeader {
background: none !important;
background-color: rgba(0, 0, 0, 0) !important;
}
.headerTabs.sectionTabs {
text-size-adjust: 110%;
font-size: 110%;
}
.pageTitle {
margin-top: auto;
margin-bottom: auto;
}
.emby-tab-button {
padding: 1.75em 1.7em;
}
/*Narrow the login form, size according to display size (bigger on mobile)*/
#loginPage .readOnlyContent,
#loginPage form {
max-width: 22em;
}
/*Hide "please login" text, margin is to prevent login form moving too far up*/
#loginPage h1 {
display: none
}
#loginPage .padded-left.padded-right.padded-bottom-page {
margin-top: 50px
}
/*Hide "manual" and "forgot" buttons}*/
#loginPage .raised.cancel.block.btnForgotPassword.emby-button {
display: none
}
/*Login background*/
#loginPage {
background: url(https://i.imgur.com/9vL4iNf.png) !important;
background-size: cover !important;
}
/*Make watched icon, footer on chapter thumnails (and other things), and count indicator dark and transparent*/
.innerCardFooter,
.countIndicator,
.playedIndicator {
background: rgba(0,0,0,0.4);
box-shadow: none;
}
.countIndicator {
box-shadow: none;
}
/*Rounded corners on pretty much everything*/
.formDialogHeader {
border-top-left-radius: var(--rounding);
border-top-right-radius: var(--rounding);
}
.formDialogFooter {
border-bottom-left-radius: var(--rounding);
border-bottom-right-radius: var(--rounding);
}
.cardOverlayContainer {
border-radius: var(--rounding) !important;
}
.primaryImageWrapper > img,
.toast,
.paperList,
.cardContent,
.sessionNowPlayingInnerContent,
.listItem:hover,
.cardImage,
.fab,
.raised,
.multiSelectCheckboxOutline,
.itemSelectionPanel,
.cardContent-button,
.cardContent-shadow,
.itemDetailImage,
.cardOverlayButton-hover,
.cardImageContainer,
.cardPadder,
.listItemImage,
.listItemImageButton,
.listItemButton,
.headerButton,
.paper-icon-button-light,
.innerCardFooter,
.blurhash-canvas,
.dialog,
.countIndicator,
.playedIndicator,
.listItemIcon,
.listItem-border,
.button-flat,
.visualCardBox,
.checkboxOutline,
.emby-select-withcolor,
.chapterThumbTextContainer,
.chapterThumbContainer,
.chapterThumb,
.emby-input,
.emby-textarea,
.emby-select-withcolor,
.nowPlayingPageImage,
.upNextDialog-poster-img,
.upNextContainer,
.cardOverlayButtonIcon {
border-radius: var(--rounding) !important;
}
.osdPoster img {
border-radius: var(--rounding); border: none;
}
.mdl-slider::-moz-range-thumb {
border-radius: var(--rounding);
}
.mdl-slider::-ms-thumb {
border-radius: var(--rounding);
}
.mdl-slider::-webkit-slider-thumb {
border-radius: var(--rounding);
}
div[data-role="controlgroup"] a[data-role="button"]:first-child {
border-bottom-left-radius: var(--rounding);
border-top-left-radius: var(--rounding);
}
div[data-role="controlgroup"] a[data-role="button"]:last-child {
border-bottom-right-radius: var(--rounding);
border-top-right-radius: var(--rounding);
}
#dashboardPage .cardContent, #dashboardPage .sessionNowPlayingInnerContent {
border-radius: var(--rounding) var(--rounding) 0 0 !important;
}
#divVirtualFolders .cardImageContainer, #divVirtualFolders .cardContent {
border-radius: var(--rounding) var(--rounding) 0 0 !important;
}
#userProfilesPage .cardImage, #userProfilesPage .cardContent {
border-radius: var(--rounding) var(--rounding) 0 0 !important;
}
/*Homepage modifications, transparent footerplayer and fixed sectiontitles*/
.appfooter {
background: rgba(0,0,0,0.9);
}
/*Modify subtitle settings page*/
.subtitleappearance-preview {
background: linear-gradient(140deg,#444,#111) !important;
}
/*Fix weird shevron off centering*/
.layout-mobile :not(.sectionTitleContainer-cards)>.sectionTitle-cards {
padding-top:0em;
}
.sectionTitle {
margin-left: .4em !important;
margin-top: .2em !important;
margin-bottom: .2em !important;
}
.sectionTitleTextButton > .material-icons {
margin: 0;
}
.layout-mobile .sectionTitleTextButton > .material-icons {
padding-top: .2em;
}
/*Fix the UI shifting around*/
.nowPlayingBarCurrentTime {
width: 6em;
}
.osdTextContainer {
margin: 0 !important;
margin-top: 0.2em !important;
padding-left: 0.5em !important;
padding-right: 0.5em !important;
}
/*Fix top right user icon when using a profile image*/
.headerUserButtonRound {
border-radius: 50px !important;
}
/*Modified progress bar, play and item menu buttons*/
.innerCardFooter.fullInnerCardFooter.innerCardFooterClear {
border-radius: 0px !important;
background: rgba(0,0,0,0.7);
}
.itemProgressBar {
height: 2000em;
background: #0000;
}
.playbackProgress>div {
background-color: rgba(255,255,255,0.75);
}
.transcodingProgress>div, .itemProgressBarForeground {
background-color: rgba(255,255,255,0.3);
}
.innerCardFooter.fullInnerCardFooter.innerCardFooterClear {
border-radius: 0px !important;
background: rgba(0,0,0,0);
}
/*Accommodate mobile and set positions, I think*/
.cardIndicators,
.listItemIndicators {
right: 0.3em;
top: 0.3em;
}
@media all and (min-width: 70em){
.cardOverlayFab-primary {
background-color: #00000000;
}
.cardOverlayButtonIcon {
background-color: #00000000 !important;
}
.cardOverlayContainer {
background-color: rgba(0, 0, 0, 0.7);
}
}
@media all and (max-width: 70em){
.cardOverlayButtonIcon {
background-color: rgba(0, 0, 0, 0.5) !important;
}
.cardOverlayButton {
padding: 0.3em;
}
}
/*ANIMATIONS*/
/*Fade as images load*/
.blurhash-canvas {
transition: 0.2s;
}
.cardImageContainer {
transition: 0.7s;
}
/*Hover background for buttons*/
.button-flat:hover {
background: rgba(0,0,0,0.4);
}
.button-flat {
padding: .5em !important;
margin: .2em !important;
}
/*Some themeing for the dashboard*/
#user_usage_report_table,
.detailTable {
background: rgba(0,0,0,.5);
border-radius: var(--rounding);
}
.detailTableBodyRow-shaded {
background: #0000 !important;
}
.infoBanner {
background: #101010;
}
.navMenuOptionText {
margin-top: 0;
}
.backgroundProgress > div {
background-color: #0000;
}
.visualCardBox, .cardImageContainer {
box-shadow: none;
}
.mdl-switch__input:checked + .mdl-switch__label + .mdl-switch__trackContainer > .mdl-switch__track {
background: rgba(120, 120, 120, 0.6);
}
.mdl-switch__input:checked + .mdl-switch__label + .mdl-switch__trackContainer > .mdl-switch__thumb {
background: white;
}
.dashboardSection h3 {
margin-left: 0.5em;
}
.sessionCardFooter {
border: none;
}
.paperList,
.visualCardBox {
background-color: rgba(0, 0, 0, 0.5);
}
.listItem-border {
border-color: rgba(255, 255, 255, 0) !important;
}
fieldset {
border: 1px solid rgba(40, 40, 40, 0.8);
border-radius: 0.4em;
}
/*Theme the library scan progress bar*/
progress {
background: rgba(0, 0, 0, 0.5) !important;
border-radius: var(--rounding);
border: 1px solid rgba(255, 255, 255, 0.22);
}
progress::-webkit-progress-bar {
background: rgba(0, 0, 0, 0.5) !important;
border-radius: var(--rounding);
border: 0px solid rgba(255, 255, 255, 0.22);
}
progress::-moz-progress-bar {
background-color: rgba(255,255,255,0.75);
border-radius: var(--rounding);
}
progress::-webkit-progress-value {
background-color: rgba(255,255,255,0.75);
border-radius: var(--rounding);
}
#divRunningTasks span {
color: rgba(255,255,255,0.75) !important;
}
.taskProgressOuter,
.taskProgressInner {
border-radius: var(--rounding) !important;
}
.taskProgressOuter {
background: rgba(0, 0, 0, 0.5) !important;
border: 1px solid rgba(255, 255, 255, 0.22);
}
.taskProgressInner {
background: rgba(255,255,255,0.75) !important;
}
#scheduledTasksPage span {
color: rgba(255,255,255,0.75) !important;
}
/*Shrink the mouseover chapter image when scrobbling*/
.chapterThumb {
height: 14vh;
min-width: 14vh;
}
.chapterThumbText {
font-size: 1em;
}
.sliderBubble {
background: #0000;
}
/*Color theming*/
/*Theme process progress ring*/
.progressring-spiner {
border-color: rgba(var(--accent));
border-width: .35em;
}
.progressring {
margin: .4em;
}
.progressring-bg {
display: none;
}
/*Affects blurhash to remove the saturated colors to fit overall look*/
.blurhash-canvas {
filter: opacity(60%) saturate(60%);
}
/*Theme user setting tab buttons*/
div[data-role="controlgroup"] a.ui-btn-active {
background: rgba(0, 0, 0, 0.5) !important;
color: white !important;
}
a[data-role="button"]:hover {
background: rgba(80, 80, 80, 0.8) !important;
}
div[data-role=controlgroup] a[data-role=button]+a[data-role=button] {
margin: 0 !important;
}
/*Rating star, normally yellow*/
.starIcon {
color: rgba(255,255,255,.8);
}
/*Theme media player*/
.startTimeText, .endTimeText {
width: 3.4em;
display: block;
text-align: center;
}
.osdTitle {
margin-left: 0.5em;
}
.mdl-slider-background-lower {
background-color: rgb(255, 255, 255);
}
.mdl-slider::-moz-range-thumb {
background: rgb(255, 255, 255);
}
.mdl-slider::-ms-thumb {
background: rgb(255, 255, 255);
}
.mdl-slider::-webkit-slider-thumb {
background: rgb(255, 255, 255);
}
.iconOsdProgressInner {
background: rgb(255, 255, 255);
}
.videoOsdBottom {
background: rgba(0,0,0,.7);
padding-top: 1em;
}
.skinHeader-withBackground.osdHeader {
background: rgba(0,0,0,.7) !important;
height: 5em;
}
.nowPlayingPageImage {
border: none;
}
.upNextDialog-countdownText {
color: white;
}
/*Theme syncplay*/
.syncPlayIconCircle {
color: rgba(255,255,255,1) !important;
text-shadow: none !important;
}
@-webkit-keyframes pulse {
0% {
-webkit-transform:scale(.95);
transform:scale(.95);
color:rgba(0,0,0,.7);
background:rgba(0,0,0,.3);
box-shadow:0 0 0 0 rgba(0,0,0,.3)
}
70% {
-webkit-transform:scale(1);
transform:scale(1);
color:rgba(0,0,0,.6);
background:rgba(0,0,0,0);
box-shadow:0 0 0 60px rgba(0,0,0,0)
}
to {
-webkit-transform:scale(.95);
transform:scale(.95);
color:rgba(0,0,0,.7);
background:rgba(0,0,0,.3);
box-shadow:0 0 0 0 rgba(0,0,0,0)
}
}
@keyframes pulse {
0% {
-webkit-transform:scale(.95);
transform:scale(.95);
color:rgba(0,0,0,.7);
background:rgba(0,0,0,.3);
box-shadow:0 0 0 0 rgba(0,0,0,.3)
}
70% {
-webkit-transform:scale(1);
transform:scale(1);
color:rgba(0,0,0,.6);
background:rgba(0,0,0,0);
box-shadow:0 0 0 60px rgba(0,0,0,0)
}
to {
-webkit-transform:scale(.95);
transform:scale(.95);
color:rgba(0,0,0,.7);
background:rgba(0,0,0,.3);
box-shadow:0 0 0 0 rgba(0,0,0,0)
}
}
@-webkit-keyframes infinite-pulse {
0% {
-webkit-transform:scale(.95);
transform:scale(.95);
color:rgba(0,0,0,.7);
background:rgba(0,0,0,.3);
box-shadow:0 0 0 0 rgba(0,0,0,.3)
}
70% {
-webkit-transform:scale(1);
transform:scale(1);
color:rgba(0,0,0,.6);
background:rgba(0,0,0,0);
box-shadow:0 0 0 60px rgba(0,0,0,0)
}
to {
-webkit-transform:scale(.95);
transform:scale(.95);
color:rgba(0,0,0,.7);
background:rgba(0,0,0,.3);
box-shadow:0 0 0 0 rgba(0,0,0,0)
}
}
@keyframes infinite-pulse {
0% {
-webkit-transform:scale(.95);
transform:scale(.95);
color:rgba(0,0,0,.7);
background:rgba(0,0,0,.3);
box-shadow:0 0 0 0 rgba(0,0,0,.3)
}
70% {
-webkit-transform:scale(1);
transform:scale(1);
color:rgba(0,0,0,.6);
background:rgba(0,0,0,0);
box-shadow:0 0 0 60px rgba(0,0,0,0)
}
to {
-webkit-transform:scale(.95);
transform:scale(.95);
color:rgba(0,0,0,.7);
background:rgba(0,0,0,.3);
box-shadow:0 0 0 0 rgba(0,0,0,0)
}
}
/*Theme buttons and cards*/
.navMenuOption-selected,
.selectionCommandsPanel {
background: #101010 !important;
}
.paper-icon-button-light:hover,
.raised.homeLibraryButton:hover,
.button-flat:hover,
.playstatebutton-icon-played,
.ratingbutton-icon-withrating,
.paper-icon-button-light:hover:not(:disabled),
.emby-tab-button:hover,
.selectLabelFocused,
.inputLabelFocused,
.textareaLabelFocused,
.buttonActive,
.button-link{
color: rgba(120, 120, 120, 0.6) !important;
}
#itemDetailPage .button-link {color: inherit !important;}
.listItemIcon {
background: #0000 !important;
}
.raised,
.fab,
a[data-role="button"] {
background: rgba(40, 40, 40, 0.8) !important;
transition: all 0.2s !important;
}
.paper-icon-button-light:hover {
background-color: rgba(0, 0, 0, 0.4) !important;
}
.raised:hover,
.fab:hover,
.navMenuOption:hover,
.actionSheetMenuItem:hover {
background: rgba(80, 80, 80, 0.8) !important;
}
/*Theme dialogues, drop downs, toast*/
.dialog,
.toast {
background-color: rgba(0, 0, 0, 0.8);
}
.actionSheetMenuItem:hover {
background-color: rgba(0, 164, 220, 0.2);
}
.mainDrawer {
background-color: rgba(0, 0, 0, 0.8);
}
.navMenuOption:hover {
background: rgba(0, 164, 220, 0.2);
}
.formDialogHeader, .formDialogFooter {
background-color: #101010 !important;
}
.formDialogHeader.formDialogHeader-clear.justify-content-center,
.formDialogFooter.formDialogFooter-clear.formDialogFooter-flex,
.collapseContent {
background-color: #0000 !important;
}
/*Improve some menu alignments*/
.formDialogContent {
margin-bottom: 6.2em;
}
.dialogContentInner {
padding: .5em 1em 1em;
padding-right: 1em;
padding-left: 1em;
}
.listItem-indexnumberleft {
margin: 1em;
}
.listItem {
padding-left: 1em;
}
/*Tweak entry fields, checkamarks*/
.emby-input,
.emby-textarea {
padding: .4em .55em;
}
.emby-select {
padding: .35em 1.9em .35em .35em;
}
.selectArrow {
margin-top: 1.05em;
}
.checkboxOutline,
.emby-input,
.emby-textarea,
.emby-select-withcolor {
background: rgba(0, 0, 0, 0.2);
border: 0.01em solid rgba(255, 255, 255, 0.22);
}
.emby-input:focus,
.emby-textarea:focus,
.emby-select-withcolor:focus {
background: rgba(0, 0, 0, 0.5) !important;
}
.emby-textarea:focus,
.emby-select-withcolor:focus,
.emby-input:focus,
.itemSelectionPanel {
border: 0.01em solid rgba(40, 40, 40, 0.8) !important;
}
.emby-checkbox:checked + span + .checkboxOutline {
background-color: rgba(20, 20, 20, 0.8) !important;
border: 0.01em solid rgba(255, 255, 255, 0.22) !important;
}
/*Colors for loading spinner, placeholders, scroll bars*/
.mdl-spinner__layer-1 {border-color: rgba(255, 255, 255, 1);}
.mdl-spinner__layer-2 {border-color: rgba(128, 128, 128, 1);}
.mdl-spinner__layer-3 {border-color: rgba(40, 40, 40, 1);}
.mdl-spinner__layer-4 {border-color: rgba(0, 0, 0, 1);}
::-webkit-scrollbar-track-piece {
background-color: #0000;
}
::-webkit-scrollbar-corner {
background-color: #0000;
}
::-webkit-scrollbar-thumb {
background: rgba(120,120,120,0.6) !important;
border-radius: var(--rounding);
}
* {
scrollbar-color: rgba(120,120,120,0.6) #0000 !important;
}
.defaultCardBackground1 {
background-color: #0a0a0a;
}
.defaultCardBackground2 {
background-color: #141414;
}
.defaultCardBackground3 {
background-color: #212121;
}
.defaultCardBackground4 {
background-color: #333333;
}
.defaultCardBackground5 {
background-color: #666666;
}
================================================
FILE: improve-performance_style.css
================================================
/*Achieves similar effect without use of mask-image, foregoing the cool fade effect*/
#dashboardPage,
#dashboardGeneralPage,
#userProfilesPage,
#devicesPage,
#serverActivityPage,
#liveTvStatusPage,
#liveTvSettingsPage,
#networkingPage,
#apiKeysPage,
#logPage,
#notificationSettingsPage,
#scheduledTasksPage,
#itemDetailPage,
#userImagePage,
#displayPreferencesPage,
#homeScreenPreferencesPage,
#languagePreferencesPage,
#quickConnectPreferencesPage {
margin-top: 60px;
padding-top: 0px !important;
overflow: scroll;
}
@media all and (min-width: 100em){
#indexPage,
#moviesPage,
#tvRecommendedPage,
#musicRecommendedPage {
margin-top: 70px;
padding-top: 0px !important;
overflow: scroll;
}
#encodingSettingsPage,
#mediaLibraryPage,
#dlnaSettingsPage,
#pluginsPage {
margin-top: 60px;
padding-top: 0px !important;
overflow: scroll;
}
}
@media all and (max-width: 100em){
#indexPage,
#moviesPage,
#tvRecommendedPage,
#encodingSettingsPage,
#mediaLibraryPage,
#dlnaSettingsPage,
#pluginsPage,
#musicRecommendedPage {
margin-top: 130px;
padding-top: 0px !important;
overflow: scroll;
}
}
#dashboardPage,
#dashboardGeneralPage,
#userProfilesPage,
#devicesPage,
#serverActivityPage,
#liveTvStatusPage,
#liveTvSettingsPage,
#networkingPage,
#apiKeysPage,
#logPage,
#notificationSettingsPage,
#scheduledTasksPage,
#itemDetailPage,
#indexPage,
#moviesPage,
#tvRecommendedPage,
#encodingSettingsPage,
#mediaLibraryPage,
#dlnaSettingsPage,
#pluginsPage,
#musicRecommendedPage {
mask-image: none;
-webkit-mask-image: none;
}
================================================
FILE: jfblue_style.css
================================================
@import url('https://ctalvio.github.io/Monochromic/customcolor-advanced_style.css');
:root {--accent: 0, 164, 220;}
================================================
FILE: jfpurple_style.css
================================================
@import url('https://ctalvio.github.io/Monochromic/customcolor-advanced_style.css');
:root {--accent: 98, 121, 205;}
================================================
FILE: sharp_style.css
================================================
:root {--rounding: 0px;}
================================================
FILE: test_style.css
================================================
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap'); body, h1, h2, h3, h4 {
font-family: 'Quicksand', sans-serif;
}
:root {--rounding: 5px;}
/*Narrow margins, theme main page*/
.cardBox-bottompadded {
margin-bottom: 0.6em !important;
}
.itemsContainer > .card > .cardBox {
margin-right: 0.8em;
}
.raised.homeLibraryButton {
background: rgba(0, 0, 0, 0.3) !important;
}
.raised.homeLibraryButton:hover {
background: rgba(0, 0, 0, 0.5) !important;
}
.raised.homeLibraryButton:hover {transition: filter 0.2s}
.raised.homeLibraryButton {transition: filter 0.2s}
.homeLibraryButton {
min-width: 12em;
margin: 0.4em;
}
/*Blur backdrops, feel free to edit the intensity of the blur/saturation/dimming*/
.backdropImage {
filter: blur(60px) saturate(200%) contrast(160%) brightness(25%);
}
.backgroundContainer.withBackdrop {
background-color: rgba(0,0,0,0);
}
/*Shrink and square (or round) cast thumnails*/
@media all and (min-width: 131.25em){
#castContent .card.overflowPortraitCard {
width: 6.3vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 120em) and (max-width: 131.25em){
#castContent .card.overflowPortraitCard {
width: 6.4vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 100em) and (max-width: 120em){
#castContent .card.overflowPortraitCard {
width: 7.6vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 87.5em) and (max-width: 100em){
#castContent .card.overflowPortraitCard {
width: 9.3vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 75em) and (max-width: 87.5em){
#castContent .card.overflowPortraitCard {
width: 10.5vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 50em) and (max-width: 75em){
#castContent .card.overflowPortraitCard {
width: 15vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 43.75em) and (max-width: 50em){
#castContent .card.overflowPortraitCard {
width: 20.1vw !important;
font-size: 90% !important;
}
}
@media all and (min-width: 25em) and (max-width: 43.75em){
#castContent .card.overflowPortraitCard {
width: 31.2vw !important;
font-size: 90% !important;
}
}
@media all and (max-width: 25em){
#castContent .card.overflowPortraitCard {
width: 40vw !important;
font-size: 90% !important;
}
}
.cardPadder {
background-color: #0000 !important; box-shadow: none !important;
}
/*Correct image aspect ratio behaviour, set border-radius to zero for square tiles*/
@media all and (min-width: 131.25em){
#castContent .cardScalable {
width: calc(6.3vw - 0.6em) !important;
height: calc(6.3vw - 0.6em) !important;
}
}
@media all and (min-width: 120em) and (max-width: 131.25em){
#castContent .cardScalable {
width: calc(6.4vw - 0.6em) !important;
height: calc(6.4vw - 0.6em) !important;
}
}
@media all and (min-width: 100em) and (max-width: 120em){
#castContent .cardScalable {
width: calc(7.6vw - 0.6em) !important;
height: calc(7.6vw - 0.6em) !important;
}
}
@media all and (min-width: 87.5em) and (max-width: 100em){
#castContent .cardScalable {
width: calc(9.3vw - 0.6em) !important;
height: calc(9.3vw - 0.6em) !important;
}
}
@media all and (min-width: 75em) and (max-width: 87.5em){
#castContent .cardScalable {
width: calc(10.5vw - 0.6em) !important;
height: calc(10.5vw - 0.6em) !important;
}
}
@media all and (min-width: 50em) and (max-width: 75em){
#castContent .cardScalable {
width: calc(15vw - 0.6em) !important;
height: calc(15vw - 0.6em) !important;
}
}
@media all and (min-width: 43.75em) and (max-width: 50em){
#castContent .cardScalable {
width: calc(20.1vw - 0.6em) !important;
height: calc(20.1vw - 0.6em) !important;
}
}
@media all and (min-width: 25em) and (max-width: 43.75em){
#castContent .cardScalable {
width: calc(31.2vw - 0.6em) !important;
height: calc(31.2vw - 0.6em) !important;
}
}
@media all and (max-width: 25em){
#castContent .cardScalable {
width: calc(40vw - 0.6em) !important;
height: calc(40vw - 0.6em) !important;
}
}
/*Tweak series/movie/album title screen*/
.detailImageContainer .card {
position:fixed;
}
.mainDetailButtons {
font-size: 120%;
}
@media all and (max-width: 100em){
.mainDetailButtons {
font-size: 155%;
}
}
.detailSectionContent {
max-width: 66em;
}
.trackSelections {
max-width: 22em;
}
.detailLogo {
display: none;
}
.detailPagePrimaryContainer {
background: rgba(0,0,0,0) !important;
}
/*Remove backdrop tweaks that no longer work for 10.7.0*/
/*Size episode preview images in a more compact way*/
.listItem:hover {
transition: 0.2s; background: rgba(0, 0, 0, 0.4);
}
.listItemImage.listItemImage-large.itemAction.lazy {
transition: filter 0.2s
}
.listItemImageButton-icon {
padding: 0;
}
.secondary.listItem-overview.listItemBodyText {
height: 61px;
margin: 0;
}
.listItemImageButton {
margin: auto;
font-size: 1.6em !important;
}
@media all and (min-width: 100em){
.listItemImage.listItemImage-large.itemAction.lazy {
height: 110px;
}
.listItem-content {
height: 115px;
}
.secondary.listItem-overview.listItemBodyText {
height: 4em;
margin: 0;
}
}
@media all and (max-width: 100em){
.listItemImage.listItemImage-large.itemAction.lazy {height: 80px;}
.listItem-content {height: 85px;}
.secondary.listItem-overview.listItemBodyText {height: 2.5em; margin: 0;}
}
/*Banner transparency*/
#dashboardPage,
#dashboardGeneralPage,
#userProfilesPage,
#devicesPage,
#serverActivityPage,
#liveTvStatusPage,
#liveTvSettingsPage,
#networkingPage,
#apiKeysPage,
#logPage,
#notificationSettingsPage,
#scheduledTasksPage,
#itemDetailPage {
mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 60px, rgb(0, 0, 0) 90px);
-webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 60px, rgb(0, 0, 0) 90px);
overflow: scroll;
}
@media all and (min-width: 100em){
#indexPage,
#moviesPage,
#tvRecommendedPage,
#musicRecommendedPage {
mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 70px, rgb(0, 0, 0) 120px);
-webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 70px, rgb(0, 0, 0) 120px);
overflow: scroll;
}
#encodingSettingsPage,
#mediaLibraryPage,
#dlnaSettingsPage,
#pluginsPage {
mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 60px, rgb(0, 0, 0) 90px);
-webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 60px, rgb(0, 0, 0) 90px);
overflow: scroll;
}
}
@media all and (max-width: 100em){
#indexPage,
#moviesPage,
#tvRecommendedPage,
#encodingSettingsPage,
#mediaLibraryPage,
#dlnaSettingsPage,
#pluginsPage,
#musicRecommendedPage {
mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 100px, rgb(0, 0, 0) 130px);
-webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 100px, rgb(0, 0, 0) 135px);
overflow: scroll;
margin-top: 30px;
}
}
@media all and (max-width: 100em){
#indexPage,
#moviesPage,
#tvRecommendedPage,
#encodingSettingsPage,
#mediaLibraryPage,
#dlnaSettingsPage,
#pluginsPage,
#musicRecommendedPage {
mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 100px, rgb(0, 0, 0) 130px);
-webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0, 0, 0, 0) 100px, rgb(0, 0, 0) 130px);
overflow: scroll;
margin-top: 20px;
}
}
/*Top "task bar" make transparent and enlarge text*/
.skinHeader {
background: none !important;
background-color: rgba(0, 0, 0, 0) !important;
}
.headerTabs.sectionTabs {
text-size-adjust: 110%;
font-size: 110%;
}
.pageTitle {
margin-top: auto;
margin-bottom: auto;
}
.emby-tab-button {
padding: 1.75em 1.7em;
}
/*Narrow the login form, size according to display size (bigger on mobile)*/
#loginPage .readOnlyContent,
#loginPage form {
max-width: 22em;
}
/*Hide "please login" text, margin is to prevent login form moving too far up*/
#loginPage h1 {
display: none
}
#loginPage .padded-left.padded-right.padded-bottom-page {
margin-top: 50px
}
/*Hide "manual" and "forgot" buttons}*/
#loginPage .raised.cancel.block.btnForgotPassword.emby-button {
display: none
}
/*Login background*/
#loginPage {
background: url(https://i.imgur.com/9vL4iNf.png) !important;
background-size: cover !important;
}
/*Make watched icon, footer on chapter thumnails (and other things), and count indicator dark and transparent*/
.innerCardFooter,
.countIndicator,
.playedIndicator {
background: rgba(0,0,0,0.4);
box-shadow: none;
}
.countIndicator {
box-shadow: none;
}
/*Rounded corners on pretty much everything*/
.formDialogHeader {
border-top-left-radius: var(--rounding);
border-top-right-radius: var(--rounding);
}
.formDialogFooter {
border-bottom-left-radius: var(--rounding);
border-bottom-right-radius: var(--rounding);
}
.cardOverlayContainer {
border-radius: var(--rounding) !important;
}
.primaryImageWrapper > img,
.toast,
.paperList,
.cardContent,
.sessionNowPlayingInnerContent,
.listItem:hover,
.cardImage,
.fab,
.raised,
.multiSelectCheckboxOutline,
.itemSelectionPanel,
.cardContent-button,
.cardContent-shadow,
.itemDetailImage,
.cardOverlayButton-hover,
.cardImageContainer,
.cardPadder,
.listItemImage,
.listItemImageButton,
.listItemButton,
.headerButton,
.paper-icon-button-light,
.innerCardFooter,
.blurhash-canvas,
.dialog,
.countIndicator,
.playedIndicator,
.listItemIcon,
.listItem-border,
.button-flat,
.visualCardBox,
.checkboxOutline,
.emby-select-withcolor,
.chapterThumbTextContainer,
.chapterThumbContainer,
.chapterThumb,
.emby-input,
.emby-textarea,
.emby-select-withcolor,
.nowPlayingPageImage,
.upNextDialog-poster-img,
.cardOverlayButtonIcon {
border-radius: var(--rounding) !important;
}
.osdPoster img {
border-radius: var(--rounding); border: none;
}
.mdl-slider::-moz-range-thumb {
border-radius: var(--rounding);
}
.mdl-slider::-ms-thumb {
border-radius: var(--rounding);
}
.mdl-slider::-webkit-slider-thumb {
border-radius: var(--rounding);
}
div[data-role="controlgroup"] a[data-role="button"]:first-child {
border-bottom-left-radius: var(--rounding);
border-top-left-radius: var(--rounding);
}
div[data-role="controlgroup"] a[data-role="button"]:last-child {
border-bottom-right-radius: var(--rounding);
border-top-right-radius: var(--rounding);
}
/*Homepage modifications, transparent footerplayer and fixed sectiontitles*/
.appfooter {
background: rgba(0,0,0,0.9);
}
/*Modify subtitle settings page*/
.subtitleappearance-preview {
background: linear-gradient(140deg,#444,#111) !important;
}
/*Fix weird shevron off centering*/
.layout-mobile :not(.sectionTitleContainer-cards)>.sectionTitle-cards {
padding-top:0em;
}
.sectionTitle {
margin-left: .4em !important;
margin-top: .2em !important;
margin-bottom: .2em !important;
}
/*For 10.7.0*/
.sectionTitleTextButton > .material-icons {
margin: 0 !important;
}
/*Fix the UI shifting around*/
.nowPlayingBarCurrentTime {
width: 6em;
}
/*Fix top right user icon when using a profile image*/
.headerUserButtonRound {
border-radius: 50px !important;
}
/*Modified progress bar, play and item menu buttons*/
.innerCardFooter.fullInnerCardFooter.innerCardFooterClear {
border-radius: 0px !important;
background: rgba(0,0,0,0.7);
}
.itemProgressBar {
height: 2000em;
background: #0000;
}
.playbackProgress>div {
background-color: rgba(255,255,255,0.75);
}
.transcodingProgress>div, .itemProgressBarForeground {
background-color: rgba(255,255,255,0.3);
}
.innerCardFooter.fullInnerCardFooter.innerCardFooterClear {
border-radius: 0px !important;
background: rgba(0,0,0,0);
}
/*Accommodate mobile and set positions, I think*/
.cardIndicators,
.listItemIndicators {
right: 0.3em;
top: 0.3em;
}
@media all and (min-width: 70em){
.cardOverlayFab-primary {
background-color: #00000000;
}
.cardOverlayButtonIcon {
background-color: #00000000 !important;
}
.cardOverlayContainer {
background-color: rgba(0, 0, 0, 0.7);
}
}
@media all and (max-width: 70em){
.cardOverlayButtonIcon {
background-color: rgba(0, 0, 0, 0.5) !important;
}
.cardOverlayButton {
padding: 0.3em;
}
}
/*ANIMATIONS*/
/*Fade as images load*/
.blurhash-canvas {
transition: 0.2s;
}
.cardImageContainer {
transition: 0.7s;
}
/*Hover background for buttons*/
.button-flat:hover {
background: rgba(0,0,0,0.4);
}
.button-flat {
padding: .5em !important;
margin: .2em !important;
}
/*Some themeing for the dashboard*/
.visualCardBox {
box-shadow: none;
}
.mdl-switch__input:checked + .mdl-switch__label + .mdl-switch__trackContainer > .mdl-switch__track {
background: rgba(120, 120, 120, 0.6);
}
.mdl-switch__input:checked + .mdl-switch__label + .mdl-switch__trackContainer > .mdl-switch__thumb {
background: white;
}
.dashboardSection h3 {
margin-left: 0.5em;
}
.sessionCardFooter {
border: none;
}
.paperList,
.visualCardBox {
background-color: rgba(0, 0, 0, 0.5);
}
.listItem-border {
border-color: rgba(255, 255, 255, 0) !important;
}
fieldset {
border: 1px solid rgba(40, 40, 40, 0.8);
border-radius: 0.4em;
}
/*Theme the library scan progress bar*/
progress {
background: rgba(0, 0, 0, 0.5) !important;
border-radius: var(--rounding);
border: 1px solid rgba(255, 255, 255, 0.22);
}
progress::-webkit-progress-bar {
background: rgba(0, 0, 0, 0.5) !important;
border-radius: var(--rounding);
border: 0px solid rgba(255, 255, 255, 0.22);
}
progress::-moz-progress-bar {
background-color: rgba(255,255,255,0.75);
border-radius: var(--rounding);
}
progress::-webkit-progress-value {
background-color: rgba(255,255,255,0.75);
border-radius: var(--rounding);
}
#divRunningTasks span {
color: rgba(255,255,255,0.75) !important;
}
.taskProgressOuter,
.taskProgressInner {
border-radius: var(--rounding) !important;
}
.taskProgressOuter {
background: rgba(0, 0, 0, 0.5) !important;
border: 1px solid rgba(255, 255, 255, 0.22);
}
.taskProgressInner {
background: rgba(255,255,255,0.75) !important;
}
#scheduledTasksPage span {
color: rgba(255,255,255,0.75) !important;
}
/*Shrink the mouseover chapter image when scrobbling*/
.chapterThumb {
height: 14vh;
min-width: 14vh;
}
.chapterThumbText {
font-size: 1em;
}
.sliderBubble {
background: #0000;
}
/*Color theming*/
/*Theme process progress ring*/
.progressring-spiner {
border-color: rgba(var(--accent));
border-width: .35em;
}
.progressring {
margin: .4em;
}
.progressring-bg {
display: none;
}
/*Affects blurhash to remove the saturated colors to fit overall look*/
.blurhash-canvas {
filter: opacity(60%) saturate(60%);
}
/*Theme user setting tab buttons*/
div[data-role="controlgroup"] a.ui-btn-active {
background: rgba(0, 0, 0, 0.5) !important;
color: white !important;
}
a[data-role="button"]:hover {
background: rgba(80, 80, 80, 0.8) !important;
}
div[data-role=controlgroup] a[data-role=button]+a[data-role=button] {
margin: 0 !important;
}
/*Rating star, normally yellow*/
.starIcon {
color: white;
}
/*Theme media player*/
.mdl-slider-background-lower {
background-color: rgb(255, 255, 255);
}
.mdl-slider::-moz-range-thumb {
background: rgb(255, 255, 255);
}
.mdl-slider::-ms-thumb {
background: rgb(255, 255, 255);
}
.mdl-slider::-webkit-slider-thumb {
background: rgb(255, 255, 255);
}
.iconOsdProgressInner {
background: rgb(255, 255, 255);
}
.osdHeader {
linear-gradient(180deg,rgba(16,16,16,.75),rgba(16,16,16,0));
}
.nowPlayingPageImage {
border: none;
}
.upNextDialog-countdownText {
color: rgba(120, 120, 120, 0.6);
}
/*Theme buttons and cards*/
.navMenuOption-selected,
.selectionCommandsPanel {
background: #101010 !important;
}
.paper-icon-button-light:hover,
.raised.homeLibraryButton:hover,
.button-flat:hover,
.playstatebutton-icon-played,
.ratingbutton-icon-withrating,
.paper-icon-button-light:hover:not(:disabled),
.emby-tab-button:hover,
.selectLabelFocused,
.inputLabelFocused,
.textareaLabelFocused,
.buttonActive,
.button-link{
color: rgba(120, 120, 120, 0.6) !important;
}
#itemDetailPage .button-link {color: inherit !important;}
.listItemIcon,
.cardImage,
.blurhashed {
background-color: #0000 !important;
}
.raised,
.fab,
a[data-role="button"] {
background: rgba(40, 40, 40, 0.8) !important;
transition: all 0.2s !important;
}
.paper-icon-button-light:hover {
background-color: rgba(0, 0, 0, 0.4) !important;
}
.raised:hover,
.fab:hover,
.navMenuOption:hover,
.actionSheetMenuItem:hover {
background: rgba(80, 80, 80, 0.8) !important;
}
/*Theme dialogues, drop downs, toast*/
.dialog,
.toast {
background-color: rgba(0, 0, 0, 0.8);
}
.actionSheetMenuItem:hover {
background-color: rgba(0, 164, 220, 0.2);
}
.mainDrawer {
background-color: rgba(0, 0, 0, 0.8);
}
.navMenuOption:hover {
background: rgba(0, 164, 220, 0.2);
}
.formDialogHeader, .formDialogFooter {
background-color: #101010 !important;
}
.formDialogHeader.formDialogHeader-clear.justify-content-center,
.formDialogFooter.formDialogFooter-clear.formDialogFooter-flex,
.collapseContent {
background-color: #0000 !important;
}
/*Improve some menu alignments*/
.formDialogContent {
margin-bottom: 6.2em;
}
.dialogContentInner {
padding: .5em 1em 1em;
padding-right: 1em;
padding-left: 1em;
}
.listItem-indexnumberleft {
margin: 1em;
}
.listItem {
padding-left: 1em;
}
/*Tweak entry fields, checkamarks*/
.selectContainer {
margin-right: 1em !important;
}
.checkboxOutline,
.emby-input,
.emby-textarea,
.emby-select-withcolor {
background: rgba(0, 0, 0, 0.2);
border: 0.01em solid rgba(255, 255, 255, 0.22);
}
.emby-input:focus,
.emby-textarea:focus,
.emby-select-withcolor:focus {
background: rgba(0, 0, 0, 0.5) !important;
}
.emby-textarea:focus,
.emby-select-withcolor:focus,
.emby-input:focus,
.itemSelectionPanel {
border: 0.01em solid rgba(40, 40, 40, 0.8) !important;
}
.emby-checkbox:checked + span + .checkboxOutline {
background-color: rgba(20, 20, 20, 0.8) !important;
border: 0.01em solid rgba(255, 255, 255, 0.22) !important;
}
/*Colors for loading spinner, placeholders, scroll bars*/
.mdl-spinner__layer-1 {border-color: rgba(255, 255, 255, 1);}
.mdl-spinner__layer-2 {border-color: rgba(128, 128, 128, 1);}
.mdl-spinner__layer-3 {border-color: rgba(40, 40, 40, 1);}
.mdl-spinner__layer-4 {border-color: rgba(0, 0, 0, 1);}
::-webkit-scrollbar-track-piece {
background-color: #0000;
}
::-webkit-scrollbar-corner {
background-color: #0000;
}
::-webkit-scrollbar-thumb {
background: rgba(120,120,120,0.6) !important;
border-radius: var(--rounding);
}
* {
scrollbar-color: rgba(120,120,120,0.6) #0000 !important;
}
.defaultCardBackground1 {
background-color: #0d0d0d80;
}
.defaultCardBackground2 {
background-color: #4d4d4d80;
}
.defaultCardBackground3 {
background-color: #1a1a1a80;
}
.defaultCardBackground4 {
background-color: #33333380;
}
.defaultCardBackground5 {
background-color: #66666680;
}
gitextract_9_ia0ml_/ ├── README.md ├── alternate-itempage_style.css ├── alternate_style.css ├── backdrop-hack_style.css ├── bottom-progress_style.css ├── customcolor-advanced_style.css ├── customcolor_style.css ├── default_style.css ├── improve-performance_style.css ├── jfblue_style.css ├── jfpurple_style.css ├── sharp_style.css └── test_style.css
Condensed preview — 13 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (64K chars).
[
{
"path": "README.md",
"chars": 5771,
"preview": "# Monochromic - deprecated\n### Superseded by the new [Ultrachromic](https://github.com/CTalvio/Ultrachromic) theme\n\nA cu"
},
{
"path": "alternate-itempage_style.css",
"chars": 352,
"preview": "/*Alternate itempage*/\n.itemBackdrop {\n height: 31vh !important;\n display: inherit;\n}\n.layout-desktop .detailRibbon {\n"
},
{
"path": "alternate_style.css",
"chars": 5098,
"preview": "# Kaleidochromic\nA custom theme for Jellyfin mediaserver created using CSS overrides. While a separate theme, it is buil"
},
{
"path": "backdrop-hack_style.css",
"chars": 619,
"preview": ".layout-mobile .detailPageWrapperContainer {\n margin-top: 0em;\n z-index: 0;\n}\n.layout-mobile .detailPagePrimaryCon"
},
{
"path": "bottom-progress_style.css",
"chars": 305,
"preview": ":root {--accent: 255, 255, 255;}\n\n.itemProgressBar {\n height: 5px;\n background: rgba(0,0,0,.5);\n}\n\n.playbackProgress>d"
},
{
"path": "customcolor-advanced_style.css",
"chars": 2509,
"preview": ".raised:hover, \n.fab:hover,\na[data-role=\"button\"]:hover {\n background: rgba(var(--accent),0.5) !important;\n}\n\n.subtitle"
},
{
"path": "customcolor_style.css",
"chars": 1100,
"preview": ".raised:hover, .fab:hover {\n background: var(--hoveraccent) !important;\n}\n\n.navMenuOption-selected {\n color: var(--acc"
},
{
"path": "default_style.css",
"chars": 23644,
"preview": "@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap'); body, h1, h2, h"
},
{
"path": "improve-performance_style.css",
"chars": 1601,
"preview": "/*Achieves similar effect without use of mask-image, foregoing the cool fade effect*/\n#dashboardPage,\n#dashboardGeneralP"
},
{
"path": "jfblue_style.css",
"chars": 116,
"preview": "@import url('https://ctalvio.github.io/Monochromic/customcolor-advanced_style.css');\n:root {--accent: 0, 164, 220;}\n"
},
{
"path": "jfpurple_style.css",
"chars": 117,
"preview": "@import url('https://ctalvio.github.io/Monochromic/customcolor-advanced_style.css');\n:root {--accent: 98, 121, 205;}\n"
},
{
"path": "sharp_style.css",
"chars": 25,
"preview": ":root {--rounding: 0px;}\n"
},
{
"path": "test_style.css",
"chars": 19254,
"preview": "@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap'); body, h1, h2, h"
}
]
About this extraction
This page contains the full source code of the CTalvio/Monochromic GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 13 files (59.1 KB), approximately 18.7k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.