28 lines
559 B
SCSS
28 lines
559 B
SCSS
/* Popup za vprasajcke */
|
|
.qtip{
|
|
position: fixed !important;
|
|
z-index: 9999999 !important;
|
|
|
|
width: 80% !important;
|
|
box-sizing: border-box !important;
|
|
|
|
top: 20% !important;
|
|
left: 10% !important;
|
|
|
|
box-shadow: 0 0 15px 15px rgba(0,0,0,.34) !important;
|
|
}
|
|
|
|
|
|
// Klasicen popup
|
|
.divPopUp{
|
|
width: calc(100% - 32px) !important;
|
|
max-width: calc(100% - 32px) !important;
|
|
|
|
box-sizing: border-box;
|
|
margin: 0 16px;
|
|
|
|
&.PopUpNarrow{
|
|
width: calc(100% - 32px) !important;
|
|
max-width: calc(100% - 32px) !important;
|
|
}
|
|
} |