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
body { | |
&:after { display: none; } | |
@include breakpoint(s) { &:after { content: 'small'; } }; | |
@include breakpoint(m) { &:after { content: 'medium'; } }; | |
@include breakpoint(l) { &:after { content: 'large'; } }; | |
} | |
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
.boxedform { | |
border:1px solid $base_alt2; | |
margin-bottom:1em; | |
@include radius(.5em); | |
> h2 {padding:.5em 10px 0; color:$accent_alt; font-weight:bold; text-transform: uppercase} | |
p { | |
border-bottom:1px dotted $base_alt2; | |
padding:.5em 0; | |
margin-bottom:0; |
NewerOlder