Created
August 21, 2020 09:39
-
-
Save LishuGupta652/769bc288de7ffac041d778e2c77bd6de 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=Oswald&display=swap'); | |
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap'); | |
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap'); | |
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap'); | |
:root { | |
--primary-transition: 0.25s ease-in-out; | |
--fast-transition: 0.1s ease-in; | |
} | |
::selection { | |
background: black; | |
color: white; | |
} | |
*::-webkit-scrollbar { | |
width: 8px; | |
background-color: #f5f5f5; | |
} | |
*::-webkit-scrollbar-track { | |
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); | |
border-radius: 10px; | |
background-color: #f5f5f5; | |
} | |
*::-webkit-scrollbar-thumb { | |
border-radius: 10px; | |
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); | |
background-color: #555; | |
} | |
html * { | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
text-decoration: none; | |
box-sizing: border-box; | |
scroll-behavior: smooth; | |
transition: var(--primary-transition); | |
font-family: 'Oswald', sans-serif; | |
font-family: 'Montserrat', sans-serif; | |
font-family: 'Raleway', sans-serif; | |
font-family: 'Poppins', sans-serif; | |
overflow-x: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment