mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-13 06:32:39 +00:00
29 lines
535 B
Plaintext
29 lines
535 B
Plaintext
.breakAvoid(){
|
|
column-break-inside : avoid;
|
|
-webkit-column-break-inside : avoid;
|
|
}
|
|
.pseudoBorder(){
|
|
position : relative;
|
|
&:before{
|
|
content : '';
|
|
position : absolute;
|
|
z-index : -1;
|
|
box-sizing : border-box;
|
|
border-style : solid;
|
|
border-image-repeat : round;
|
|
}
|
|
}
|
|
|
|
|
|
.useSansSerif(){
|
|
font-family : ScalySans;
|
|
em{
|
|
font-family : ScalySans;
|
|
font-style : italic;
|
|
}
|
|
strong{
|
|
font-family : ScalySans;
|
|
font-weight : 800;
|
|
letter-spacing : -0.02em;
|
|
}
|
|
} |