0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-13 19:32:45 +00:00
Files
homebrewery/shared/homebrewery/phb_style/phb.mixins.less
2017-03-26 15:10:36 -04:00

48 lines
995 B
Plaintext

.breakAvoid(){
column-break-inside : avoid;
-webkit-column-break-inside : avoid;
}
.pseudoBorder(){
position : relative;
&:before{
content : '';
position : absolute;
z-index : -2;
box-sizing : border-box;
border-style : solid;
border-image-repeat : round;
}
}
.pseudoShadow(){
position : relative;
&:after{
content : '';
position : absolute;
z-index : -1;
box-sizing : border-box;
top : 4px;
right : 0px;
bottom : 10px;
left : 0px;
border-style : solid;
border-image-repeat : round;
border-image-slice : 13 13;
border-image-source : @shadowBorder;
border-image-width : 11px;
}
}
.useSansSerif(){
font-family : ScalySans;
em{
font-family : ScalySans;
font-style : italic;
}
strong{
font-family : ScalySans;
font-weight : 800;
letter-spacing : -0.02em;
}
}