A Pen by TheJonSowl on CodePen.
Created
November 7, 2020 03:40
-
-
Save Jonnysol/44845249e64ad90e06336e4831660436 to your computer and use it in GitHub Desktop.
Impossibly Tipsy
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
<a href="http://www.thismanslife.co.uk" target="_blank"> Flip Your Credit</a><a class="tag"> With C hall credit</a> | |
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
@keyframes tipsy { | |
0 { | |
transform: translateX(-50%) translateY(-50%) rotate(0deg); | |
} | |
100% { | |
transform: translateX(-50%) translateY(-50%) rotate(360deg); | |
} | |
} | |
body { | |
font-family: helvetica, arial, sans-serif; | |
background-color: #2e2e31; | |
} | |
.tag { | |
color: #fffbf1; | |
text-shadow: 0 20px 25px #2e2e31, 0 40px 60px #2e2e31; | |
font-size: 20px; | |
font-weight: bold; | |
text-decoration: none; | |
letter-spacing: -3px; | |
margin: 0; | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
transform: translateX(-50%) translateY(-50%); | |
} | |
a { | |
color: #fffbf1; | |
text-shadow: 0 20px 25px #2e2e31, 0 40px 60px #2e2e31; | |
font-size: 80px; | |
font-weight: bold; | |
text-decoration: none; | |
letter-spacing: -3px; | |
margin: 0; | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
transform: translateX(-50%) translateY(-50%); | |
} | |
a:before, | |
a:after { | |
content: ''; | |
padding: .9em .4em; | |
position: absolute; | |
left: 50%; | |
width: 100%; | |
top: 50%; | |
display: block; | |
border: 15px solid red; | |
transform: translateX(-50%) translateY(-50%) rotate(0deg); | |
animation: 10s infinite alternate ease-in-out tipsy; | |
} | |
a:before { | |
border-color: #d9524a #d9524a rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); | |
z-index: -1; | |
} | |
a:after { | |
border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #d9524a #d9524a; | |
box-shadow: 25px 25px 25px rgba(46, 46, 49, .8); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
2nd