54 lines
1.0 KiB
SCSS
54 lines
1.0 KiB
SCSS
|
|
#srv_analiza_preview_div{
|
|
display: none;
|
|
|
|
cursor: auto;
|
|
pointer-events: none;
|
|
|
|
position: fixed;
|
|
z-index: 9997;
|
|
left: 307px;
|
|
top: 165px;
|
|
|
|
width: 700px;
|
|
box-sizing: border-box;
|
|
padding: 16px;
|
|
|
|
//background: $light-gray;
|
|
background-color: $white;
|
|
border: 1px solid $gray;
|
|
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
|
|
|
|
.srv_analiza_preview_sub{
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
|
|
.title{
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
|
|
font-size: 14px;
|
|
|
|
border-bottom: 1px $gray solid;
|
|
|
|
.first{
|
|
font-size: 16px !important;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.faicon{
|
|
font-size: 16px !important;
|
|
margin-right: 8px;
|
|
color: $blue;
|
|
}
|
|
}
|
|
|
|
.content{
|
|
overflow: hidden;
|
|
width: auto;
|
|
}
|
|
}
|
|
}
|