Last active
August 29, 2015 14:27
-
-
Save jimmyhillis/a7812ea87be408c84bc8 to your computer and use it in GitHub Desktop.
Showing intent with mixin overrides
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
.special-situation { | |
@include subtitle; | |
@include gutters; | |
display:inline-block; | |
max-width:50%; | |
margin-bottom:2em; | |
color:$blue; | |
} |
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
.special-situation { | |
@include subtitle { | |
margin-bottom:2em; | |
color:$blue; | |
} | |
@include gutters; | |
display:inline-block; | |
max-width:50%; | |
} |
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
.special-situation { | |
@include subtitle; | |
margin-bottom:2em; | |
} |
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
@mixin subtitle { | |
@include font(open-sans, semibold); | |
@include font-sizes($header-font-sizes); | |
margin:0 0 1em; | |
color:$dark-grey; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment