61 lines
743 B
SCSS
Raw Normal View History

2022-10-15 18:20:33 +03:00
@use '@/assets/iconfont/css/lunasquee-site.css';
2022-10-16 12:37:13 +03:00
@use 'highlight.js/scss/dark.scss';
2022-10-15 18:20:33 +03:00
@use 'components/index';
@use 'helpers';
*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body {
margin: 0;
height: 100%;
}
body {
2025-01-25 20:13:38 +02:00
font-family:
system-ui,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Open Sans',
'Helvetica Neue',
sans-serif;
2022-10-15 18:20:33 +03:00
}
2025-01-25 20:13:38 +02:00
p,
2022-10-15 18:20:33 +03:00
h1,
h2,
h3,
h4,
h5 {
margin: 0;
}
a {
color: $a-color;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
footer {
2025-01-25 20:13:38 +02:00
display: flex;
flex-direction: column;
padding: 1rem 0;
gap: 1rem;
2022-10-15 18:20:33 +03:00
overflow: hidden;
background-color: $gray-1;
color: #fff;
text-align: center;
}