mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-10-08 08:10:10 +08:00
88 lines
1.9 KiB
SCSS
88 lines
1.9 KiB
SCSS
.app-lock-screen__content {
|
|
& .app-lock-screen__input {
|
|
& button[class*='n-button'] {
|
|
width: 100%;
|
|
}
|
|
|
|
& form[class*='n-form'] {
|
|
margin: 24px 0px;
|
|
}
|
|
}
|
|
|
|
& .app-lock-screen__unlock {
|
|
.app-lock-screen__unlock__content {
|
|
position: relative;
|
|
@include flexCenter;
|
|
flex-direction: column;
|
|
|
|
& .app-lock-screen__unlock__content-wrapper {
|
|
position: fixed;
|
|
inset: 0px;
|
|
|
|
& .app-lock-screen__unlock__content-bg__wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgb(16, 16, 20);
|
|
}
|
|
|
|
& .app-lock-screen__unlock__content-bg {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
@include flexCenter;
|
|
font-size: 320px;
|
|
gap: 80px;
|
|
z-index: 0;
|
|
|
|
&.app-lock-screen__unlock__content-bg--smaller {
|
|
& .left,
|
|
& .right {
|
|
padding: 0px;
|
|
font-size: 90px;
|
|
padding: 24px;
|
|
border-radius: 4px;
|
|
}
|
|
}
|
|
|
|
& .left,
|
|
& .right {
|
|
@include flexCenter;
|
|
border-radius: 30px;
|
|
background-color: #141313;
|
|
font-weight: 700;
|
|
padding: 80px;
|
|
filter: blur(4px);
|
|
}
|
|
}
|
|
}
|
|
|
|
& .app-lock-screen__unlock__content-avatar {
|
|
margin-top: 5px;
|
|
color: #bababa;
|
|
font-weight: bolder;
|
|
z-index: 1;
|
|
}
|
|
|
|
& .app-lock-screen__unlock__content-input {
|
|
width: 260px;
|
|
z-index: 1;
|
|
}
|
|
|
|
& .app-lock-screen__unlock__content-date {
|
|
position: fixed;
|
|
width: 100%;
|
|
font-size: 3rem;
|
|
text-align: center;
|
|
font-weight: 500;
|
|
bottom: 24px;
|
|
z-index: 1;
|
|
|
|
& .current-year,
|
|
& .current-date span {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|