Sha256: 2c88d5657272b620534c8468ee95049b5afbea659ced94f49e9e167de4afa722
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
/* Base Styles */ @import "compass/typography/vertical_rhythm"; @include establish-baseline; * { @include box-sizing(border-box); } body { background: $global-bg-color; font-family: $font-family; font-weight: $body-font-weight; color: $body-font-color; position: relative; -webkit-font-smoothing: $font-smoothing; -moz-osx-font-smoothing: grayscale; @include respond(all-phones) { -webkit-text-size-adjust: none; -ms-text-size-adjust: none; width: 100%; min-width: 0; } } html, body { height: 100%; } .hide { display: none; } .hide.active, .show { display: block; } // include all entypo icon classes @include icon(all); // .fixed elements will be static at supplied breakpoint // set arg to false for permanent .fixed elements @include fixed(portrait-tablets); .text-center { @extend %text-center; } .text-left { @extend %text-left; } .text-right { @extend %text-right; } // Partial to align Text Left or Right %text-center { text-align: center; } %text-left { text-align: left; } %text-right { text-align: right; }
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
gumby_on_rails-0.0.1 | app/assets/stylesheets/gumby/_base.scss |
middleman-gumby-0.0.1 | vendor/assets/sass/_base.scss |