mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 12:32:30 +08:00
* feat: add llm type to Added models List * feat: alter tooltip of base_url * feat: add background image to login page
107 lines
2.1 KiB
Plaintext
107 lines
2.1 KiB
Plaintext
@import '../../theme/vars';
|
|
|
|
.loginPage {
|
|
display: flex;
|
|
.loginLeft {
|
|
// width: 610px;
|
|
width: 40%;
|
|
background-color: #fff;
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.leftContainer {
|
|
width: 60%;
|
|
padding: 5px, 0px, 5px, 0px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.loginRight {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 1;
|
|
position: relative;
|
|
&::before {
|
|
content: ' ';
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: rgba(24, 73, 169, 0.6);
|
|
background-image: url('@/assets/svg/login-background.svg');
|
|
background-size: cover;
|
|
background-blend-mode: multiply;
|
|
filter: blur(3px);
|
|
background-position: center;
|
|
z-index: -1;
|
|
}
|
|
.white {
|
|
color: #fff;
|
|
}
|
|
.pink {
|
|
color: #e9d7fe;
|
|
}
|
|
.rightPanel {
|
|
max-width: 640px;
|
|
.loginTitle {
|
|
font-size: 72px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: 90px;
|
|
letter-spacing: -1.44px;
|
|
}
|
|
.loginDescription {
|
|
font-size: 20px;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
line-height: 30px;
|
|
}
|
|
.loginRateNumber {
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: 24px;
|
|
}
|
|
.loginRateReviews {
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.loginTitle {
|
|
//styleName: Heading/1;
|
|
font-size: 38px;
|
|
font-weight: 600;
|
|
line-height: 46px;
|
|
letter-spacing: 0em;
|
|
height: 80px;
|
|
margin-bottom: 69px;
|
|
|
|
// text-align: center;
|
|
span {
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
|
|
color: #000000a6;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 957px) {
|
|
.loginLeft {
|
|
width: 100%;
|
|
background-color: #fff;
|
|
height: 100%;
|
|
}
|
|
|
|
.modal {
|
|
width: 80%;
|
|
}
|
|
}
|
|
}
|