Skip to content

Instantly share code, notes, and snippets.

@jackdomleo7
Last active October 24, 2023 08:49
Show Gist options
  • Save jackdomleo7/55659bafe581d19cc341ef775d6a9e6b to your computer and use it in GitHub Desktop.
Save jackdomleo7/55659bafe581d19cc341ef775d6a9e6b to your computer and use it in GitHub Desktop.
A set of useful global CSS defaults to add to your site alongside a reset stylesheet (with explanations)
/*! NOTE: These are just recommended default global styles, edit as required */
@import ('Import reset stylesheet here, (I recommend modern-normalize) or even better, import the reset stylesheet in the HTML as the first imported stylesheet');
::selection { /* Optional */
/* It can be really hard to read highlighted text with a text-shadow, it should be removed when selected */
text-shadow: none;
/* NOTE: Using this means the color and background-color are set to transparent for selected text... */
/* So you can customise your styles below */
color: #fff;
background-color: #00f;
}
html {
/* Make base font-size 100% of browser font-size */
font-size: 100%;
}
@media (prefers-reduced-motion: no-preference) {
html {
scroll-behavior: smooth; /* Smoothly animate to different sections within a page, only if the user doesn't mind animations */
}
}
*,
*::before,
*::after,
html {
/* Declare your box-sizing here
/* https://css-tricks.com/box-sizing */
box-sizing: border-box | content-box;
}
body {
/* Declare your default font stack here */
font-family: "Font Stack", sans-serif | serif | monospace | cursive | fantasy;
/* Better text rendering - font-smoothing has not been officially declared, but can still be useful */
text-rendering: geometricPrecision | optimizeLegibility | optimizeSpeed;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img {
/* For responsive images that adjust & adapt */
height: auto;
max-width: 100%;
/* This isn't needed, but as a user, I get frustrated when I highlight text and the image gets highlighted too */
user-select: none;
}
button {
color: inherit; /* By default, buttons don't inherit the font colour, this is a useful default to override */
}
a, button {
touch-action: manipulation; /* Element doesn't want double-tap on mobile to zoom */
}
svg {
/* Make the SVGs fit the parent container by default */
height: 100%;
width: 100%;
/* Optional - make the SVG's fill be the same as the inherited color */
fill: currentColor;
/* Prevent the SVG from altering cursor interaction */
pointer-events: none;
}
iframe, video {
/* Make iframes & videos fit the parent container by default */
height: 100%;
width: 100%
}
@jackdomleo7
Copy link
Author

jackdomleo7 commented Jul 12, 2021

@Ademola This CSS is intended as some useful top-level defaults. Doesn't matter what the file is called, as long as they are at the top of the cascade. However, this is not strictly reset CSS, there are other specific stylesheets for that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment