2024-11-09 b
This commit is contained in:
parent
c75dc1edb4
commit
d18486c1b0
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,195 +1 @@
|
||||
@import "https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css";
|
||||
@import "https://fonts.googleapis.com/css?family=Share+Tech+Mono&display=swap";
|
||||
@import "https://fonts.googleapis.com/css?family=VT323";
|
||||
|
||||
|
||||
* {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
@media (max-width: 500px) {
|
||||
#login {
|
||||
-webkit-backdrop-filter: blur(0px);
|
||||
backdrop-filter: blur(0px);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
border-radius: none !important;
|
||||
}
|
||||
.background-wrap,#video-bg-elem {display: none;}
|
||||
}
|
||||
|
||||
html {
|
||||
background: var(--main-bg-color) !important;
|
||||
}
|
||||
body {
|
||||
background: var(--main-bg-color) !important;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
@media only screen and (max-width: 768px) {
|
||||
#login {
|
||||
min-width: 300px;
|
||||
}
|
||||
}
|
||||
/*FOR VIDEO BACKGROUND*/
|
||||
.background-wrap {
|
||||
position: fixed;
|
||||
z-index: -1000;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
#video-bg-elem {
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
z-index: 1;
|
||||
}
|
||||
/*TEXT COLOR*/
|
||||
#login h1,
|
||||
#login h2,
|
||||
#login .error {
|
||||
color: var(--text-color) !important;
|
||||
}
|
||||
#login a {
|
||||
color: var(--link-color);
|
||||
}
|
||||
#login a:hover {
|
||||
color: var(--link-color-hover);
|
||||
}
|
||||
#login input {
|
||||
color: var(--input-color);
|
||||
}
|
||||
#login ::placeholder {
|
||||
color: var(--input-color);
|
||||
}
|
||||
#login ::-webkit-input-placeholder {
|
||||
color: var(--input-color);
|
||||
}
|
||||
#login ::-moz-placeholder {
|
||||
color: var(--input-color);
|
||||
}
|
||||
#login :-ms-input-placeholder {
|
||||
color: var(--input-color);
|
||||
}
|
||||
#login :-moz-placeholder {
|
||||
color: var(--input-color);
|
||||
}
|
||||
#login input:focus::-webkit-input-placeholder {
|
||||
color: transparent !important;
|
||||
}
|
||||
#login input:focus:-moz-placeholder {
|
||||
color: transparent !important;
|
||||
}
|
||||
#login input:focus::-moz-placeholder {
|
||||
color: transparent !important;
|
||||
}
|
||||
#login input:focus:-ms-input-placeholder {
|
||||
color: transparent !important;
|
||||
}
|
||||
|
||||
/*TEXT FONT*/
|
||||
#login h1,
|
||||
#login h2,
|
||||
#login a,
|
||||
#login .button,
|
||||
#login .error {
|
||||
font-family: var(--text-font);
|
||||
}
|
||||
|
||||
/* CASE COLOR */
|
||||
#login [class^='case-'],
|
||||
#login [class*=' case-'] {
|
||||
font-family: cases!important;
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
color: var(--case-color);
|
||||
}
|
||||
/*INPUT FORMS*/
|
||||
#login [type=text],
|
||||
#login [type=password] {
|
||||
font-family: var(--input-font);
|
||||
background-color: rgba(0, 0, 0, 0.25);
|
||||
border: 2px solid transparent;
|
||||
text-transform: uppercase;
|
||||
border-radius: 5px;
|
||||
}
|
||||
#login [type=text]:active,
|
||||
#login [type=text]:focus,
|
||||
#login [type=password]:active,
|
||||
#login [type=password]:focus {
|
||||
font-family: var(--input-font);
|
||||
background-color: rgba(0, 0, 0, 0.25);
|
||||
border: 2px solid transparent;
|
||||
text-transform: uppercase;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/*BUTTON*/
|
||||
#login .button {
|
||||
color: var(--button-text-color);
|
||||
background: linear-gradient(90deg, var(--button-color2) 0, var(--button-color)) 0 0 no-repeat, linear-gradient(90deg, var(--button-color2) 0, var(--button-color)) 0 100% no-repeat, linear-gradient(0deg, var(--button-color2) 0, var(--button-color2)) 0 100% no-repeat, linear-gradient(0deg, var(--button-color) 0, var(--button-color)) 100% 100% no-repeat;
|
||||
background: -webkit-gradient(linear, left top, right top, from(var(--button-color2)), to(var(--button-color))) 0 0 no-repeat, -webkit-gradient(linear, left top, right top, from(var(--button-color2)), to(var(--button-color))) 0 100% no-repeat, -webkit-gradient(linear, left bottom, left top, from(var(--button-color2)), to(var(--button-color2))) 0 100% no-repeat, -webkit-gradient(linear, left bottom, left top, from(var(--button-color)), to(var(--button-color))) 100% 100% no-repeat;
|
||||
background-size: 100% 2px, 100% 2px, 2px 100%, 2px 100%;
|
||||
}
|
||||
#login .button:hover {
|
||||
color: var(--button-text-color-hover);
|
||||
background-color: var(--button-color);
|
||||
background: -webkit-gradient(linear, left top, right top, from(var(--button-color2)), to(var(--button-color)));
|
||||
background: linear-gradient(90deg, var(--button-color2) 0, var(--button-color));
|
||||
}
|
||||
|
||||
|
||||
#login {
|
||||
background: var(--div-background-color-15) !important;
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
backdrop-filter: blur(10px);
|
||||
padding-top: 1rem;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%) !;
|
||||
-ms-transform: translate(-50%, -50%);
|
||||
-webkit-transform: translate(-50%, -50%);
|
||||
margin: 0 !important;
|
||||
text-transform: uppercase;
|
||||
min-width: 300px;
|
||||
}
|
||||
|
||||
#login .angle:after {
|
||||
display: none;
|
||||
}
|
||||
#login .wordmark {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#login .logo {
|
||||
background: var(--logo);
|
||||
background-size: contain;
|
||||
padding: 2rem;
|
||||
border-radius: 0;
|
||||
margin: 0rem 1rem 0rem 1rem;
|
||||
}
|
||||
#login .error {
|
||||
animation-name: shake;
|
||||
animation-duration: .8s;
|
||||
}
|
||||
@import url(https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css);@import url(https://fonts.googleapis.com/css?family=Share+Tech+Mono&display=swap);@import url(https://fonts.googleapis.com/css?family=VT323);*{outline:0}@media (max-width:500px){#login{-webkit-backdrop-filter:blur(0px);backdrop-filter:blur(0px);position:absolute;top:0;left:0;bottom:0;right:0;height:100%;width:100%;border-radius:none!important}#video-bg-elem,.background-wrap{display:none}}html{background:var(--main-bg-color)!important}body{background:var(--main-bg-color)!important;position:absolute;top:0;left:0;bottom:0;right:0;height:100%;width:100%;overflow:hidden}@media only screen and (max-width:768px){#login{min-width:300px}}.background-wrap{position:fixed;z-index:-1000;width:100%;height:100%;overflow:hidden;top:0;left:0}#video-bg-elem{display:block;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);z-index:1}#login .error,#login h1,#login h2{color:var(--text-color)!important}#login a{color:var(--link-color)}#login a:hover{color:var(--link-color-hover)}#login input{color:var(--input-color)}#login ::placeholder{color:var(--input-color)}#login ::-webkit-input-placeholder{color:var(--input-color)}#login ::-moz-placeholder{color:var(--input-color)}#login :-ms-input-placeholder{color:var(--input-color)}#login :-moz-placeholder{color:var(--input-color)}#login input:focus::-webkit-input-placeholder{color:transparent!important}#login input:focus:-moz-placeholder{color:transparent!important}#login input:focus::-moz-placeholder{color:transparent!important}#login input:focus:-ms-input-placeholder{color:transparent!important}#login .button,#login .error,#login a,#login h1,#login h2{font-family:var(--text-font)}#login [class*=' case-'],#login [class^=case-]{font-family:cases!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;color:var(--case-color)}#login [type=password],#login [type=text]{font-family:var(--input-font);background-color:rgba(0,0,0,.25);border:2px solid transparent;text-transform:uppercase;border-radius:5px}#login [type=password]:active,#login [type=password]:focus,#login [type=text]:active,#login [type=text]:focus{font-family:var(--input-font);background-color:rgba(0,0,0,.25);border:2px solid transparent;text-transform:uppercase}#login .button{color:var(--button-text-color);background:linear-gradient(90deg,var(--button-color2) 0,var(--button-color)) 0 0 no-repeat,linear-gradient(90deg,var(--button-color2) 0,var(--button-color)) 0 100% no-repeat,linear-gradient(0deg,var(--button-color2) 0,var(--button-color2)) 0 100% no-repeat,linear-gradient(0deg,var(--button-color) 0,var(--button-color)) 100% 100% no-repeat;background:-webkit-gradient(linear,left top,right top,from(var(--button-color2)),to(var(--button-color))) 0 0 no-repeat,-webkit-gradient(linear,left top,right top,from(var(--button-color2)),to(var(--button-color))) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(var(--button-color2)),to(var(--button-color2))) 0 100% no-repeat,-webkit-gradient(linear,left bottom,left top,from(var(--button-color)),to(var(--button-color))) 100% 100% no-repeat;background-size:100% 2px,100% 2px,2px 100%,2px 100%}#login .button:hover{color:var(--button-text-color-hover);background-color:var(--button-color);background:-webkit-gradient(linear,left top,right top,from(var(--button-color2)),to(var(--button-color)));background:linear-gradient(90deg,var(--button-color2) 0,var(--button-color))}#login{background:var(--div-background-color-15)!important;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);padding-top:1rem;position:absolute;left:50%;top:50%;-ms-transform:translate(-50%,-50%);-webkit-transform:translate(-50%,-50%);margin:0!important;text-transform:uppercase;min-width:300px}#login .angle:after{display:none}#login .wordmark{display:none}#login .logo{background:var(--logo);background-size:contain;padding:2rem;border-radius:0;margin:0 1rem 0 1rem}#login .error{animation-name:shake;animation-duration:.8s}
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
css/base/adguard/aquamarine.css
Normal file
2
css/base/adguard/aquamarine.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/theme-options/aquamarine.css?sha=591b3468083c72cda580a7c61d5d26ca");
|
||||
2
css/base/adguard/blackberry-abyss.css
Normal file
2
css/base/adguard/blackberry-abyss.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-abyss.css?sha=fc6a1d080c4f5d78b2548559c9e73cd1");
|
||||
2
css/base/adguard/blackberry-amethyst.css
Normal file
2
css/base/adguard/blackberry-amethyst.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-amethyst.css?sha=67960962b68b17de8356d3589df5a607");
|
||||
2
css/base/adguard/blackberry-carol.css
Normal file
2
css/base/adguard/blackberry-carol.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-carol.css?sha=4e94a5ce3583ee04d4f8b70bdb454716");
|
||||
2
css/base/adguard/blackberry-dreamscape.css
Normal file
2
css/base/adguard/blackberry-dreamscape.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-dreamscape.css?sha=3c7c9d3c00286f1d3d27c705839be761");
|
||||
2
css/base/adguard/blackberry-flamingo.css
Normal file
2
css/base/adguard/blackberry-flamingo.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-flamingo.css?sha=7457baa8919a779eb998112c6f58b5d8");
|
||||
2
css/base/adguard/blackberry-hearth.css
Normal file
2
css/base/adguard/blackberry-hearth.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-hearth.css?sha=f49d3bcfa8a1ea354b824d21a1372ea0");
|
||||
2
css/base/adguard/blackberry-martian.css
Normal file
2
css/base/adguard/blackberry-martian.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-martian.css?sha=3cc7aa3b062a9a81f28851ef8d9fa756");
|
||||
2
css/base/adguard/blackberry-pumpkin.css
Normal file
2
css/base/adguard/blackberry-pumpkin.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-pumpkin.css?sha=5f6b57ce03081ca340f73cd35161b590");
|
||||
2
css/base/adguard/blackberry-royal.css
Normal file
2
css/base/adguard/blackberry-royal.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-royal.css?sha=861c6dcaaf758c859662aed5e4a095e5");
|
||||
2
css/base/adguard/blackberry-shadow.css
Normal file
2
css/base/adguard/blackberry-shadow.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-shadow.css?sha=9af0d016f8708f93c4b606a726aa9191");
|
||||
2
css/base/adguard/blackberry-solar.css
Normal file
2
css/base/adguard/blackberry-solar.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-solar.css?sha=aa16772852e82a318f87730ed9395d19");
|
||||
2
css/base/adguard/blackberry-vanta.css
Normal file
2
css/base/adguard/blackberry-vanta.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-vanta.css?sha=b0e92b78923941b1f237ea8853f883cb");
|
||||
2
css/base/adguard/catppuccin-frappe.css
Normal file
2
css/base/adguard/catppuccin-frappe.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/catppuccin-frappe.css?sha=936bdb13f9e0488e90726cd9be4a15d2");
|
||||
2
css/base/adguard/catppuccin-latte.css
Normal file
2
css/base/adguard/catppuccin-latte.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/catppuccin-latte.css?sha=b27e3cace3d4ca904d6e373a8ca07735");
|
||||
2
css/base/adguard/catppuccin-macchiato.css
Normal file
2
css/base/adguard/catppuccin-macchiato.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/catppuccin-macchiato.css?sha=d1d8dcd1f30057ecd257ae1d22d6295c");
|
||||
2
css/base/adguard/catppuccin-mocha.css
Normal file
2
css/base/adguard/catppuccin-mocha.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/catppuccin-mocha.css?sha=3a94f850384195bd9d75d270eed80581");
|
||||
2
css/base/adguard/dark.css
Normal file
2
css/base/adguard/dark.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/theme-options/dark.css?sha=38f08efadc40a771376804e112c15b00");
|
||||
2
css/base/adguard/dracula.css
Normal file
2
css/base/adguard/dracula.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/theme-options/dracula.css?sha=4e7c87d2063bc2c5a63e05579cd6bea6");
|
||||
2
css/base/adguard/hotline-old.css
Normal file
2
css/base/adguard/hotline-old.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/hotline-old.css?sha=40dcf9071afdaf83f52a1be9eac4c119");
|
||||
2
css/base/adguard/hotline.css
Normal file
2
css/base/adguard/hotline.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/theme-options/hotline.css?sha=6e3ddecbe9a1ccd2f1faaf433786677f");
|
||||
2
css/base/adguard/hotpink.css
Normal file
2
css/base/adguard/hotpink.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/theme-options/hotpink.css?sha=bb25728a28cab5fb9293e52f84b3ecd6");
|
||||
2
css/base/adguard/ibracorp.css
Normal file
2
css/base/adguard/ibracorp.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/ibracorp.css?sha=c614a1a123a048850289e718fd113c8f");
|
||||
2
css/base/adguard/maroon.css
Normal file
2
css/base/adguard/maroon.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/theme-options/maroon.css?sha=aba3461aac201e257cf5cea12d9f6c5c");
|
||||
2
css/base/adguard/mind.css
Normal file
2
css/base/adguard/mind.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/mind.css?sha=30591394da840c870602f72f0b6d7ad6");
|
||||
2
css/base/adguard/nord.css
Normal file
2
css/base/adguard/nord.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/theme-options/nord.css?sha=5226f437407d52580589f86881be883c");
|
||||
2
css/base/adguard/onedark.css
Normal file
2
css/base/adguard/onedark.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/onedark.css?sha=8779d7d20bcc711fe8ed42892bd35af9");
|
||||
2
css/base/adguard/organizr.css
Normal file
2
css/base/adguard/organizr.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/theme-options/organizr.css?sha=d5d6c6d63c91bbf2247752bf979bd163");
|
||||
2
css/base/adguard/overseerr.css
Normal file
2
css/base/adguard/overseerr.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/theme-options/overseerr.css?sha=6fa79c6417fc81ad26dffe8083078398");
|
||||
2
css/base/adguard/pine-shadow.css
Normal file
2
css/base/adguard/pine-shadow.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/pine-shadow.css?sha=ae5fb5029a078157ef8912bf6b2d5b40");
|
||||
2
css/base/adguard/plex.css
Normal file
2
css/base/adguard/plex.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/theme-options/plex.css?sha=ee86fed87fb92c4983b1b4056b0689b6");
|
||||
2
css/base/adguard/power.css
Normal file
2
css/base/adguard/power.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/power.css?sha=b60588297c00b10ae45e397fe480693d");
|
||||
2
css/base/adguard/reality.css
Normal file
2
css/base/adguard/reality.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/reality.css?sha=b9eb97b4ab22d5ad559ff1a7d3cd0ea8");
|
||||
2
css/base/adguard/soul.css
Normal file
2
css/base/adguard/soul.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/soul.css?sha=300d25523a00f5086cea11988de1da1c");
|
||||
2
css/base/adguard/space-gray.css
Normal file
2
css/base/adguard/space-gray.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/theme-options/space-gray.css?sha=fe5797a1fc63f6e1929ffc4bdec30312");
|
||||
2
css/base/adguard/space.css
Normal file
2
css/base/adguard/space.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/space.css?sha=9986de93076043df50e721813aeb3f74");
|
||||
2
css/base/adguard/time.css
Normal file
2
css/base/adguard/time.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/time.css?sha=8b1b27e8c0a649951fbf26ec6bc18268");
|
||||
2
css/base/adguard/trueblack.css
Normal file
2
css/base/adguard/trueblack.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/adguard/adguard-base.css?sha=9bef040a51d40439e2ff447ab67c0f0d");
|
||||
@import url("/theme.park/css/community-theme-options/trueblack.css?sha=541f73821cfe0a75a26106011079b244");
|
||||
2
css/base/audiobookshelf/aquamarine.css
Normal file
2
css/base/audiobookshelf/aquamarine.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/theme-options/aquamarine.css?sha=591b3468083c72cda580a7c61d5d26ca");
|
||||
File diff suppressed because one or more lines are too long
2
css/base/audiobookshelf/blackberry-abyss.css
Normal file
2
css/base/audiobookshelf/blackberry-abyss.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-abyss.css?sha=fc6a1d080c4f5d78b2548559c9e73cd1");
|
||||
2
css/base/audiobookshelf/blackberry-amethyst.css
Normal file
2
css/base/audiobookshelf/blackberry-amethyst.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-amethyst.css?sha=67960962b68b17de8356d3589df5a607");
|
||||
2
css/base/audiobookshelf/blackberry-carol.css
Normal file
2
css/base/audiobookshelf/blackberry-carol.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-carol.css?sha=4e94a5ce3583ee04d4f8b70bdb454716");
|
||||
2
css/base/audiobookshelf/blackberry-dreamscape.css
Normal file
2
css/base/audiobookshelf/blackberry-dreamscape.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-dreamscape.css?sha=3c7c9d3c00286f1d3d27c705839be761");
|
||||
2
css/base/audiobookshelf/blackberry-flamingo.css
Normal file
2
css/base/audiobookshelf/blackberry-flamingo.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-flamingo.css?sha=7457baa8919a779eb998112c6f58b5d8");
|
||||
2
css/base/audiobookshelf/blackberry-hearth.css
Normal file
2
css/base/audiobookshelf/blackberry-hearth.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-hearth.css?sha=f49d3bcfa8a1ea354b824d21a1372ea0");
|
||||
2
css/base/audiobookshelf/blackberry-martian.css
Normal file
2
css/base/audiobookshelf/blackberry-martian.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-martian.css?sha=3cc7aa3b062a9a81f28851ef8d9fa756");
|
||||
2
css/base/audiobookshelf/blackberry-pumpkin.css
Normal file
2
css/base/audiobookshelf/blackberry-pumpkin.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-pumpkin.css?sha=5f6b57ce03081ca340f73cd35161b590");
|
||||
2
css/base/audiobookshelf/blackberry-royal.css
Normal file
2
css/base/audiobookshelf/blackberry-royal.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-royal.css?sha=861c6dcaaf758c859662aed5e4a095e5");
|
||||
2
css/base/audiobookshelf/blackberry-shadow.css
Normal file
2
css/base/audiobookshelf/blackberry-shadow.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-shadow.css?sha=9af0d016f8708f93c4b606a726aa9191");
|
||||
2
css/base/audiobookshelf/blackberry-solar.css
Normal file
2
css/base/audiobookshelf/blackberry-solar.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-solar.css?sha=aa16772852e82a318f87730ed9395d19");
|
||||
2
css/base/audiobookshelf/blackberry-vanta.css
Normal file
2
css/base/audiobookshelf/blackberry-vanta.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-vanta.css?sha=b0e92b78923941b1f237ea8853f883cb");
|
||||
2
css/base/audiobookshelf/catppuccin-frappe.css
Normal file
2
css/base/audiobookshelf/catppuccin-frappe.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/catppuccin-frappe.css?sha=936bdb13f9e0488e90726cd9be4a15d2");
|
||||
2
css/base/audiobookshelf/catppuccin-latte.css
Normal file
2
css/base/audiobookshelf/catppuccin-latte.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/catppuccin-latte.css?sha=b27e3cace3d4ca904d6e373a8ca07735");
|
||||
2
css/base/audiobookshelf/catppuccin-macchiato.css
Normal file
2
css/base/audiobookshelf/catppuccin-macchiato.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/catppuccin-macchiato.css?sha=d1d8dcd1f30057ecd257ae1d22d6295c");
|
||||
2
css/base/audiobookshelf/catppuccin-mocha.css
Normal file
2
css/base/audiobookshelf/catppuccin-mocha.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/catppuccin-mocha.css?sha=3a94f850384195bd9d75d270eed80581");
|
||||
2
css/base/audiobookshelf/dark.css
Normal file
2
css/base/audiobookshelf/dark.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/theme-options/dark.css?sha=38f08efadc40a771376804e112c15b00");
|
||||
2
css/base/audiobookshelf/dracula.css
Normal file
2
css/base/audiobookshelf/dracula.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/theme-options/dracula.css?sha=4e7c87d2063bc2c5a63e05579cd6bea6");
|
||||
2
css/base/audiobookshelf/hotline-old.css
Normal file
2
css/base/audiobookshelf/hotline-old.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/hotline-old.css?sha=40dcf9071afdaf83f52a1be9eac4c119");
|
||||
2
css/base/audiobookshelf/hotline.css
Normal file
2
css/base/audiobookshelf/hotline.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/theme-options/hotline.css?sha=6e3ddecbe9a1ccd2f1faaf433786677f");
|
||||
2
css/base/audiobookshelf/hotpink.css
Normal file
2
css/base/audiobookshelf/hotpink.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/theme-options/hotpink.css?sha=bb25728a28cab5fb9293e52f84b3ecd6");
|
||||
2
css/base/audiobookshelf/ibracorp.css
Normal file
2
css/base/audiobookshelf/ibracorp.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/ibracorp.css?sha=c614a1a123a048850289e718fd113c8f");
|
||||
2
css/base/audiobookshelf/maroon.css
Normal file
2
css/base/audiobookshelf/maroon.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/theme-options/maroon.css?sha=aba3461aac201e257cf5cea12d9f6c5c");
|
||||
2
css/base/audiobookshelf/mind.css
Normal file
2
css/base/audiobookshelf/mind.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/mind.css?sha=30591394da840c870602f72f0b6d7ad6");
|
||||
2
css/base/audiobookshelf/nord.css
Normal file
2
css/base/audiobookshelf/nord.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/theme-options/nord.css?sha=5226f437407d52580589f86881be883c");
|
||||
2
css/base/audiobookshelf/onedark.css
Normal file
2
css/base/audiobookshelf/onedark.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/onedark.css?sha=8779d7d20bcc711fe8ed42892bd35af9");
|
||||
2
css/base/audiobookshelf/organizr.css
Normal file
2
css/base/audiobookshelf/organizr.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/theme-options/organizr.css?sha=d5d6c6d63c91bbf2247752bf979bd163");
|
||||
2
css/base/audiobookshelf/overseerr.css
Normal file
2
css/base/audiobookshelf/overseerr.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/theme-options/overseerr.css?sha=6fa79c6417fc81ad26dffe8083078398");
|
||||
2
css/base/audiobookshelf/pine-shadow.css
Normal file
2
css/base/audiobookshelf/pine-shadow.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/pine-shadow.css?sha=ae5fb5029a078157ef8912bf6b2d5b40");
|
||||
2
css/base/audiobookshelf/plex.css
Normal file
2
css/base/audiobookshelf/plex.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/theme-options/plex.css?sha=ee86fed87fb92c4983b1b4056b0689b6");
|
||||
2
css/base/audiobookshelf/power.css
Normal file
2
css/base/audiobookshelf/power.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/power.css?sha=b60588297c00b10ae45e397fe480693d");
|
||||
2
css/base/audiobookshelf/reality.css
Normal file
2
css/base/audiobookshelf/reality.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/reality.css?sha=b9eb97b4ab22d5ad559ff1a7d3cd0ea8");
|
||||
2
css/base/audiobookshelf/soul.css
Normal file
2
css/base/audiobookshelf/soul.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/soul.css?sha=300d25523a00f5086cea11988de1da1c");
|
||||
2
css/base/audiobookshelf/space-gray.css
Normal file
2
css/base/audiobookshelf/space-gray.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/theme-options/space-gray.css?sha=fe5797a1fc63f6e1929ffc4bdec30312");
|
||||
2
css/base/audiobookshelf/space.css
Normal file
2
css/base/audiobookshelf/space.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/space.css?sha=9986de93076043df50e721813aeb3f74");
|
||||
2
css/base/audiobookshelf/time.css
Normal file
2
css/base/audiobookshelf/time.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/time.css?sha=8b1b27e8c0a649951fbf26ec6bc18268");
|
||||
2
css/base/audiobookshelf/trueblack.css
Normal file
2
css/base/audiobookshelf/trueblack.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/audiobookshelf/audiobookshelf-base.css?sha=ff56fda05b7dae338a5f509c6347c612");
|
||||
@import url("/theme.park/css/community-theme-options/trueblack.css?sha=541f73821cfe0a75a26106011079b244");
|
||||
2
css/base/bazarr/aquamarine.css
Normal file
2
css/base/bazarr/aquamarine.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/theme-options/aquamarine.css?sha=591b3468083c72cda580a7c61d5d26ca");
|
||||
File diff suppressed because one or more lines are too long
2
css/base/bazarr/blackberry-abyss.css
Normal file
2
css/base/bazarr/blackberry-abyss.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-abyss.css?sha=fc6a1d080c4f5d78b2548559c9e73cd1");
|
||||
2
css/base/bazarr/blackberry-amethyst.css
Normal file
2
css/base/bazarr/blackberry-amethyst.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-amethyst.css?sha=67960962b68b17de8356d3589df5a607");
|
||||
2
css/base/bazarr/blackberry-carol.css
Normal file
2
css/base/bazarr/blackberry-carol.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-carol.css?sha=4e94a5ce3583ee04d4f8b70bdb454716");
|
||||
2
css/base/bazarr/blackberry-dreamscape.css
Normal file
2
css/base/bazarr/blackberry-dreamscape.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-dreamscape.css?sha=3c7c9d3c00286f1d3d27c705839be761");
|
||||
2
css/base/bazarr/blackberry-flamingo.css
Normal file
2
css/base/bazarr/blackberry-flamingo.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-flamingo.css?sha=7457baa8919a779eb998112c6f58b5d8");
|
||||
2
css/base/bazarr/blackberry-hearth.css
Normal file
2
css/base/bazarr/blackberry-hearth.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-hearth.css?sha=f49d3bcfa8a1ea354b824d21a1372ea0");
|
||||
2
css/base/bazarr/blackberry-martian.css
Normal file
2
css/base/bazarr/blackberry-martian.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-martian.css?sha=3cc7aa3b062a9a81f28851ef8d9fa756");
|
||||
2
css/base/bazarr/blackberry-pumpkin.css
Normal file
2
css/base/bazarr/blackberry-pumpkin.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-pumpkin.css?sha=5f6b57ce03081ca340f73cd35161b590");
|
||||
2
css/base/bazarr/blackberry-royal.css
Normal file
2
css/base/bazarr/blackberry-royal.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-royal.css?sha=861c6dcaaf758c859662aed5e4a095e5");
|
||||
2
css/base/bazarr/blackberry-shadow.css
Normal file
2
css/base/bazarr/blackberry-shadow.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-shadow.css?sha=9af0d016f8708f93c4b606a726aa9191");
|
||||
2
css/base/bazarr/blackberry-solar.css
Normal file
2
css/base/bazarr/blackberry-solar.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-solar.css?sha=aa16772852e82a318f87730ed9395d19");
|
||||
2
css/base/bazarr/blackberry-vanta.css
Normal file
2
css/base/bazarr/blackberry-vanta.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/blackberry-vanta.css?sha=b0e92b78923941b1f237ea8853f883cb");
|
||||
2
css/base/bazarr/catppuccin-frappe.css
Normal file
2
css/base/bazarr/catppuccin-frappe.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/catppuccin-frappe.css?sha=936bdb13f9e0488e90726cd9be4a15d2");
|
||||
2
css/base/bazarr/catppuccin-latte.css
Normal file
2
css/base/bazarr/catppuccin-latte.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/catppuccin-latte.css?sha=b27e3cace3d4ca904d6e373a8ca07735");
|
||||
2
css/base/bazarr/catppuccin-macchiato.css
Normal file
2
css/base/bazarr/catppuccin-macchiato.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/catppuccin-macchiato.css?sha=d1d8dcd1f30057ecd257ae1d22d6295c");
|
||||
2
css/base/bazarr/catppuccin-mocha.css
Normal file
2
css/base/bazarr/catppuccin-mocha.css
Normal file
@ -0,0 +1,2 @@
|
||||
@import url("/theme.park/css/base/bazarr/bazarr-base.css?sha=75b90779b6e60fbcbabf372f21cc369b");
|
||||
@import url("/theme.park/css/community-theme-options/catppuccin-mocha.css?sha=3a94f850384195bd9d75d270eed80581");
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user