Sha256: dadfdfcf7e3d2d2ee90b9f975978735a4787ae3978d84acdb49c817562714434
Contents?: true
Size: 967 Bytes
Versions: 11
Compression:
Stored size: 967 Bytes
Contents
// // Base styles // -------------------------------------------------- // Reset the box-sizing * { @include box-sizing(border-box); } *:before, *:after { @include box-sizing(border-box); } body { font-size: 16px; position: relative; font-family: $font-family-default; font-size: $font-size-default; line-height: $line-height-default; color: #333; background-color: #fff; } // Universal link styling a { color: $primary-color; text-decoration: none; -webkit-tap-highlight-color: rgba(0,0,0,0); // Removes the dark touch outlines on links in webkit browsers. &:active { color: darken($primary-color, 10%); } } .content { position: relative; margin: $bar-side-spacing; } hr { margin: 20px 0; border: 0; border-top: 1px solid #EEE; -moz-box-sizing: content-box; box-sizing: content-box; &.dotted{ border-top: 1px dotted #EEE;} &.dashed{ border-top: 1px dashed #EEE;} &.double{ border-top: 1px double #EEE;} }
Version data entries
11 entries across 11 versions & 1 rubygems