mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
108 lines
2.3 KiB
SCSS
108 lines
2.3 KiB
SCSS
.app-lock-screen__content {
|
|
&.app-lock-screen__content--full {
|
|
width: 100%;
|
|
height: var(--html-height);
|
|
@include flexCenter;
|
|
}
|
|
|
|
& .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: 16.67rem;
|
|
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.875rem;
|
|
line-height: 2.25rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.ray-template--light {
|
|
.app-lock-screen__unlock__content-bg__wrapper {
|
|
background-color: #fff !important;
|
|
}
|
|
|
|
.app-lock-screen__unlock__content-bg {
|
|
& .left,
|
|
& .right {
|
|
background-color: rgba(244, 244, 245, 1) !important;
|
|
}
|
|
}
|
|
}
|