You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
161 lines
3.3 KiB
161 lines
3.3 KiB
|
|
|
|
.plans{
|
|
width: 100%;
|
|
|
|
.phone{
|
|
position: relative;
|
|
height: 570px;
|
|
width: 245px;
|
|
background-image: url(../images/phone.png);
|
|
background-position: center bottom;
|
|
background-repeat: no-repeat;
|
|
background-size: 245px 500px;
|
|
|
|
.name{
|
|
position: absolute;
|
|
left: 60px;
|
|
top: 5px;
|
|
font-size: $font-12;
|
|
font-weight: 700;
|
|
}
|
|
.rule{
|
|
position: absolute;
|
|
left: 60px;
|
|
top: 25px;
|
|
font-size: $font-10;
|
|
}
|
|
.avatar{
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
height: 50px;
|
|
width: 50px;
|
|
img{
|
|
height: 50px;
|
|
width: 50px;
|
|
}
|
|
}
|
|
|
|
.content{
|
|
position: absolute;
|
|
top: 145px;
|
|
left: 12px;
|
|
height: 371px;
|
|
width: 223px;
|
|
overflow: hidden;
|
|
|
|
.cloud{
|
|
display: none;
|
|
position: relative;
|
|
width: 80%;
|
|
font-size: $font-12;
|
|
font-weight: 500;
|
|
padding: 10px;
|
|
margin: 10px 0;
|
|
border-radius: 8px;
|
|
|
|
img{
|
|
width: 100%;
|
|
padding: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
&.left{
|
|
left: 15px;
|
|
background: $pink;
|
|
border: 1px solid $dark-pink;
|
|
&:before{
|
|
content: '';
|
|
border: solid 8px transparent;
|
|
border-right-color: $dark-pink;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 50%;
|
|
transform: translate(-100%, -50%);
|
|
}
|
|
&:after{
|
|
content: '';
|
|
border: solid 7px transparent;
|
|
border-right-color: $pink;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 50%;
|
|
transform: translate(-100%, -50%);
|
|
}
|
|
}
|
|
|
|
&.right{
|
|
left: calc(20% - 13px);
|
|
background: $azure;
|
|
border: 1px solid $dark-azure;
|
|
&:before{
|
|
content: '';
|
|
border: solid 8px transparent;
|
|
border-left-color: $dark-azure;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 50%;
|
|
transform: translate(100%, -50%);
|
|
}
|
|
&:after{
|
|
content: '';
|
|
border: solid 7px transparent;
|
|
border-left-color: $azure;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 50%;
|
|
transform: translate(100%, -50%);
|
|
}
|
|
}
|
|
|
|
&.empty{
|
|
width: 100%;
|
|
text-align: center;
|
|
padding: 0;
|
|
}
|
|
|
|
}
|
|
|
|
.video{
|
|
display: none;
|
|
position: absolute;
|
|
top: 0;
|
|
left:0;
|
|
height: 371px;
|
|
width: 223px;
|
|
background: black;
|
|
.video-close{
|
|
position: absolute;
|
|
top: 0;
|
|
right: 3px;
|
|
height: 20px;
|
|
width: 20px;
|
|
cursor: pointer;
|
|
z-index: 10;
|
|
|
|
&:after{
|
|
content: '\f00d';
|
|
font-family: $icon;
|
|
font-size: $font-20;
|
|
color: white;
|
|
}
|
|
}
|
|
video{
|
|
height: 371px;
|
|
width: 223px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.input{
|
|
position: absolute;
|
|
top: 516px;
|
|
left: 12px;
|
|
height: 42px;
|
|
width: 223px;
|
|
border-radius: 0 0 26px 26px;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
}
|