Sha256: c3901bc728c38dbc638f0855a6ad70963e32ae94365e3c34a8ef849d26fd84a2
Contents?: true
Size: 918 Bytes
Versions: 20
Compression:
Stored size: 918 Bytes
Contents
// Variables //------------------------------------------------------ $well-font-color: $darkgray-dark !default; $well-background-color: $white !default; $well-blockquote-color: $mediumgray-light !default; $well-radius: 4px; $well-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; // Exports //------------------------------------------------------ @include exports("well") { /** * well * -------------------------------------------------- */ .well { padding: 10px; border: none; @include radius($type: border-radius, $value: $well-radius); color: $modal-font-color; background-color: $well-background-color; @include box-shadow($value: $well-shadow); & blockquote { border-color: $well-blockquote-color; } @at-root &-lg { padding: 20px; } @at-root &-sm { padding: 5px; } } }
Version data entries
20 entries across 20 versions & 2 rubygems