Created
September 12, 2016 10:32
-
-
Save thebigtine/8cb24dbbccf36c907cc8543254d49bdd to your computer and use it in GitHub Desktop.
This file contains 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
.home .the-smart-way { | |
color: #fff; | |
background: #f7931e; | |
font-weight: bold; | |
height: 100px; | |
margin: 40px 0; | |
padding: 15px; | |
position: relative; | |
text-align: center; | |
} | |
.home .the-smart-way::before { | |
content: ""; | |
position: absolute; | |
top: 0; | |
bottom: 0; | |
left: -9999px; | |
right: 0; | |
border-left: 9999px solid #f7931e; | |
box-shadow: 9999px 0 0 #f7931e; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment