Skip to content

Instantly share code, notes, and snippets.

@ericyork
Forked from jackdomleo7/Useful_global_CSS.css
Created August 30, 2021 12:44
Show Gist options
  • Save ericyork/49a93277000df01c66055e8d48d8a178 to your computer and use it in GitHub Desktop.
Save ericyork/49a93277000df01c66055e8d48d8a178 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 {
/* Declare your font family type in the html selector, then your font-family in the body selector */
font-family: sans-serif | serif | monospace | cursive | fantasy;
/* Make base font-size 100% of browser font-size */
font-size: 100%;
/* Declare your box-sizing here, then inherit the box sizing below in the *, *::before and *::after selector */
/* https://css-tricks.com/box-sizing */
box-sizing: border-box | content-box;
}
@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 {
box-sizing: inherit; /* See line 22 */
}
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 {
/* Make the iframes fit the parent container by default */
height: 100%;
width: 100%
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment