Created
August 14, 2015 21:43
-
-
Save frankinedinburgh/58549996807aa16e6de0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
.border{ | |
$colour: red; | |
border:{ | |
bottom: 3px solid $colour{ | |
left:{ | |
radius:20px; | |
} | |
right:{ | |
radius: 0px; | |
} | |
} | |
top: 1px solid $colour{ | |
left:{ | |
radius: 0px; | |
} | |
right:{ | |
radius: 0px; | |
} | |
} | |
} | |
} | |
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
.border { | |
border-bottom: 3px solid red; | |
border-bottom-left-radius: 20px; | |
border-bottom-right-radius: 0px; | |
border-top: 1px solid red; | |
border-top-left-radius: 0px; | |
border-top-right-radius: 0px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Applying the use of nesting with border properties.