Created
July 10, 2017 14:27
-
-
Save 0632347878/2fb699be63ce0c31d330ababd17410f7 to your computer and use it in GitHub Desktop.
Tringle on tringle arrow
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
&:after, &:before { | |
bottom: 100%; | |
left: 74%; | |
border: solid transparent; | |
content: " "; | |
height: 0; | |
width: 0; | |
position: absolute; | |
pointer-events: none; | |
} | |
&:after { | |
content:" "; | |
border-color: rgba(0, 0, 0, 0); | |
border-bottom-color: white; | |
border-width: 20px; | |
margin-left: -20px; | |
z-index: 99; | |
} | |
&:before { | |
content:" "; | |
border-color: rgba(204, 204, 204, 0); | |
border-bottom-color: #6ab9e3; | |
border-width: 21px; | |
margin-left: -21px; | |
} |
Author
0632347878
commented
Sep 13, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment