Skip to content

Instantly share code, notes, and snippets.

@ankedsgn
Created March 20, 2016 18:58
Show Gist options
  • Save ankedsgn/26f88c76ad04f8a96593 to your computer and use it in GitHub Desktop.
Save ankedsgn/26f88c76ad04f8a96593 to your computer and use it in GitHub Desktop.
/***********************************************
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