mirror of
https://github.com/hyzendust/hyzendust.github.io.git
synced 2026-02-15 00:01:11 +01:00
31 lines
353 B
SCSS
31 lines
353 B
SCSS
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.body {
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
// List
|
|
.menu__list,
|
|
.translation-list,
|
|
.pagination {
|
|
list-style-type: none;
|
|
padding-inline-start: 0;
|
|
}
|
|
|
|
// Task list
|
|
ul:has(>li>input[type="checkbox"]) {
|
|
list-style-type: none;
|
|
padding-inline-start: 1em;
|
|
}
|
|
|
|
blockquote {
|
|
margin: 0;
|
|
} |