Skip to content

Instantly share code, notes, and snippets.

@chalisegrogan
Last active September 19, 2019 19:54
Show Gist options
  • Select an option

  • Save chalisegrogan/05bcd11dd37a7afe207f57e44a3404a5 to your computer and use it in GitHub Desktop.

Select an option

Save chalisegrogan/05bcd11dd37a7afe207f57e44a3404a5 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="pillar">
<div class="overview">
<div class="banner">
<h2 class="title">
Check out our new deal
</h2>
<p class="content">
100% off until 13/13/23
</p>
</div>
</div>
</body>
// ----
// libsass (v3.5.4)
// ----
.pillar {
font-size: large;
background-color: gray;
padding: 20px;
.overview {
font-family: sans-serif;
color: white;
.banner {
background-color: navy;
padding: 6px;
.title {
font-size: 150%;
&:hover {
background-color: purple;
}
}
.content {
font-size: 125%;
}
}
}
}
.pillar {
font-size: large;
background-color: gray;
padding: 20px;
}
.pillar .overview {
font-family: sans-serif;
color: white;
}
.pillar .overview .banner {
background-color: navy;
padding: 6px;
}
.pillar .overview .banner .title {
font-size: 150%;
}
.pillar .overview .banner .title:hover {
background-color: purple;
}
.pillar .overview .banner .content {
font-size: 125%;
}
<div class="pillar">
<div class="overview">
<div class="banner">
<h2 class="title">
Check out our new deal
</h2>
<p class="content">
100% off until 13/13/23
</p>
</div>
</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment