Skip to content

Instantly share code, notes, and snippets.

@arn4v
Created May 29, 2023 18:36
Show Gist options
  • Save arn4v/e742e207093e11f625f301c43edbbfb7 to your computer and use it in GitHub Desktop.
Save arn4v/e742e207093e11f625f301c43edbbfb7 to your computer and use it in GitHub Desktop.
@import 'styles/variables.scss';
@import 'styles/mixins.scss';
* {
box-sizing: border-box;
margin: 0;
padding: 0;
@include smooth-font-rendering;
}
html {
overflow: hidden;
}
body {
background: #f7f8f9;
color: var(--neutral-90);
overflow-y: hidden;
}
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus,
p:focus,
span:focus,
label:focus,
input:focus,
a:focus,
button:focus,
select:focus,
textarea:focus {
outline: none;
}
select {
-moz-appearance: none;
-webkit-appearance: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
input,
select,
textarea,
button {
border: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
button {
background: transparent;
cursor: pointer;
}
button::-moz-focus-inner {
border: 0;
}
a {
cursor: pointer;
text-decoration: none;
color: #287fbd;
}
a:focus,
a:active,
a:hover {
text-decoration: none;
}
ul,
li {
list-style-type: none;
margin: 0;
padding: 0;
}
::placeholder {
opacity: 1;
color: var(--neutral-30);
}
mark {
color: inherit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment