2019-05-15 16:06:38 +02:00
|
|
|
@include xs-screen {
|
2020-09-27 18:05:05 +02:00
|
|
|
.not-xs {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
.only-xs {
|
|
|
|
display: inherit;
|
|
|
|
}
|
2019-05-25 11:12:06 +02:00
|
|
|
}
|
|
|
|
@include sm-screen {
|
2020-09-27 18:05:05 +02:00
|
|
|
.not-xs {
|
|
|
|
display: inherit;
|
|
|
|
}
|
|
|
|
.only-xs {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2019-05-25 11:12:06 +02:00
|
|
|
}
|
|
|
|
@include lg-screen {
|
2020-09-27 18:05:05 +02:00
|
|
|
.not-xs {
|
|
|
|
display: inherit;
|
|
|
|
}
|
|
|
|
.only-xs {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2019-05-15 16:06:38 +02:00
|
|
|
}
|
|
|
|
|
2019-06-09 13:38:12 +02:00
|
|
|
.shadow {
|
2020-09-27 18:05:05 +02:00
|
|
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14),
|
|
|
|
0 2px 1px -1px rgba(0, 0, 0, 0.12);
|
2019-06-09 13:38:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.theme-wrapper.dark .shadow {
|
|
|
|
border: 1px solid #fff3;
|
|
|
|
}
|
|
|
|
|
2020-09-27 18:05:05 +02:00
|
|
|
.font-text {
|
|
|
|
@include body-font;
|
|
|
|
}
|
|
|
|
.font-title {
|
|
|
|
@include title-font;
|
|
|
|
}
|
|
|
|
.font-button {
|
|
|
|
@include button-font;
|
|
|
|
}
|
|
|
|
.poh:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|