Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | 23x | @import './normalize.scss';
@import './vars.scss';
@import './transition.scss';
*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body,
#app {
height: 100%;
}
body {
margin: 0;
font-weight: var(--font-weight-base);
font-size: var(--font-size-base);
line-height: var(--line-height-base);
font-family: 'Gilroy', sans-serif;
color: rgba(var(--color-rgb-gray), 0.64);
letter-spacing: var(--letter-spacing-base);
background-color: var(--color-tertiary-gray-lighter);
}
svg {
vertical-align: middle;
}
button {
cursor: pointer;
&:focus {
outline: none;
}
}
a {
color: var(--color-primary-blue);
text-decoration: none;
&:focus {
outline: none;
}
}
/*
:focus-visible polyfill.
This will hide the focus indicator if the element receives focus via the mouse,
but it will still show up on keyboard focus.
*/
.js-focus-visible :focus:not(.focus-visible) {
outline: none;
}
|