Created
July 29, 2020 00:07
-
-
Save safinsingh/87514738ace3c5fd7f6e1fc54407e5a3 to your computer and use it in GitHub Desktop.
CSS uploaded by scrapbook.hackclub.com/customizer
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.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); | |
body { | |
background-color: #fff; | |
font-family: "Inter", sans-serif; | |
} | |
.header-title-name { | |
background: -webkit-linear-gradient(225deg,#0c45ff,#0098ff); | |
-webkit-background-clip: text; | |
-webkit-text-fill-color: transparent; | |
height: 60px; | |
} | |
.header-link svg { | |
fill: #000; | |
transition: all 0.2s cubic-bezier(0.1, 0.7, 0.9, 1.6); | |
} | |
.header-link svg:hover { | |
transform: scale(1.2) translateY(-3px); | |
fill: rgb(0, 0, 238); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment