30 lines
538 B
SCSS
30 lines
538 B
SCSS
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
font-weight: normal;
|
|
}
|
|
|
|
body {
|
|
color: var(--color-fg);
|
|
background: var(--color-bg);
|
|
transition: color 0.5s, background-color 0.5s;
|
|
font-family: Ubuntu Nerd Font, Ubuntu, Inter, -apple-system, BlinkMacSystemFont, sans-serif;
|
|
font-size: var(--text-base);
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
a {
|
|
color: var(--color-links);
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
}
|
|
|
|
ol, ul {
|
|
list-style: none;
|
|
}
|