Skip to content

Instantly share code, notes, and snippets.

@Santeenee
Created April 25, 2024 14:03
Show Gist options
  • Save Santeenee/a4d04a75c3592a7413d8774fa647d4e5 to your computer and use it in GitHub Desktop.
Save Santeenee/a4d04a75c3592a7413d8774fa647d4e5 to your computer and use it in GitHub Desktop.
:root {
--bg: hsl(0 0% 10%);
--container-xl-w: min(100% - 4rem, 1400px);
--container-lg-w: min(100% - 4rem, 1200px);
--container-md-w: min(100% - 4rem, 800px);
--container-sm-w: min(100% - 4rem, 500px);
}
/* resets */
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
color-scheme: dark light;
scroll-behavior: smooth;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
min-height: 100vh;
min-height: 100dvh;
background-color: var(--bg);
}
img {
max-width: 100%;
vertical-align: middle;
font-style: italic;
shape-margin: 1rem;
height: auto;
background-size: cover;
background-repeat: no-repeat;
}
/* end resets */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment