Skip to content

Instantly share code, notes, and snippets.

@max
Created May 11, 2012 14:28
Show Gist options
  • Save max/2660056 to your computer and use it in GitHub Desktop.
Save max/2660056 to your computer and use it in GitHub Desktop.
// Config
// ============================================================================
// Colors
$panel-background-color: #000;
// Misc
$default-border-radius: 3px;
// ============================================================================
// Typography
// ============================================================================
%reading-text {
// Styles for all Markdown elements.
}
// ============================================================================
// Panel Component
// ============================================================================
%panel {
@include border-radius($default-border-radius);
@include box-shadow($panel-inner-shadow, $panel-drop-shadow);
background: $panel-background-color;
}
// ============================================================================
.create-app {
@extend %inner-padding;
@extend %panel;
@extend %reading-text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment