Created
June 10, 2015 11:37
-
-
Save hafizio/00f92a0d34bde7c3af98 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
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
.footer { | |
background: #2f3536; | |
width: 100%; | |
border: 1px solid black; | |
&__items { | |
font-size: large; | |
list-style-type: none; | |
display: flex; | |
flex-direction: row; | |
justify-content: center; | |
} | |
&__item { | |
font-size: small; | |
color: tomato; | |
margin-left: 10px; | |
&--blue { | |
color: blue; | |
} | |
} | |
&--large { | |
height: 200%; | |
color: green; | |
} | |
&--medium { | |
height: 10px; | |
} | |
} |
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
.footer { | |
background: #2f3536; | |
width: 100%; | |
border: 1px solid black; | |
} | |
.footer__items { | |
font-size: large; | |
list-style-type: none; | |
display: flex; | |
flex-direction: row; | |
justify-content: center; | |
} | |
.footer__item { | |
font-size: small; | |
color: tomato; | |
margin-left: 10px; | |
} | |
.footer__item--blue { | |
color: blue; | |
} | |
.footer--large { | |
height: 200%; | |
color: green; | |
} | |
.footer--medium { | |
height: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment