A Pen by Grégory Copin on CodePen.
Created
May 4, 2015 08:04
-
-
Save Gregcop1/bcbee735385c9e9197e3 to your computer and use it in GitHub Desktop.
Scss guideline
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
%button { @include qui-sert-a-rien(3px); } | |
.button-blue { | |
@extend %button; | |
@include qui-sert-a-rien(300px); | |
display: relative; background-color: cyan; | |
font-size: 1.3em; font-weight: 2; | |
&:hover { background-color: DarkCyan; } | |
&::before { content: ">"; display: block; } | |
> h3 { color: white; } | |
@media screen(max-width: $thin) { width: 100%; } | |
.home & > h3 { color: red; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment