Created
June 29, 2020 16:52
-
-
Save KishoreKaushal/3a21401e071c05acdd648ccc8b24f6a2 to your computer and use it in GitHub Desktop.
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=Ubuntu+Mono&display=swap"); */ | |
/* <style> */ | |
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap'); | |
</style> | |
a{ | |
color: #ffffff !important; | |
} | |
body { | |
font-family: "Fira Code"; | |
background: #232526; /* fallback for old browsers */ | |
} | |
body, | |
text.react-calendar-heatmap-month-label, | |
text.react-calendar-heatmap-weekday-label { | |
fill: #ffffff; | |
} | |
.header-title-name { | |
margin-bottom: 1rem; | |
color: #ffffff; | |
} | |
.nav * { | |
color: white !important; | |
} | |
.badge { | |
background: #e84a5f; | |
color: #ffffff; | |
} | |
main.container { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
min-width: 100%; | |
justify-content: center; | |
} | |
.header-link { | |
color: #ffffff; | |
} | |
article { | |
max-width: 100%; | |
margin: 0 23px; | |
} | |
.post-header { | |
background: #e84a5f; | |
padding: 0.5rem; | |
border-radius: 0.5rem; | |
} | |
section.post:hover { | |
transform: scale(1.01); | |
transition: all 0.3s; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment