Skip to content

Instantly share code, notes, and snippets.

@jackw
Created December 17, 2015 11:42
Show Gist options
  • Save jackw/671e50f53665a8a4f35b to your computer and use it in GitHub Desktop.
Save jackw/671e50f53665a8a4f35b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="badge">
<span class="up-to">Up to</span>
<span class="sale-text">40% off</span>
</div>
// ----
// libsass (v3.2.5)
// ----
.badge {
background: #c30c30;
border-radius: 40px;
color: #fff;
display: inline-block;
font: 18px/1 sans-serif;
padding: 20px;
text-align: center;
span {
display: block;
}
.up-to {
font-size: 13px;
}
.sale-text {
font-size: 13px;
&:first-line {
display: block;
font-size: 25px;
}
}
}
.badge {
background: #c30c30;
border-radius: 40px;
color: #fff;
display: inline-block;
font: 18px/1 sans-serif;
padding: 20px;
text-align: center;
}
.badge span {
display: block;
}
.badge .up-to {
font-size: 13px;
}
.badge .sale-text {
font-size: 13px;
}
.badge .sale-text:first-line {
display: block;
font-size: 25px;
}
<div class="badge">
<span class="up-to">Up to</span>
<span class="sale-text">40% off</span>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment