WGShare.Client.Electron/src/components/StupWizard/index.module.scss

228 lines
3.2 KiB
SCSS

// 设置向导
.stupWizard {
height: 70vh;
display: flex;
.stupWizardLeft {
background-color: #0C111A;
flex-shrink: 0;
width: 154px;
height: 100%;
overflow-y: auto;
>div {
display: flex;
align-items: center;
cursor: pointer;
padding: 12px 16px;
box-sizing: border-box;
>span {
color: #EEEEEE;
font-size: 16px;
margin-left: 10px;
}
>img {
height: 20px;
}
}
.active {
background-color: #131924;
>span {
color: #5575F2;
}
}
}
.stupWizardRight {
flex-grow: 1;
height: 100%;
position: relative;
>div {
display: flex;
flex-direction: column;
height: 100%;
>span {
flex-shrink: 0;
color: #FFFFFF;
font-size: 16px;
border-bottom: 1px solid #292E33;
padding: 10px 20px;
box-sizing: border-box;
}
>div {
flex-grow: 1;
overflow-y: auto;
overflow-x: hidden;
padding: 20px;
box-sizing: border-box;
}
}
}
}
.videoComponents {
>div:nth-child(1) {
width: 100%;
height: 296px;
border-radius: 10px;
overflow: hidden;
border: 1px #292E33 solid;
position: relative;
>div {
width: 100%;
height: 100%;
z-index: 1;
position: absolute;
left: 0;
top: 0;
}
}
>div:nth-child(2) {
width: 100%;
margin-top: 10px;
display: flex;
align-items: center;
>span {
color: white;
}
}
}
.audioComponents {
>div {
padding-bottom: 20px;
border-bottom: 1px solid #292E33;
margin-bottom: 20px;
&:last-child {
padding-bottom: 0px;
margin-bottom: 0px;
border: none;
}
}
.audioComponentsSelect {
display: flex;
align-items: center;
margin-bottom: 10px;
>span {
color: #878787;
flex-shrink: 0;
}
>div {
color: #5575F2;
flex-shrink: 0;
cursor: pointer;
}
}
.audioComponentsVolume {
display: flex;
align-items: center;
margin-bottom: 10px;
>img {
margin-right: 20px;
height: 26px;
}
>div {
height: 40px;
position: relative;
>img {
height: 100%;
}
>div {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 0%;
overflow: hidden;
>img {
height: 100%;
}
}
}
}
.audioComponentsSlider {
display: flex;
align-items: center;
margin-bottom: 10px;
>span {
color: #878787;
}
}
}
.recordingComponents {
>span {
color: #bfbfbf;
font-size: 16px;
}
>div {
display: flex;
align-items: center;
margin-top: 10px;
>span {
color: #878787;
white-space: nowrap;
}
}
}
.fileComponents {
>span {
color: #bfbfbf;
font-size: 16px;
}
>div {
display: flex;
align-items: center;
margin-top: 10px;
>span {
color: #878787;
white-space: nowrap;
}
}
}
.currencyComponents {
>div {
>div {
display: flex;
flex-direction: column;
>span {
color: #bfbfbf;
font-size: 16px;
}
}
}
}