Files
teknolojirehberleri.xyz/styles/base/_base.scss
T

26 lines
404 B
SCSS

*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-size: 62.5%; // 1 rem = 10px; 10px/16px = 62.5% (16 is default browser font size)
font-family: "NunitoSansRegular", sans-serif;
}
body {
box-sizing: border-box;
padding: 3rem;
background-color: var(--color-background);
}
/*
::selection {
background-color: $color-primary;
color: $color-white;
}
*/