Skip to content

Instantly share code, notes, and snippets.

@hafizio
Created June 10, 2015 11:37
Show Gist options
  • Save hafizio/00f92a0d34bde7c3af98 to your computer and use it in GitHub Desktop.
Save hafizio/00f92a0d34bde7c3af98 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
}
.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