// The organization of this CSS is heavily inspired by GitHub's CSS // stylesheet guidelines. // // See: github.com/styleguide/css // See also: medium.com/@fat/mediums-css-is-actually-pretty-fucking-good-b8e2a6c78b06 // // See Bootstrap's CSS at: // github.com/twbs/bootstrap-sass/tree/master/assets/stylesheets/bootstrap // or // $ bundle show bootstrap-sass //

// These both need to be imported before bootstrap: @import 'globals/fonts'; @import 'globals/variables';

// ————–Bootstrap—————————– @import 'bootstrap-sprockets'; @import 'bootstrap';

// Uncomment if you want to use the default bootstrap theme // @import 'bootstrap/theme';

// ————–Global definitions——————– // For example (add your own!!): @import 'globals/mixins';

// ————–Shared styles————————- // Common base CSS modifications. For example: @import 'shared/buttons'; @import 'shared/grid';

// ————–Components—————————- // Create your own and modify/extend Bootstrap's. For example: @import 'components/panel'; @import 'components/profile_panels';

// ————–Sections—————————— // Page-specific styles. These should only be used as a last // resort if you really truly can't style your content more generally. // @import 'sections/profile_page';