61 lines
972 B
SCSS
Raw Normal View History

core-empty-box {
2017-12-29 18:05:52 +01:00
.core-empty-box {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: table;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
clear: both;
2018-06-05 12:30:33 +02:00
pointer-events: none;
z-index: -5;
2017-12-29 18:05:52 +01:00
.core-empty-box-content {
color: $black;
margin: 0;
display: table-cell;
text-align: center;
vertical-align: middle;
pointer-events: auto;
2017-12-29 18:05:52 +01:00
}
&.core-empty-box-inline {
position: relative;
top: initial;
left: initial;
right: initial;
z-index: initial;
2018-01-23 13:00:00 +01:00
height: auto;
2017-12-29 18:05:52 +01:00
}
.icon {
font-size: 120px;
}
img {
height: 125px;
width: 145px;
}
p {
font-size: 120%;
}
}
2018-01-31 09:12:59 +01:00
@include media-breakpoint-down(sm) {
2017-12-29 18:05:52 +01:00
.core-empty-box {
position: relative;
.icon {
font-size: 100px;
}
img {
height: 104px;
width: 121px;
}
}
}
}