Establish baseline with compass rhythm By Alexander Anter April 23, 2016 Compass, SASS @import "compass"; $base-font-size: 16px; $base-line-height: 24px; @include establish-baseline; The .css output of this will be: * html { font-size: 100%; } html { font-size: 16px; line-height: 1.5em; } Add your comment Cancel replyYour CommentYour Name Email Address Website Save my name, email, and website in this browser for the next time I comment.
Adding default value to a mixin argument When compiled into .css .container will get: -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; and .content … April 23, 2016 Read More
Scale_color function in Compass Compass got built in function for all the scale_color functions. You can simply use them … April 23, 2016 Read More
Color functions in Sass Example of how you can saturate,lighten and mix color functions together with Sass. April 23, 2016 Read More
Import a Sass file into another Very minimal example on how to import a file called _reset.scss for example. April 23, 2016 Read More