my-online-cookbook/src/scss/_utility.scss
2021-05-15 00:01:57 +02:00

35 lines
474 B
SCSS

.u-hide {
display: none !important;
}
.u-show {
display: initial !important;
}
.u-sr-only {
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}
.u-print-only {
display: none !important;
}
@media print {
.u-print-only {
display: initial !important;
}
}
.u-bgc-grey-100 {
background-color: var(--color-grey-100);
}
.u-highlight {
background-color: rgba(250, 243, 145, 0.5);
}