Created
April 16, 2020 20:04
-
-
Save segovia94/8448ce25c73abbf6a4f74a1ef1c63fa0 to your computer and use it in GitHub Desktop.
Some starter css that most sites need.
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
/* Better box sizing https://css-tricks.com/box-sizing/ */ | |
html { | |
box-sizing: border-box; | |
} | |
*, | |
*:before, | |
*:after { | |
box-sizing: inherit; | |
} | |
/* Consistent vertical spacing for paragraph and heading text */ | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6, | |
p { | |
margin-top: 0; | |
margin-bottom: 1rem; | |
} | |
/* Responsive images */ | |
embed, | |
img, | |
object, | |
video { | |
max-width: 100%; | |
height: auto; | |
} | |
/* Drop this class onto the <html> tag to make the page smooth scroll to anchor links */ | |
.smooth-scroll { | |
scroll-behavior: smooth; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment