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.
 
 
 
 
 
 

218 lines
3.4 KiB

@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900');
@import "variables";
@import "../../node_modules/font-awesome/scss/font-awesome";
@import "fonts";
@import "forms";
body{
font-family: 'Montserrat';
font-weight: 600;
margin: 0;
padding: 0;
overflow: hidden;
}
p,
label{
margin: 0;
}
a{
color: white;
text-decoration: none;
transition: .4s;
outline: none;
&:active,
&:visited,
&:hover,
&:focus{
outline: none;
color: white;
text-decoration: none;
}
&:hover{
color: $grey;
}
}
.content{
overflow: hidden;
position: fixed;
height: 100vh;
overflow-y: scroll;
width: calc(100vw + 17px);
.cloud{
display: none;
position: relative;
width: 70%;
font-size: $font-12;
font-weight: 500;
padding: 10px;
margin: 10px 0;
border-radius: 8px;
line-height: 18px;
color: $dark-grey;
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(30% - 38px);
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;
}
}
&.client{
top: 50px;
height: calc(100vh - 100px);
.cloud{
&.right{
left: calc(30% - 58px);
}
}
}
}
.video{
display: none;
position: fixed;
top: 0;
left:0;
height: 100vh;
width: 100%;
background: black;
z-index: 10;
.video-close{
position: absolute;
top: 0;
right: 3px;
height: 20px;
width: 20px;
cursor: pointer;
padding: 0;
z-index: 10;
&:after{
content: '\f00d';
font-family: $icon;
font-size: $font-20;
color: white;
}
}
video{
height: 100vh;
width: 100%;
}
}
.iframeGET{
display: none;
}
.header{
position: fixed;
height: 50px;
width: 100%;
left: 0;
top: 0;
background: black;
.logo{
height: 25px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.menu{
height: 20px;
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
}
}
.footer{
position: fixed;
height: 50px;
width: 100%;
left: 0;
bottom: 0;
background: black;
input{
width: 95%;
height: 35px;
border-radius: 4px;
border: none;
position: absolute;
left: 50%;
top: 50%;
margin: 0;
transform: translate(-50%, -50%);
}
}