Created
July 29, 2020 04:35
-
-
Save safinsingh/49a3b0c8a4a78888458d23e5b3d626cd to your computer and use it in GitHub Desktop.
CSS uploaded by scrapbook.hackclub.com/customizer
This file contains 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 { | |
visibility: hidden; | |
position: relative; | |
} | |
.header-title-avatar { | |
width: 120px; | |
} | |
.header-title-name:after { | |
background: -webkit-linear-gradient(225deg,#0c45ff,#0098ff); | |
-webkit-background-clip: text; | |
-webkit-text-fill-color: transparent; | |
height: 60px; | |
visibility: visible; | |
position: absolute; | |
top: 0; | |
left: 0; | |
content: "Safin Singh"; | |
} | |
.header-link svg, .nav-link { | |
fill: #000 !important; | |
color: #000; | |
transition: all 0.2s smooth; | |
} | |
.header-link svg:hover, .nav-link:hover { | |
transform: scale(1.17) translateY(-3px); | |
fill: rgb(0, 0, 238) !important; | |
color: rgb(0, 0, 238); | |
} | |
.header-link svg:active, .nav-link:active { | |
transform: scale(0.94) translateY(0px); | |
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; | |
} | |
.color-empty { | |
fill: #333; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment