2018-08-31 10:26:37 +02:00
|
|
|
ion-app.app-root core-empty-box {
|
2017-12-29 18:05:52 +01:00
|
|
|
.core-empty-box {
|
|
|
|
position: absolute;
|
2018-08-29 16:42:12 +02:00
|
|
|
@include position(0, 0, 0, 0);
|
2017-12-29 18:05:52 +01:00
|
|
|
display: table;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
clear: both;
|
2018-06-05 12:30:33 +02:00
|
|
|
pointer-events: none;
|
2018-07-05 16:40:25 +02:00
|
|
|
z-index: -5;
|
2017-12-12 10:49:13 +01:00
|
|
|
|
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;
|
2018-06-11 11:00:41 +02:00
|
|
|
pointer-events: auto;
|
2017-12-29 18:05:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&.core-empty-box-inline {
|
|
|
|
position: relative;
|
|
|
|
z-index: initial;
|
2018-08-29 16:42:12 +02:00
|
|
|
@include position(initial, initial, null, 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-12 10:49:13 +01:00
|
|
|
}
|