Created
December 8, 2017 19:29
-
-
Save mrtag23/f79a7076ff30530390b004484733ea1d to your computer and use it in GitHub Desktop.
Triangle with shadow
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
.tooltip { | |
background-color: #fff; | |
&:after { | |
bottom: -9px; | |
border: 8px solid; | |
border-color: transparent transparent #fff #fff; | |
box-shadow: -3px 3px 3px 0 #aaa; | |
content: ""; | |
height: 0; | |
left: 50%; | |
position: absolute; | |
transform-origin: 0 0; | |
transform: rotate(-45deg) translateX(-50%); | |
width: 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment