wyyl/public/install/css/app.css

97 lines
1.8 KiB
CSS

body .install-box {
background-color: #f3f6f8;
display: flex;
height: 100vh;
margin: auto;
}
body .install-box > .aside-wrap {
width: 30%;
background-color: #fff;
padding: 40px 20px 40px 40px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
body .install-box > .content {
width: 70%;
padding: 40px 60px;
}
@media (min-width: 1441px) {
body .install-box > .content {
width: 60%;
}
}
body .install-box .language-switch .form-select {
width: auto;
}
.aside-wrap .logo img {
max-width: 180px;
}
.aside-wrap .steps-wrap ul {
padding-left: 0;
list-style: none;
}
.aside-wrap .steps-wrap ul li {
margin-bottom: 30px;
font-size: 16px;
color: #333;
display: flex;
align-items: center;
justify-content: space-between;
}
.aside-wrap .steps-wrap ul li .left {
display: flex;
align-items: center;
}
.aside-wrap .steps-wrap ul li .right {
display: none;
}
.aside-wrap .steps-wrap ul li span.index {
width: 40px;
height: 40px;
border: 2px solid #ddd;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 18px;
color: #666;
}
.aside-wrap .steps-wrap ul li.success {
color: #999;
}
.aside-wrap .steps-wrap ul li.success span.index {
background-color: #5dca86;
border-color: #5dca86;
color: #fff;
}
.aside-wrap .steps-wrap ul li.success span.index i {
font-size: 24px;
}
.aside-wrap .steps-wrap ul li.ing {
color: #fd560f;
}
.aside-wrap .steps-wrap ul li.ing span.index {
border-color: #fd560f;
color: #fd560f;
}
.aside-wrap .steps-wrap ul li.ing span.index i {
font-size: 24px;
}
.aside-wrap .steps-wrap ul li.ing .right {
display: block;
}
.aside-wrap .steps-wrap ul li.ing .right i {
font-size: 24px;
line-height: 1;
}
.install-1 .welcome-img {
max-width: 400px;
margin: 60px 0;
}
.install-1 .guide-text {
max-width: 500px;
}