Skip to content

Instantly share code, notes, and snippets.

@maxdenaro
Last active February 25, 2021 21:13
Show Gist options
  • Save maxdenaro/59015feba408f3aa0c4b19eea67ef644 to your computer and use it in GitHub Desktop.
Save maxdenaro/59015feba408f3aa0c4b19eea67ef644 to your computer and use it in GitHub Desktop.
base_settings.css
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
body {
margin: 0;
font-family: "asd", sans-serif;
background-color: var(--color-white);
}
img {
max-width: 100%;
}
a {
text-decoration: none;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
.site-container {
overflow: hidden;
}
.btn-reset {
border: none;
background: transparent;
cursor: pointer;
}
.container {
margin: 0 auto;
padding: 0 15px;
max-width: 1200px;
}
.js-focus-visible :focus:not(.focus-visible) {
outline: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment