Created
June 19, 2015 12:54
-
-
Save roytomeij/c937272608806cf8a8f1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
%heading1 { | |
color: red; | |
font-size: 12px; | |
background-color: #f8f8f8; | |
border: 1px solid #d9d9d9; | |
border-top-radius: 10px; | |
border-bottom-radius: 10px; | |
margin: 0; | |
padding: 14px 15px 13px 15px; | |
} | |
.banner { | |
h2 { | |
@extend %heading1; | |
} | |
} | |
.z-advies-stap__main-block__header { | |
@extend %heading1; | |
} |
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
.banner h2, .z-advies-stap__main-block__header { | |
color: red; | |
font-size: 12px; | |
background-color: #f8f8f8; | |
border: 1px solid #d9d9d9; | |
border-top-radius: 10px; | |
border-bottom-radius: 10px; | |
margin: 0; | |
padding: 14px 15px 13px 15px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment