unraid login page
3
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"python.pythonPath": "C:\\Users\\Marius\\AppData\\Local\\Programs\\Python\\Python37\\python.exe"
|
||||||
|
}
|
263
CSS/addons/unraid/login-page/alien/alien _wallpaper.css
Normal file
@ -0,0 +1,263 @@
|
|||||||
|
@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";
|
||||||
|
:root {
|
||||||
|
--main-bg-color: radial-gradient(ellipse at center,#0f7 0,rgba(0,255,119,0) 100%) center center/cover no-repeat fixed;
|
||||||
|
--logo: url(https://gflix.app/unraid_themes/alien/logo/nostromo3.png) center no-repeat;
|
||||||
|
--text-color: #37f592;
|
||||||
|
--input-color: #37f592;
|
||||||
|
--link-color: #37f592;
|
||||||
|
--link-color-hover: #68ffff;
|
||||||
|
--case-color: #37f592;
|
||||||
|
--button-text-color: #37f592;
|
||||||
|
--button-text-color-hover: #000;
|
||||||
|
--button-color: #37f592;
|
||||||
|
--button-color2: #0C833D;
|
||||||
|
--button-color-hover: #68ffff;
|
||||||
|
--button-color2-hover: #68ffff;
|
||||||
|
--input-font: 'Share Tech Mono', monospace;
|
||||||
|
--text-font: 'Share Tech Mono', monospace; /*'VT323', 'Share Tech Mono'*/
|
||||||
|
--div-background-color-15: rgba(0, 255, 111, 0.03);
|
||||||
|
--text-shadow: 0 0 8px;
|
||||||
|
--box-shadow: 0 0 15px;
|
||||||
|
|
||||||
|
/* Replace the variables if you have a dark background */
|
||||||
|
/* Light colors for dark backgrounds */
|
||||||
|
/*
|
||||||
|
--div-background-color-10: rgba(255, 255, 255, 0.1);
|
||||||
|
--div-background-color-15: rgba(255, 255, 255, 0.15);
|
||||||
|
--div-background-color-25: rgba(255, 255, 255, 0.25);
|
||||||
|
--div-background-color-35: rgba(255, 255, 255, 0.35);
|
||||||
|
https://www.transparenttextures.com/patterns/hexellence.png
|
||||||
|
https://www.transparenttextures.com/patterns/gplay.png
|
||||||
|
https://www.transparenttextures.com/patterns/simple-horizontal-light.png
|
||||||
|
https://www.colourlovers.com/palette/3428762/Fallout?widths=1
|
||||||
|
|
||||||
|
https://codepen.io/lbebber/pen/XJRdrV/ CRT KEY FRAMES
|
||||||
|
https://brennan.io/2017/06/14/alien-computer-card/
|
||||||
|
https://www.cssmatic.com/noise-texture
|
||||||
|
|
||||||
|
https://codepen.io/somethingformed/pen/raWJXV
|
||||||
|
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
#!/bin/bash
|
||||||
|
sed -i -e '\@<style>@i\ <link rel="stylesheet" href="https:\/\/gflix.app\/customfiles\/fallout.css">' /usr/local/emhttp/login.php
|
||||||
|
# add video background
|
||||||
|
sed -i -e '\@<body>@a\ div class="background-wrap"><video id="video-bg-elem" preload="auto" autoplay="true" loop="loop" muted="muted"> <source src="https:\/\/gflix.app\/customfiles\/VaultTecCRTLoop.mp4" type="video\/mp4">Video not supported<\/video><\/div>' /usr/local/emhttp/login.php
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@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 {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
min-height: 100%;
|
||||||
|
min-width: 100%;
|
||||||
|
}
|
||||||
|
/*TEXT COLOR*/
|
||||||
|
#login h1,
|
||||||
|
#login h2,
|
||||||
|
#login .error {
|
||||||
|
color: var(--text-color) !important;
|
||||||
|
text-shadow: var(--text-shadow) var(--text-color);
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
#login a {
|
||||||
|
color: var(--link-color);
|
||||||
|
text-shadow: var(--text-shadow) var(--text-color);
|
||||||
|
}
|
||||||
|
#login a:hover {
|
||||||
|
color: var(--link-color-hover);
|
||||||
|
text-shadow: var(--text-shadow) var(--text-color);
|
||||||
|
}
|
||||||
|
#login input {
|
||||||
|
color: var(--input-color);
|
||||||
|
text-shadow: 0 0 5px var(--text-color);
|
||||||
|
}
|
||||||
|
#login ::placeholder {
|
||||||
|
color: var(--input-color);
|
||||||
|
text-shadow: 0 0 5px var(--text-color);
|
||||||
|
}
|
||||||
|
#login ::-webkit-input-placeholder {
|
||||||
|
color: var(--input-color);
|
||||||
|
text-shadow: 0 0 5px var(--text-color);
|
||||||
|
}
|
||||||
|
#login ::-moz-placeholder {
|
||||||
|
color: var(--input-color);
|
||||||
|
text-shadow: 0 0 5px var(--text-color);
|
||||||
|
}
|
||||||
|
#login :-ms-input-placeholder {
|
||||||
|
color: var(--input-color);
|
||||||
|
text-shadow: 0 0 5px var(--text-color);
|
||||||
|
}
|
||||||
|
#login :-moz-placeholder {
|
||||||
|
color: var(--input-color);
|
||||||
|
text-shadow: 0 0 5px var(--text-color);
|
||||||
|
}
|
||||||
|
#login input:focus::-webkit-input-placeholder {
|
||||||
|
color: transparent !important;
|
||||||
|
text-shadow: 0 0 0px transparent;
|
||||||
|
}
|
||||||
|
#login input:focus:-moz-placeholder {
|
||||||
|
color: transparent !important;
|
||||||
|
text-shadow: 0 0 0px transparent;
|
||||||
|
}
|
||||||
|
#login input:focus::-moz-placeholder {
|
||||||
|
color: transparent !important;
|
||||||
|
text-shadow: 0 0 0px transparent;
|
||||||
|
}
|
||||||
|
#login input:focus:-ms-input-placeholder {
|
||||||
|
color: transparent !important;
|
||||||
|
text-shadow: 0 0 0px transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*TEXT FONT*/
|
||||||
|
#login h1,
|
||||||
|
#login h2,
|
||||||
|
#login a,
|
||||||
|
#login .button,
|
||||||
|
#login .error {
|
||||||
|
font-family: var(--text-font);
|
||||||
|
-webkit-font-smoothing: none;
|
||||||
|
line-height: 1.2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 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);
|
||||||
|
text-shadow: var(--text-shadow) var(--text-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);
|
||||||
|
text-shadow: var(--text-shadow) var(--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);
|
||||||
|
text-shadow: var(--text-shadow) var(--button-color-hover);
|
||||||
|
box-shadow: var(--box-shadow) var(--button-color-hover);
|
||||||
|
background-color: var(--button-color-hover);
|
||||||
|
background: -webkit-gradient(linear, left top, right top, from(var(--button-color2-hover)), to(var(--button-color-hover)));
|
||||||
|
background: linear-gradient(90deg, var(--button-color2-hover) 0, var(--button-color-hover));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#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;
|
||||||
|
}
|
||||||
|
/*LOGIN BOX SHADOW*/
|
||||||
|
.shadow {
|
||||||
|
-webkit-box-shadow: inset 0px 0px 0px 2px var(--text-color);
|
||||||
|
box-shadow: inset 0px 0px 0px 2px var(--text-color);
|
||||||
|
}
|
BIN
CSS/addons/unraid/login-page/alien/logo/25898027_max.jpg
Normal file
After Width: | Height: | Size: 127 KiB |
After Width: | Height: | Size: 32 KiB |
BIN
CSS/addons/unraid/login-page/alien/logo/nostromo.png
Normal file
After Width: | Height: | Size: 102 KiB |
BIN
CSS/addons/unraid/login-page/alien/logo/nostromo2.png
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
CSS/addons/unraid/login-page/alien/logo/nostromo3.png
Normal file
After Width: | Height: | Size: 243 KiB |
BIN
CSS/addons/unraid/login-page/alien/logo/nostromoblue.png
Normal file
After Width: | Height: | Size: 366 KiB |
BIN
CSS/addons/unraid/login-page/alien/logo/nostromogreen.png
Normal file
After Width: | Height: | Size: 682 KiB |
BIN
CSS/addons/unraid/login-page/alien/logo/nostromogreen2.png
Normal file
After Width: | Height: | Size: 364 KiB |
BIN
CSS/addons/unraid/login-page/alien/logo/nostromored.png
Normal file
After Width: | Height: | Size: 607 KiB |
BIN
CSS/addons/unraid/login-page/alien/logo/nostromoyellow.png
Normal file
After Width: | Height: | Size: 356 KiB |
BIN
CSS/addons/unraid/login-page/alien/logo/nostromoyellowshadow.png
Normal file
After Width: | Height: | Size: 529 KiB |
After Width: | Height: | Size: 24 KiB |
31
CSS/addons/unraid/login-page/alien/retro-terminal/amber.css
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
/*_____________________AMBER_THEME______________________*/
|
||||||
|
/*--body-before:#ffb52a1a; /* This is the background that flickers, background uses a transparency of 10%, SET IT TO BLACK TO REMOVE FLICKER! */
|
||||||
|
/*--body-after: #ffb52a33; /* This is the background that creates the crt lines, background uses a transparency of 20% */
|
||||||
|
/*--custom-text-header-animation: textflicker; /* SET TO NONE TO REMOVE THE FLICKER ANIMATION! */
|
||||||
|
|
||||||
|
@import url(https://gflix.app/theme.park/CSS/addons/unraid/login-page/alien/retro-terminal/retro-terminal-base.css);
|
||||||
|
:root {
|
||||||
|
--main-bg-color:black;
|
||||||
|
--body-before:#ffb52a1a;
|
||||||
|
--body-after: #ffb52a33;
|
||||||
|
--logo: url(https://gflix.app/theme.park/CSS/addons/unraid/login-page/alien/logo/nostromoyellow.png) center no-repeat;
|
||||||
|
--text-color: #ffb52a;
|
||||||
|
--input-color: #ffb52a;
|
||||||
|
--link-color: #ffb52a;
|
||||||
|
--link-color-hover: #ff6868;
|
||||||
|
--case-color: #ffb52a;
|
||||||
|
--button-text-color: #ffb52a;
|
||||||
|
--button-text-color-hover: #000;
|
||||||
|
--button-color: #ffb52a;
|
||||||
|
--button-color-hover: #ff6868;
|
||||||
|
--selection-color: #ff6868;
|
||||||
|
--custom-text-header:#ffb52a;
|
||||||
|
--custom-text-header-shadow:#ffb52a;
|
||||||
|
--custom-text-header-animation: textflicker;
|
||||||
|
--input-font: 'Share Tech Mono', monospace;
|
||||||
|
--text-font: 'Share Tech Mono', monospace;
|
||||||
|
--loginbox-background-color: transparent;
|
||||||
|
--text-shadow: 0 0 8px;
|
||||||
|
--text-shadow-color: #ffb52a;
|
||||||
|
--box-shadow: 0 0 15px;
|
||||||
|
}
|
31
CSS/addons/unraid/login-page/alien/retro-terminal/blue.css
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
/*_____________________BLUE_THEME______________________*/
|
||||||
|
/*--body-before:#70d7f61a; /* This is the background that flickers, background uses a transparency of 10%, SET IT TO BLACK TO REMOVE FLICKER! */
|
||||||
|
/*--body-after: #70d7f61a; /* This is the background that creates the crt lines, background uses a transparency of 20% */
|
||||||
|
/*--custom-text-header-animation: textflicker; /* SET TO NONE TO REMOVE THE FLICKER ANIMATION! */
|
||||||
|
|
||||||
|
@import url(https://gflix.app/theme.park/CSS/addons/unraid/login-page/alien/retro-terminal/retro-terminal-base.css);
|
||||||
|
:root {
|
||||||
|
--main-bg-color:black;
|
||||||
|
--body-before:#70d7f61a;
|
||||||
|
--body-after: #70d7f633;
|
||||||
|
--logo: url(https://gflix.app/theme.park/CSS/addons/unraid/login-page/alien/logo/nostromoblue.png) center no-repeat;
|
||||||
|
--text-color: #70d7f6;
|
||||||
|
--input-color: #70d7f6;
|
||||||
|
--link-color: #70d7f6;
|
||||||
|
--link-color-hover: #8f2809;
|
||||||
|
--case-color: #70d7f6;
|
||||||
|
--button-text-color: #70d7f6;
|
||||||
|
--button-text-color-hover: #000;
|
||||||
|
--button-color: #70d7f6;
|
||||||
|
--button-color-hover: #8f2809;
|
||||||
|
--selection-color: #8f2809;
|
||||||
|
--custom-text-header:#70d7f6;
|
||||||
|
--custom-text-header-shadow:#70d7f6;
|
||||||
|
--custom-text-header-animation: textflicker;
|
||||||
|
--input-font: 'Share Tech Mono', monospace;
|
||||||
|
--text-font: 'Share Tech Mono', monospace;
|
||||||
|
--loginbox-background-color: transparent;
|
||||||
|
--text-shadow: 0 0 8px;
|
||||||
|
--text-shadow-color: #70d7f6;
|
||||||
|
--box-shadow: 0 0 15px;
|
||||||
|
}
|
31
CSS/addons/unraid/login-page/alien/retro-terminal/green.css
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
/*_____________________GREEN_THEME______________________*/
|
||||||
|
/* --body-before:#00ff771a; /* This is the background that flickers, background uses a transparency of 10% */
|
||||||
|
/* --body-after: #00ff7733; /* This is the background that creates the crt lines, background uses a transparency of 20% */
|
||||||
|
/* --custom-text-header-animation: textflicker; /* SET TO NONE TO REMOVE THE FLICKER ANIMATION! */
|
||||||
|
|
||||||
|
@import url(https://gflix.app/theme.park/CSS/addons/unraid/login-page/alien/retro-terminal/retro-terminal-base.css);
|
||||||
|
:root {
|
||||||
|
--main-bg-color:black;
|
||||||
|
--body-before:#00ff771a;
|
||||||
|
--body-after: #00ff7733;
|
||||||
|
--logo: url(https://gflix.app/theme.park/CSS/addons/unraid/login-page/alien/logo/nostromogreen.png) center no-repeat;
|
||||||
|
--text-color: #37f592;
|
||||||
|
--input-color: #37f592;
|
||||||
|
--link-color: #37f592;
|
||||||
|
--link-color-hover: #68ffff;
|
||||||
|
--case-color: #37f592;
|
||||||
|
--button-text-color: #37f592;
|
||||||
|
--button-text-color-hover: #000;
|
||||||
|
--button-color: #37f592;
|
||||||
|
--button-color-hover: #68ffff;
|
||||||
|
--selection-color: #68ffff;
|
||||||
|
--custom-text-header:#37f592;
|
||||||
|
--custom-text-header-shadow:#37f592;
|
||||||
|
--custom-text-header-animation: textflicker;
|
||||||
|
--input-font: 'Share Tech Mono', monospace;
|
||||||
|
--text-font: 'Share Tech Mono', monospace;
|
||||||
|
--loginbox-background-color: transparent;
|
||||||
|
--text-shadow: 0 0 8px;
|
||||||
|
--text-shadow-color: #37f592;
|
||||||
|
--box-shadow: 0 0 15px;
|
||||||
|
}
|
31
CSS/addons/unraid/login-page/alien/retro-terminal/red.css
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
/*_____________________RED_THEME______________________*/
|
||||||
|
/*--body-before:#70d7f61a; /* This is the background that flickers, background uses a transparency of 10%, SET IT TO BLACK TO REMOVE FLICKER! */
|
||||||
|
/*--body-after: #70d7f61a; /* This is the background that creates the crt lines, background uses a transparency of 20% */
|
||||||
|
/*--custom-text-header-animation: textflicker; /* SET TO NONE TO REMOVE THE FLICKER ANIMATION! */
|
||||||
|
|
||||||
|
@import url(https://gflix.app/theme.park/CSS/addons/unraid/login-page/alien/retro-terminal/retro-terminal-base.css);
|
||||||
|
:root {
|
||||||
|
--main-bg-color: black;
|
||||||
|
--body-before: #ff00001a;
|
||||||
|
--body-after: #ff000033;
|
||||||
|
--logo: url(https://gflix.app/theme.park/CSS/addons/unraid/login-page/alien/logo/nostromored.png) center no-repeat;
|
||||||
|
--text-color: #e22828;
|
||||||
|
--input-color: #e22828;
|
||||||
|
--link-color: #e22828;
|
||||||
|
--link-color-hover: #ffffff;
|
||||||
|
--case-color: #e22828;
|
||||||
|
--button-text-color: #e22828;
|
||||||
|
--button-text-color-hover: #000;
|
||||||
|
--button-color: #e22828;
|
||||||
|
--button-color-hover: #ffffff;
|
||||||
|
--selection-color: #ffffff;
|
||||||
|
--custom-text-header: #e22828;
|
||||||
|
--custom-text-header-shadow: #e22828;
|
||||||
|
--custom-text-header-animation: textflicker;
|
||||||
|
--input-font: 'Share Tech Mono', monospace;
|
||||||
|
--text-font: 'Share Tech Mono', monospace;
|
||||||
|
--loginbox-background-color: transparent;
|
||||||
|
--text-shadow: 0 0 8px;
|
||||||
|
--text-shadow-color: #e22828;
|
||||||
|
--box-shadow: 0 0 15px;
|
||||||
|
}
|
@ -0,0 +1,376 @@
|
|||||||
|
@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";
|
||||||
|
|
||||||
|
/*___FONTS___*/
|
||||||
|
|
||||||
|
/* 'VT323', 'Share Tech Mono' */
|
||||||
|
|
||||||
|
|
||||||
|
/* Replace the variables if you have a dark background */
|
||||||
|
/* Light colors for dark backgrounds */
|
||||||
|
/*
|
||||||
|
--div-background-color-10: rgba(255, 255, 255, 0.1);
|
||||||
|
--div-background-color-15: rgba(255, 255, 255, 0.15);
|
||||||
|
--div-background-color-25: rgba(255, 255, 255, 0.25);
|
||||||
|
--div-background-color-35: rgba(255, 255, 255, 0.35);
|
||||||
|
|
||||||
|
|
||||||
|
https://www.transparenttextures.com/patterns/hexellence.png
|
||||||
|
https://www.transparenttextures.com/patterns/gplay.png
|
||||||
|
https://www.transparenttextures.com/patterns/simple-horizontal-light.png
|
||||||
|
https://www.colourlovers.com/palette/3428762/Fallout?widths=1
|
||||||
|
|
||||||
|
https://codepen.io/meduzen/pen/zxbwRV
|
||||||
|
https://codepen.io/lbebber/pen/XJRdrV/ CRT KEY FRAMES
|
||||||
|
https://brennan.io/2017/06/14/alien-computer-card/
|
||||||
|
https://www.cssmatic.com/noise-texture
|
||||||
|
|
||||||
|
https://codepen.io/somethingformed/pen/raWJXV
|
||||||
|
|
||||||
|
|
||||||
|
============ SOURCES =============
|
||||||
|
https://github.com/brenns10/alien-console
|
||||||
|
https://github.com/Swordfish90/cool-retro-term
|
||||||
|
https://github.com/andersevenrud/retro-css-shell-demo CRT INTERLACE
|
||||||
|
https://codepen.io/lbebber/pen/XJRdrV/ CRT KEY FRAMES
|
||||||
|
https://codepen.io/patrickhlauke/pen/YaoBop TEXT FLIKER
|
||||||
|
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
#!/bin/bash
|
||||||
|
sed -i -e '\@<style>@i\ <link rel="stylesheet" href="https:\/\/gflix.app\/customfiles\/fallout.css">' /usr/local/emhttp/login.php
|
||||||
|
# add video background
|
||||||
|
sed -i -e '\@<body>@a\ div class="background-wrap"><video id="video-bg-elem" preload="auto" autoplay="true" loop="loop" muted="muted"> <source src="https:\/\/gflix.app\/customfiles\/VaultTecCRTLoop.mp4" type="video\/mp4">Video not supported<\/video><\/div>' /usr/local/emhttp/login.php
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@media (max-width: 500px) {
|
||||||
|
#login {
|
||||||
|
-webkit-backdrop-filter: blur(0px);
|
||||||
|
backdrop-filter: blur(0px);
|
||||||
|
position: absolute;
|
||||||
|
padding-top: 0rem !important;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
border-radius: none !important;
|
||||||
|
}
|
||||||
|
.background-wrap,#video-bg-elem,.custom-text-header {display: none;}
|
||||||
|
#login {
|
||||||
|
border:none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
html {background: var(--main-bg-color) !important;}
|
||||||
|
body {background: var(--main-bg-color) !important;}
|
||||||
|
/* CRT SCREEN FLICKER*/
|
||||||
|
body::before {
|
||||||
|
content: "";
|
||||||
|
background: radial-gradient(ellipse at center,var(--body-before) 0,rgb(0, 0, 0) 100%) !important;
|
||||||
|
background-repeat: repeat-y !important;
|
||||||
|
background-size: 100% 4px !important;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
animation: flicker 0.01s infinite;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
/* CRT BACKGROUND WITH LINES*/
|
||||||
|
body::after {
|
||||||
|
content: "";
|
||||||
|
background: radial-gradient(ellipse at center,var(--body-after) 0,rgba(0, 0, 0, 0.6) 80%) center center/cover no-repeat fixed, linear-gradient(#0000 0%,#0000 0%) !important;
|
||||||
|
background-repeat: repeat-y !important;
|
||||||
|
background-size: 100% 4px !important;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes flicker {0% {opacity: 0.37633;}5% {opacity: 0.70002;}10% {opacity: 0.64427;}15% {opacity: 0.35591;}20% {opacity: 0.34054;}25% {opacity: 0.54917;}30% {opacity: 0.41056;}35% {opacity: 0.67637;}40% {opacity: 0.23681;}45% {opacity: 0.64945;}50% {opacity: 0.67522;}55% {opacity: 0.56049;}60% {opacity: 0.06113;}65% {opacity: 0.95766;}70% {opacity: 0.77945;}75% {opacity: 0.33817;}80% {opacity: 0.19735;}85% {opacity: 0.84337;}90% {opacity: 0.82867;}95% {opacity: 0.65512;}100% {opacity: 0.15179;}}
|
||||||
|
|
||||||
|
@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 {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
min-height: 100%;
|
||||||
|
min-width: 100%;
|
||||||
|
}
|
||||||
|
/*TEXT COLOR*/
|
||||||
|
#login h1,
|
||||||
|
#login h2,
|
||||||
|
#login .error {
|
||||||
|
color: var(--text-color) !important;
|
||||||
|
text-shadow: var(--text-shadow) var(--text-shadow-color);
|
||||||
|
}
|
||||||
|
#login a {
|
||||||
|
color: var(--link-color);
|
||||||
|
text-shadow: var(--text-shadow) var(--text-shadow-color);
|
||||||
|
}
|
||||||
|
#login a:hover {
|
||||||
|
color: var(--link-color-hover);
|
||||||
|
text-shadow: var(--text-shadow) var(--text-shadow-color);
|
||||||
|
}
|
||||||
|
#login input {
|
||||||
|
color: var(--input-color);
|
||||||
|
text-shadow: 0 0 5px var(--text-shadow-color);
|
||||||
|
}
|
||||||
|
#login ::placeholder {
|
||||||
|
color: var(--input-color);
|
||||||
|
text-shadow: 0 0 5px var(--text-shadow-color);
|
||||||
|
}
|
||||||
|
#login ::-webkit-input-placeholder {
|
||||||
|
color: var(--input-color);
|
||||||
|
text-shadow: 0 0 5px var(--text-shadow-color);
|
||||||
|
}
|
||||||
|
#login ::-moz-placeholder {
|
||||||
|
color: var(--input-color);
|
||||||
|
text-shadow: 0 0 5px var(--text-shadow-color);
|
||||||
|
}
|
||||||
|
#login :-ms-input-placeholder {
|
||||||
|
color: var(--input-color);
|
||||||
|
text-shadow: 0 0 5px var(--text-shadow-color);
|
||||||
|
}
|
||||||
|
#login :-moz-placeholder {
|
||||||
|
color: var(--input-color);
|
||||||
|
text-shadow: 0 0 5px var(--text-shadow-color);
|
||||||
|
}
|
||||||
|
#login input:focus::-webkit-input-placeholder {
|
||||||
|
color: transparent !important;
|
||||||
|
text-shadow: 0 0 0px transparent;
|
||||||
|
}
|
||||||
|
#login input:focus:-moz-placeholder {
|
||||||
|
color: transparent !important;
|
||||||
|
text-shadow: 0 0 0px transparent;
|
||||||
|
}
|
||||||
|
#login input:focus::-moz-placeholder {
|
||||||
|
color: transparent !important;
|
||||||
|
text-shadow: 0 0 0px transparent;
|
||||||
|
}
|
||||||
|
#login input:focus:-ms-input-placeholder {
|
||||||
|
color: transparent !important;
|
||||||
|
text-shadow: 0 0 0px transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*TEXT FONT*/
|
||||||
|
#login h1,
|
||||||
|
#login h2,
|
||||||
|
#login a,
|
||||||
|
#login .button,
|
||||||
|
#login .error {
|
||||||
|
font-family: var(--text-font);
|
||||||
|
-webkit-font-smoothing: none;
|
||||||
|
line-height: 1.2;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3em;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 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);
|
||||||
|
text-shadow: var(--text-shadow) var(--text-shadow-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: 0px;
|
||||||
|
border: 3px solid var(--text-color);
|
||||||
|
color: var(--text-color);
|
||||||
|
}
|
||||||
|
#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);
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*BUTTON*/
|
||||||
|
#login .button {
|
||||||
|
color: var(--button-text-color);
|
||||||
|
text-shadow: var(--text-shadow) var(--text-shadow-color);
|
||||||
|
background: linear-gradient(90deg, var(--button-color) 0, var(--button-color)) 0 0 no-repeat, linear-gradient(90deg, var(--button-color) 0, var(--button-color)) 0 100% no-repeat, linear-gradient(0deg, var(--button-color) 0, var(--button-color)) 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-color)), to(var(--button-color))) 0 0 no-repeat, -webkit-gradient(linear, left top, right top, from(var(--button-color)), to(var(--button-color))) 0 100% no-repeat, -webkit-gradient(linear, left bottom, left top, from(var(--button-color)), to(var(--button-color))) 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);
|
||||||
|
text-shadow: var(--text-shadow) var(--button-color-hover);
|
||||||
|
box-shadow: var(--box-shadow) var(--button-color-hover);
|
||||||
|
background-color: var(--button-color-hover);
|
||||||
|
background: -webkit-gradient(linear, left top, right top, from(var(--button-color-hover)), to(var(--button-color-hover)));
|
||||||
|
background: linear-gradient(90deg, var(--button-color-hover) 0, var(--button-color-hover));
|
||||||
|
}
|
||||||
|
|
||||||
|
/*LOGIN ID*/
|
||||||
|
#login {
|
||||||
|
background: var(--loginbox-background-color) !important;
|
||||||
|
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;
|
||||||
|
border-radius: 0px !important;
|
||||||
|
border: 3px dashed var(--text-color);
|
||||||
|
}
|
||||||
|
#login .angle::after {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
#login .wordmark svg {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
#login .logo {
|
||||||
|
background: var(--logo);
|
||||||
|
background-size: contain;
|
||||||
|
padding: 2rem;
|
||||||
|
border-radius: 0;
|
||||||
|
margin: 0rem 1rem 0rem 1rem;
|
||||||
|
}
|
||||||
|
logo.angle {
|
||||||
|
-webkit-box-shadow: inset 0px 0px 0px 2px var(--text-color) !important;
|
||||||
|
box-shadow: inset 0px 0px 0px 2px var(--text-color) !important;
|
||||||
|
border-radius: 0px !important;
|
||||||
|
}
|
||||||
|
#login .error {
|
||||||
|
animation-name: shake;
|
||||||
|
animation-duration: .7s;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*CUSTOM HEADER*/
|
||||||
|
.custom-text-header {
|
||||||
|
white-space: pre;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
font-family: var(--text-font);
|
||||||
|
-webkit-font-smoothing: none;
|
||||||
|
font-weight: 900;
|
||||||
|
line-height: 1.5;
|
||||||
|
color: var(--custom-text-header) !important;
|
||||||
|
text-shadow: 0 0 20px var(--custom-text-header-shadow);
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
top: -15%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
-ms-transform: translate(-50%, -50%);
|
||||||
|
-webkit-transform: translate(-50%, -50%);
|
||||||
|
animation-duration: 0.01s;
|
||||||
|
animation-name: var(--custom-text-header-animation);
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
animation-direction: alternate;
|
||||||
|
font-weight: 900;
|
||||||
|
}
|
||||||
|
.custom-text-header:after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
top: 111px;
|
||||||
|
right: -15px;
|
||||||
|
background-color: var(--custom-text-header);
|
||||||
|
vertical-align: top;
|
||||||
|
width: 20px;
|
||||||
|
height: 2px;
|
||||||
|
-webkit-animation: blink 1s step-end infinite;
|
||||||
|
animation: blink 1s step-end infinite;
|
||||||
|
}
|
||||||
|
@-webkit-keyframes blink {
|
||||||
|
0% { opacity: 1.0; }
|
||||||
|
50% { opacity: 0.0; }
|
||||||
|
100% { opacity: 1.0; }
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes blink {
|
||||||
|
0% { opacity: 1.0; }
|
||||||
|
50% { opacity: 0.0; }
|
||||||
|
100% { opacity: 1.0; }
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes textflicker {
|
||||||
|
from {
|
||||||
|
text-shadow: 1px 0 0 #ea36af, -2px 0 0 #75fa69;
|
||||||
|
border: 10px 0 0 #ea36af, -2px 0 0 #75fa69;
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
|
||||||
|
border: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
::selection {
|
||||||
|
background: var(--selection-color); /* WebKit/Blink Browsers */
|
||||||
|
}
|
||||||
|
::-moz-selection {
|
||||||
|
background: var(--selection-color); /* Gecko Browsers */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
__ ___ __
|
||||||
|
____ ____ _____/ /__________ ____ ___ ____ / (_)___ / /__
|
||||||
|
/ __ \/ __ \/ ___/ __/ ___/ __ \/ __ `__ \/ __ \/ / / __ \/ //_/
|
||||||
|
/ / / / /_/ (__ ) /_/ / / /_/ / / / / / / /_/ / / / / / / ,<
|
||||||
|
/_/ /_/\____/____/\__/_/ \____/_/ /_/ /_/\____/_/_/_/ /_/_/|_|
|
||||||
|
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
<div class="custom-text-header"> <pre> __ ___ __
|
||||||
|
____ ____ _____/ /__________ ____ ___ ____ / (_)___ / /__
|
||||||
|
/ __ \/ __ \/ ___/ __/ ___/ __ \/ __ `__ \/ __ \/ / / __ \/ //_/
|
||||||
|
/ / / / /_/ (__ ) /_/ / / /_/ / / / / / / /_/ / / / / / / ,<
|
||||||
|
/_/ /_/\____/____/\__/_/ \____/_/ /_/ /_/\____/_/_/_/ /_/_/|_|
|
||||||
|
</pre> </div>
|
||||||
|
|
||||||
|
*/
|
31
CSS/addons/unraid/login-page/alien/retro-terminal/temp.css
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
/*_____________________AMBER_THEME______________________*/
|
||||||
|
/*--body-before:#ffb52a1a; /* This is the background that flickers, background uses a transparency of 10%, SET IT TO BLACK TO REMOVE FLICKER! */
|
||||||
|
/*--body-after: #ffb52a33; /* This is the background that creates the crt lines, background uses a transparency of 20% */
|
||||||
|
/*--custom-text-header-animation: textflicker; /* SET TO NONE TO REMOVE THE FLICKER ANIMATION! */
|
||||||
|
|
||||||
|
@import url(https://gflix.app/theme.park/CSS/addons/unraid/login-page/alien/retro-terminal/retro-terminal-base.css);
|
||||||
|
:root {
|
||||||
|
--main-bg-color:black;
|
||||||
|
--body-before:#ffb52a1a;
|
||||||
|
--body-after: #ffb52a33;
|
||||||
|
--logo: url(https://gflix.app/theme.park/CSS/addons/unraid/login-page/alien/logo/nostromoyellow.png) center no-repeat;
|
||||||
|
--text-color: #ffb52a;
|
||||||
|
--input-color: #ffb52a;
|
||||||
|
--link-color: #ffb52a;
|
||||||
|
--link-color-hover: #ff6868;
|
||||||
|
--case-color: #ffb52a;
|
||||||
|
--button-text-color: #ffb52a;
|
||||||
|
--button-text-color-hover: #000;
|
||||||
|
--button-color: #ffb52a;
|
||||||
|
--button-color-hover: #ff6868;
|
||||||
|
--selection-color: #ff6868;
|
||||||
|
--custom-text-header:#ffb52a;
|
||||||
|
--custom-text-header-shadow:#ffb52a;
|
||||||
|
--custom-text-header-animation: textflicker;
|
||||||
|
--input-font: 'Share Tech Mono', monospace;
|
||||||
|
--text-font: 'Share Tech Mono', monospace;
|
||||||
|
--loginbox-background-color: transparent;
|
||||||
|
--text-shadow: 0 0 8px;
|
||||||
|
--text-shadow-color: #ffb52a;
|
||||||
|
--box-shadow: 0 0 15px;
|
||||||
|
}
|
31
CSS/addons/unraid/login-page/alien/retro-terminal/white.css
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
/*_____________________WHITE_THEME______________________*/
|
||||||
|
/*--body-before:#70d7f61a; /* This is the background that flickers, background uses a transparency of 10%, SET IT TO BLACK TO REMOVE FLICKER! */
|
||||||
|
/*--body-after: #70d7f61a; /* This is the background that creates the crt lines, background uses a transparency of 20% */
|
||||||
|
/*--custom-text-header-animation: textflicker; /* SET TO NONE TO REMOVE THE FLICKER ANIMATION! */
|
||||||
|
|
||||||
|
@import url(https://gflix.app/theme.park/CSS/addons/unraid/login-page/alien/retro-terminal/retro-terminal-base.css);
|
||||||
|
:root {
|
||||||
|
--main-bg-color:black;
|
||||||
|
--body-before:#70d7f61a;
|
||||||
|
--body-after: #70d7f633;
|
||||||
|
--logo: url(https://gflix.app/theme.park/CSS/addons/unraid/login-page/alien/logo/nostromo3.png) center no-repeat;
|
||||||
|
--text-color: #ffffff;
|
||||||
|
--input-color: #ffffff;
|
||||||
|
--link-color: #ffffff;
|
||||||
|
--link-color-hover: #8f2809;
|
||||||
|
--case-color: #ffffff;
|
||||||
|
--button-text-color: #ffffff;
|
||||||
|
--button-text-color-hover: #000;
|
||||||
|
--button-color: #ffffff;
|
||||||
|
--button-color-hover: #af0606;
|
||||||
|
--selection-color: #8f2809;
|
||||||
|
--custom-text-header:#ffffff;
|
||||||
|
--custom-text-header-shadow:#ffffff;
|
||||||
|
--custom-text-header-animation: textflicker;
|
||||||
|
--input-font: 'Share Tech Mono', monospace;
|
||||||
|
--text-font: 'Share Tech Mono', monospace;
|
||||||
|
--loginbox-background-color: transparent;
|
||||||
|
--text-shadow: 0 0 8px;
|
||||||
|
--text-shadow-color: #ffffff;
|
||||||
|
--box-shadow: 0 0 15px;
|
||||||
|
}
|
BIN
CSS/addons/unraid/login-page/alien/video/isolation.mp4
Normal file
BIN
CSS/addons/unraid/login-page/alien/wallpaper/hallway.jpg
Normal file
After Width: | Height: | Size: 272 KiB |
BIN
CSS/addons/unraid/login-page/alien/wallpaper/hallway2.jpg
Normal file
After Width: | Height: | Size: 192 KiB |
BIN
CSS/addons/unraid/login-page/alien/wallpaper/hallway3.jpg
Normal file
After Width: | Height: | Size: 326 KiB |
BIN
CSS/addons/unraid/login-page/alien/wallpaper/hallway4.jpg
Normal file
After Width: | Height: | Size: 3.8 MiB |
BIN
CSS/addons/unraid/login-page/alien/wallpaper/isolation.png
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
CSS/addons/unraid/login-page/alien/wallpaper/nightmare.png
Normal file
After Width: | Height: | Size: 4.0 MiB |
BIN
CSS/addons/unraid/login-page/alien/wallpaper/noise.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
CSS/addons/unraid/login-page/alien/wallpaper/ripley.jpg
Normal file
After Width: | Height: | Size: 219 KiB |
BIN
CSS/addons/unraid/login-page/alien/wallpaper/scanner.jpg
Normal file
After Width: | Height: | Size: 137 KiB |
BIN
CSS/addons/unraid/login-page/alien/wallpaper/xeno.jpg
Normal file
After Width: | Height: | Size: 80 KiB |
224
CSS/addons/unraid/login-page/fallout/fallout.css
Normal file
@ -0,0 +1,224 @@
|
|||||||
|
@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";
|
||||||
|
:root {
|
||||||
|
--main-bg-color: url(https://gflix.app/customfiles/rocky-wall.png), url(https://gflix.app/customfiles/6Ua3u8.jpg) center center/cover no-repeat fixed;
|
||||||
|
--logo: url(https://gflix.app/customfiles/vault.png) center no-repeat;
|
||||||
|
--text-color: #14F074;
|
||||||
|
--input-color: #14F074;
|
||||||
|
--link-color: #14F074;
|
||||||
|
--link-color-hover: #0C833D;
|
||||||
|
--case-color: #14F074;
|
||||||
|
--button-text-color: #14F074;
|
||||||
|
--button-text-color-hover: #FFFFFF;
|
||||||
|
--button-color: #14F074;
|
||||||
|
--button-color2: #0C833D;
|
||||||
|
--input-font: 'Share Tech Mono', monospace;
|
||||||
|
--text-font: 'Share Tech Mono', monospace;
|
||||||
|
--div-background-color-15: rgba(0, 0, 0, 0.25);
|
||||||
|
|
||||||
|
/* Replace the variables if you have a dark background */
|
||||||
|
/* Light colors for dark backgrounds */
|
||||||
|
/*
|
||||||
|
--div-background-color-10: rgba(255, 255, 255, 0.1);
|
||||||
|
--div-background-color-15: rgba(255, 255, 255, 0.15);
|
||||||
|
--div-background-color-25: rgba(255, 255, 255, 0.25);
|
||||||
|
--div-background-color-35: rgba(255, 255, 255, 0.35);
|
||||||
|
https://www.transparenttextures.com/patterns/hexellence.png
|
||||||
|
https://www.transparenttextures.com/patterns/gplay.png
|
||||||
|
https://www.transparenttextures.com/patterns/simple-horizontal-light.png
|
||||||
|
https://www.colourlovers.com/palette/3428762/Fallout?widths=1
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
#!/bin/bash
|
||||||
|
sed -i -e '\@<style>@i\ <link rel="stylesheet" href="https:\/\/gflix.app\/customfiles\/fallout.css">' /usr/local/emhttp/login.php
|
||||||
|
# add video background
|
||||||
|
sed -i -e '\@<body>@a\ div class="background-wrap"><video id="video-bg-elem" preload="auto" autoplay="true" loop="loop" muted="muted"> <source src="https:\/\/gflix.app\/customfiles\/VaultTecCRTLoop.mp4" type="video\/mp4">Video not supported<\/video><\/div>' /usr/local/emhttp/login.php
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
|
||||||
|
@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 {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
min-height: 100%;
|
||||||
|
min-width: 100%;
|
||||||
|
}
|
||||||
|
/*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;
|
||||||
|
}
|
BIN
CSS/addons/unraid/login-page/fallout/logo/vault-bev.png
Normal file
After Width: | Height: | Size: 117 KiB |
BIN
CSS/addons/unraid/login-page/fallout/logo/vault.png
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
CSS/addons/unraid/login-page/fallout/logo/vaultC.png
Normal file
After Width: | Height: | Size: 112 KiB |
BIN
CSS/addons/unraid/login-page/fallout/video/VaultTecCRTLoop.mp4
Normal file
BIN
CSS/addons/unraid/login-page/fallout/wallpaper/6Ua3u8.jpg
Normal file
After Width: | Height: | Size: 1.1 MiB |
BIN
CSS/addons/unraid/login-page/fallout/wallpaper/rocky-wall.png
Normal file
After Width: | Height: | Size: 100 KiB |
BIN
CSS/addons/unraid/login-page/fallout/wallpaper/terminal.jpg
Normal file
After Width: | Height: | Size: 424 KiB |