Skip to content

Instantly share code, notes, and snippets.

@aaditgupta21
Last active September 6, 2020 20:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaditgupta21/faccaf6d5e8de6fdb34a5c9f513bc476 to your computer and use it in GitHub Desktop.
Save aaditgupta21/faccaf6d5e8de6fdb34a5c9f513bc476 to your computer and use it in GitHub Desktop.
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,600;0,700;0,800;1,400;1,600;1,700;1,800&display=swap');
body {
background-color: #fff;
font-family: "Open Sans", sans-serif;
}
.header-title-name {
visibility: hidden;
position: relative;
}
.header-title-avatar {
width: 130px;
}
.header-title-name:after {
background: -webkit-linear-gradient(90deg, #2593fa, #8861fd);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
height: 50px;
visibility: visible;
position: absolute;
top: 0;
left: 0;
content: "Aadit Gupta";
}
.header-link svg,
.nav-link {
fill: #000 !important;
color: #000;
transition: all 0.2s ease;
}
.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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment