/* Base - Type ------------------------------------------------------- */ p { margin: $p-margin; padding: $p-padding; } h1,h2,h3,h4,h5,h6 { font-family: $heading-font-family; font-weight: $heading-font-weight; margin: $heading-margin; color: $heading-color; line-height: $heading-line-height; text-rendering: optimizelegibility; } h1 { @include font-size($h1-size); } h2 { @include font-size($h2-size); } h3 { @include font-size($h3-size); } h4 { @include font-size($h4-size); } h5 { @include font-size($h5-size); } h6 { @include font-size($h6-size); } blockquote { margin: $blockquote-margin; padding: $blockquote-padding; color: $blockquote-color; border-left: $blockquote-border-left; } // definition list dl { dt { font-weight: $dt-font-weight; margin: $dt-margin; padding: $dt-padding; } dd { margin: $dd-margin; padding: $dd-padding; } } // horizontal rule hr { margin-bottom: $hr-margin-bottom; border: $hr-border; border-bottom: $hr-border-bottom; } strong { font-weight: bold !important; } .antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } // for labels in the starter kit .sk-label { color: red; } .bold { font-weight: bold; } .regular { font-weight: normal; } .italic { font-style: italic; } .caps { text-transform: uppercase; } .left { text-align: left; } .center { text-align: center; } .right { text-align: right; } .justify { text-align: justify; } .list-reset { list-style-type: none !important; list-style: none !important; margin: 0 !important; padding: 0 !important; }