Last active
September 19, 2019 19:54
-
-
Save chalisegrogan/05bcd11dd37a7afe207f57e44a3404a5 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
| <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> |
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.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%; | |
| } | |
| } | |
| } | |
| } |
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
| .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%; | |
| } |
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
| <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