Created
March 20, 2016 18:58
-
-
Save ankedsgn/26f88c76ad04f8a96593 to your computer and use it in GitHub Desktop.
This file contains 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
/*********************************************** | |
HULPJE | |
***********************************************/ | |
footer { | |
:after { | |
content: "content"; | |
display: block; | |
height: 16px; | |
position: fixed; | |
bottom: 0; | |
left: 0; | |
width: 100%; | |
text-align: center; | |
} | |
@include breakpoint(small) { | |
:after { | |
content: "SMALL"; | |
background-color: #0f9; | |
} | |
} | |
@include breakpoint(medium) { | |
:after { | |
content: "MEDIUM"; | |
background-color: #f06; | |
} | |
} | |
@include breakpoint(large) { | |
:after { | |
content: "LARGE"; | |
background-color: #90f; | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment