91 lines
2.2 KiB
SCSS
91 lines
2.2 KiB
SCSS
.popup{
|
|
width: 100vw;
|
|
height: 100vh;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
.mask{
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0,0,0,0.5);
|
|
position: fixed;
|
|
top:0;
|
|
left:0;
|
|
z-index: 9;
|
|
}
|
|
.content{
|
|
z-index: 99;
|
|
background-color: #fff;
|
|
width: 75vw;
|
|
height: 600px;
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
border-radius: 20px;
|
|
transform: translateX(-50%) translateY(-50%);
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: 28px;
|
|
.title{
|
|
text-align: center;
|
|
margin: 20px;
|
|
}
|
|
.list{
|
|
height: 480px;
|
|
padding: 0 20px;
|
|
.scroll{
|
|
height: 100%;
|
|
}
|
|
.item{
|
|
margin-bottom: 20px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
border-bottom: 1px dashed #ccc;
|
|
padding: 15px 0;
|
|
color: #3b3b3b;
|
|
@mixin link{
|
|
font-size: 25px;
|
|
}
|
|
.link_success{
|
|
@include link;
|
|
color: green;
|
|
}
|
|
.link_ing {
|
|
color: orange;
|
|
}
|
|
}
|
|
.noDevice{
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #a8a8a8;
|
|
.n_item{
|
|
width: 100%;
|
|
text-align: left;
|
|
margin-top: 20px;
|
|
padding: 0 30px;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
|
|
}
|
|
.footer{
|
|
text-align: center;
|
|
padding: 20px 0;
|
|
background-color: #f1f1f1;
|
|
border-radius: 0 0 10px 10px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.finding{
|
|
color: orange;
|
|
}
|
|
.footer_off{
|
|
color: red;
|
|
}
|
|
}
|
|
}
|