Created
May 11, 2012 14:28
-
-
Save max/2660056 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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