Sha256: 31059a2c520778bd04352ea66d26d776689b79b1cc9a766ada029389dcbd8140
Contents?: true
Size: 1.03 KB
Versions: 8
Compression:
Stored size: 1.03 KB
Contents
/* Partial: twitter/bootstrap/_scaffolding.scss */ // // Scaffolding // Basic and global styles for generating a grid system, structural layout, and page templates // -------------------------------------------------- // Body reset // ------------------------- body { margin: 0; font-family: $baseFontFamily; font-size: $baseFontSize; line-height: $baseLineHeight; color: $textColor; background-color: $bodyBackground; } // Links // ------------------------- a { color: $linkColor; text-decoration: none; } a:hover, a:focus { color: $linkColorHover; text-decoration: underline; } // Images // ------------------------- // Rounded corners .img-rounded { @include border-radius(6px); } // Add polaroid-esque trim .img-polaroid { padding: 4px; background-color: #fff; border: 1px solid #ccc; border: 1px solid rgba(0,0,0,.2); @include box-shadow(0 1px 3px rgba(0,0,0,.1)); } // Perfect circle .img-circle { @include border-radius(500px); // crank the border-radius so it works with most reasonably sized images }
Version data entries
8 entries across 7 versions & 2 rubygems