0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-14 02:02:51 +00:00

Added in stlying for blockquotes and clean up logic in footer

This commit is contained in:
Scott Tolksdorf
2017-03-19 15:07:00 -04:00
parent eb1827cedb
commit c647bdf5ee
8 changed files with 305 additions and 293 deletions

View File

@@ -0,0 +1,29 @@
.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;
}
}