This commit is contained in:
copyrighttxt
2026-08-03 14:54:38 -04:00
committed by GitHub
parent 9132bf971d
commit 21f7106021
3 changed files with 53 additions and 11 deletions
+22 -1
View File
@@ -1,11 +1,30 @@
body { body {
background-color: var(--auth-bg); position: relative;
min-height: 100vh;
background-color: #050505;
overflow-x: hidden;
isolation: isolate;
}
body::before {
content: "";
position: fixed;
inset: 0;
background-image: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)), url("/static/img/LoginPage.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
filter: blur(12px) brightness(0.7) saturate(0.85);
transform: scale(1.08);
z-index: 0;
pointer-events: none;
} }
#main { #main {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
min-height: 100vh; min-height: 100vh;
z-index: 1;
} }
.login-container { .login-container {
@@ -18,6 +37,8 @@ body {
background-color: var(--auth-card-bg); background-color: var(--auth-card-bg);
box-shadow: 0 0 15px var(--auth-card-shadow); box-shadow: 0 0 15px var(--auth-card-shadow);
border-radius: 2px; border-radius: 2px;
position: relative;
z-index: 1;
} }
.login-container p { .login-container p {
+22 -1
View File
@@ -1,5 +1,23 @@
body { body {
background-color: var(--auth-bg); position: relative;
min-height: 100vh;
background-color: #050505;
overflow-x: hidden;
isolation: isolate;
}
body::before {
content: "";
position: fixed;
inset: 0;
background-image: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)), url("/static/img/LoginPage.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
filter: blur(12px) brightness(0.7) saturate(0.85);
transform: scale(1.08);
z-index: 0;
pointer-events: none;
} }
#main { #main {
@@ -7,6 +25,7 @@ body {
justify-content: center; justify-content: center;
align-items: center; align-items: center;
min-height: 100vh; min-height: 100vh;
z-index: 1;
} }
.signup-container { .signup-container {
@@ -19,6 +38,8 @@ body {
background-color: var(--auth-card-bg); background-color: var(--auth-card-bg);
box-shadow: 0 0 15px var(--auth-card-shadow); box-shadow: 0 0 15px var(--auth-card-shadow);
border-radius: 2px; border-radius: 2px;
position: relative;
z-index: 1;
} }
.signup-logo { .signup-logo {
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB