Last active
July 29, 2020 00:22
-
-
Save safinsingh/9d85be8b10f9fb269d5f5de6c94c476e 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, .nav-link { | |
fill: #000 !important; | |
color: #000; | |
transition: all 0.2s cubic-bezier(0.1, 0.7, 0.9, 1.6); | |
} | |
.header-link svg:hover, .nav-link:hover { | |
transform: scale(1.17) translateY(-3px); | |
fill: rgb(0, 0, 238) !important; | |
color: rgb(0, 0, 238); | |
} | |
.badge { | |
background-color: #bfe8ff; | |
color: #070770; | |
} | |
.post-header-date { | |
background: -webkit-linear-gradient(225deg,#0c45ff,#0098ff); | |
-webkit-background-clip: text; | |
-webkit-text-fill-color: transparent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment