mmote.ru/themes/mmotium/assets/css/_base.scss

41 lines
514 B
SCSS
Raw Normal View History

2023-01-01 18:21:01 +03:00
*,
*:before,
*:after {
box-sizing: border-box;
}
body {
font-size: 16px;
font-family: $main_font, Helvetica, sans-serif;
font-display: swap;
2023-01-01 18:21:01 +03:00
line-height: normal;
color: $font-color;
background-color: $page-bg-color;
// background: url($page-bg-image) repeat scroll 0 0 $page-bg-color;
2023-01-01 18:21:01 +03:00
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
}
a:link,
a:visited {
text-decoration: none;
color: $link-color;
}
a:hover,
a:active {
color: $link-hover-color;
}
pre {
max-height: 512px;
overflow: auto;
}