|
|
|
|
@ -11,7 +11,7 @@ body {
|
|
|
|
|
--left-img: url(../images/login.png);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
background-color: var(--bg);
|
|
|
|
|
background-image: linear-gradient(-25deg, #FFF0 30%, #FFF2 50%, #FFF0 70%), linear-gradient(to top, var(--bg),var(--bg));
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
font-size: var(--size);
|
|
|
|
|
@ -19,6 +19,17 @@ body {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
background-image: radial-gradient(circle, #0001 .1em, #0000 1em,#0000 100%);
|
|
|
|
|
background-size: 2em 2em;
|
|
|
|
|
filter: url(#WEffectNoiseBgFilter);
|
|
|
|
|
transform: scale(2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&>.w-login-outer {
|
|
|
|
|
position: relative;
|
|
|
|
|
@ -34,13 +45,24 @@ body {
|
|
|
|
|
box-shadow: 0 0 1em #0003;
|
|
|
|
|
|
|
|
|
|
&> :first-child {
|
|
|
|
|
background-image: var(--left-img), linear-gradient(to bottom,var(--el-color-primary-light-9) 15%, var(--el-color-primary-light-8) 50%, var(--el-color-primary-light-3));
|
|
|
|
|
background-size: 70% auto, 100% 100%;
|
|
|
|
|
background-position: center center;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
box-shadow: -.3em 0 .6em #0001 inset;
|
|
|
|
|
background-image: radial-gradient(circle, #FFFFFF16 1px, #FFF0 1px,#FFF0 100%) ,linear-gradient(to bottom, var(--el-color-primary-light-9) 15%, var(--el-color-primary-light-8) 50%, var(--el-color-primary-light-3));
|
|
|
|
|
background-size: 5px 5px, auto;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
opacity: .85;
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
content:'';
|
|
|
|
|
background-image: var(--left-img);
|
|
|
|
|
background-size: 70% auto;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
@ -49,12 +71,21 @@ body {
|
|
|
|
|
top: calc(50% - 2em);
|
|
|
|
|
box-shadow: -.3em .3em .6em #0001;
|
|
|
|
|
transform: scaleX(.8) rotate(45deg);
|
|
|
|
|
|
|
|
|
|
z-index: 3;
|
|
|
|
|
width: 4em;
|
|
|
|
|
height: 4em;
|
|
|
|
|
content: '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&>div {
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
background-color: #0000;
|
|
|
|
|
background-image: radial-gradient(circle, #FFFFFF16 1px, #FFF0 1px,#FFF0 100%);
|
|
|
|
|
background-size: 5px 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.w-login-form {
|
|
|
|
|
|