A Pen by Arjun Biju on CodePen.
Created
May 21, 2023 03:07
-
-
Save Arrow66/b21f1a34591bdd28d27eb9f6de22e693 to your computer and use it in GitHub Desktop.
OneSpan Logo
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
<div class="container"> | |
<div class="onespan-logo"> | |
<div class="white-circle"> | |
</div> | |
</div> | |
<p class="onespan-text">OneSpan </p> | |
</div> |
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
@import url("https://fonts.cdnfonts.com/css/montserrat"); | |
.container { | |
display: flex; | |
align-items: center; | |
font-family: montserrat, sans-serif; | |
justify-content: center; | |
gap: 1rem; | |
} | |
.onespan-logo { | |
position: relative; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
height: 100px; | |
width: 100px; | |
border-radius: 50%; | |
background-image: linear-gradient(to bottom, #52c8bc, #52c8bc, #047041); | |
} | |
.onespan-logo::after { | |
content: ""; | |
position: absolute; | |
height: 15px; | |
width: 30px; | |
background-color: black; | |
top: 120px; | |
border-radius: 50%; | |
filter: blur(20px); | |
} | |
.white-circle { | |
height: 50%; | |
width: 50%; | |
background-color: white; | |
border-radius: 50%; | |
} | |
.onespan-text { | |
font-size: 70px; | |
font-weight: 500; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment