61 lines
743 B
SCSS
61 lines
743 B
SCSS
@use '@/assets/iconfont/css/lunasquee-site.css';
|
|
@use 'highlight.js/scss/dark.scss';
|
|
@use 'components/index';
|
|
@use 'helpers';
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family:
|
|
system-ui,
|
|
-apple-system,
|
|
BlinkMacSystemFont,
|
|
'Segoe UI',
|
|
Roboto,
|
|
Oxygen,
|
|
Ubuntu,
|
|
Cantarell,
|
|
'Open Sans',
|
|
'Helvetica Neue',
|
|
sans-serif;
|
|
}
|
|
|
|
p,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5 {
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
color: $a-color;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 1rem 0;
|
|
gap: 1rem;
|
|
overflow: hidden;
|
|
background-color: $gray-1;
|
|
color: #fff;
|
|
text-align: center;
|
|
}
|