77 lines
1.5 KiB
SCSS
77 lines
1.5 KiB
SCSS
.shareScreenWindow {
|
|
color: white;
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.shareScreenWindowTitle {
|
|
font-size: 12px;
|
|
flex-shrink: 0;
|
|
padding: 4px;
|
|
box-sizing: border-box;
|
|
background-color: lighten(#07090B, 4%);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
>span:nth-child(2) {
|
|
cursor: pointer;
|
|
background-color: #FF5219;
|
|
padding: 1px 10px;
|
|
border-radius: 2px;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
.shareScreenWindowContent {
|
|
flex-grow: 1;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
opacity: 0;
|
|
background-color: #07090B;
|
|
display: flex;
|
|
|
|
&:hover {
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
.shareScreenWindowContentList {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
justify-content: space-between;
|
|
|
|
>div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
width: calc(100% / 6);
|
|
|
|
>div {
|
|
position: relative;
|
|
|
|
>img {
|
|
height: 24px;
|
|
width: 24px;
|
|
}
|
|
|
|
>div {
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
background-repeat: no-repeat;
|
|
background-position: bottom center;
|
|
background-size: cover;
|
|
width: 100%;
|
|
height: 0%;
|
|
}
|
|
}
|
|
|
|
>span {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |