Skip to content

Instantly share code, notes, and snippets.

@segovia94
Created April 16, 2020 20:04
Show Gist options
  • Save segovia94/8448ce25c73abbf6a4f74a1ef1c63fa0 to your computer and use it in GitHub Desktop.
Save segovia94/8448ce25c73abbf6a4f74a1ef1c63fa0 to your computer and use it in GitHub Desktop.
Some starter css that most sites need.
/* 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