@slite/style
Version:
Slite shared style
84 lines (69 loc) • 953 B
CSS
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
*:before,
*:after {
box-sizing: border-box;
}
html {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
font-variant-ligatures: common-ligatures;
font-feature-settings: "ss15", "ss19", "ss14";
}
body {
-webkit-font-smoothing: antialiased;
}
html,
body {
margin: 0;
padding: 0;
}
textarea {
overflow: hidden;
}
a {
text-decoration: none;
outline: none;
&:hover,
&:focus,
&.active {
outline: none;
}
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
h1,
h2,
h3,
h4 {
font-weight: normal;
}
input:not([type='checkbox']),
textarea,
select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
resize: none;
}
input,
textarea,
select, button {
font-family: inherit;
}
input:invalid {
box-shadow: none;
}
button::-moz-focus-inner {
border: 0;
}
pre,
code {
font-family: var(--font-family-monospace);
}