Created
October 30, 2013 09:13
-
-
Save askucher/7229438 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
%span.required.angle | |
%input |
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
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
$red: red | |
.required.angle | |
position: absolute | |
width: 0 | |
height: 0 | |
right: 3px | |
top: 3px | |
border-top: 20px solid $red | |
border-left: 20px solid transparent |
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
.required.angle { | |
position: absolute; | |
width: 0; | |
height: 0; | |
right: 3px; | |
top: 3px; | |
border-top: 20px solid red; | |
border-left: 20px solid transparent; | |
} |
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
<span class='required angle'> | |
<input> | |
</span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment