Skip to content

Instantly share code, notes, and snippets.

@alvincrespo
Last active August 29, 2015 14:21
Show Gist options
  • Save alvincrespo/f864fa846d3fc9364475 to your computer and use it in GitHub Desktop.
Save alvincrespo/f864fa846d3fc9364475 to your computer and use it in GitHub Desktop.
fly-css-framework/src/styles/states/_panel.scss
// Components :: Panels
// Panels
//
// Panels are one the more versatile component within the Fly framework. They are used to provide visual sectioning for content. Panels provid a subtle border, and content placed within a ``.fly-panel-body`` is provided with padding.
//
// Styleguide 3.25
// Basic Panel
//
// Markup:
// <div class="fly-panel">
// <div class="fly-panel-body">
// <p>
// Hey there, Mr. Grumpy Gills. When life gets you down do you wanna know what you've gotta do? <strong>Just keep swimming!</strong>
// </p>
// </div>
// </div>
//
// Styleguide 3.25.1
.fly-panel {
@include fly-clearfix;
@include margin-normalize;
background-color: $white;
border: 1px solid;
border-color: $color-border-card;
border-radius: 0;
margin-bottom: $grid-gutter;
min-height: $gutter;
padding: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment