mirror of
https://github.com/hyzendust/hyzendust.github.io.git
synced 2026-02-15 00:01:11 +01:00
180 lines
2.9 KiB
SCSS
180 lines
2.9 KiB
SCSS
// Global
|
|
.html {
|
|
font-size: $base-font-size; // rem
|
|
}
|
|
|
|
.body {
|
|
font-family: $font-family;
|
|
line-height: $line-height;
|
|
}
|
|
|
|
p,
|
|
ul,
|
|
ol,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
// Break long words
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.toc {
|
|
margin-block: 1rem;
|
|
|
|
&__summary {
|
|
font-weight: bolder;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
blockquote {
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
hr {
|
|
border: none;
|
|
height: 1px;
|
|
}
|
|
|
|
figure {
|
|
margin-inline: 0;
|
|
}
|
|
|
|
// Heading anchor link
|
|
.heading {
|
|
&__anchor {
|
|
display: none;
|
|
}
|
|
|
|
&:hover>&__anchor {
|
|
display: inline;
|
|
}
|
|
}
|
|
|
|
// Table
|
|
.table-wrapper {
|
|
// Horizontal scrollbar for table
|
|
overflow-x: auto;
|
|
// Margin
|
|
margin-block: 1rem;
|
|
|
|
>table {
|
|
// Override global word-break, don't break Chinese/Japanese/Korean (CJK) text
|
|
word-break: keep-all;
|
|
// Style
|
|
border-collapse: collapse;
|
|
|
|
td,
|
|
th {
|
|
padding: 0.5rem;
|
|
text-align: start;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Avoid overflow
|
|
svg,
|
|
img,
|
|
video,
|
|
iframe {
|
|
max-width: 100%;
|
|
}
|
|
|
|
// Menu and language selector
|
|
.menu {
|
|
&__list {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 0.5rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
// Selected link
|
|
&__link {
|
|
&--active {
|
|
font-weight: bolder;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Paginator
|
|
.pagination {
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.page-item.active {
|
|
font-weight: bolder;
|
|
}
|
|
|
|
// Page nav
|
|
.page-nav {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-block: 1rem;
|
|
}
|
|
|
|
// Make [section post title / term post title] close to date info
|
|
.section-post-title,
|
|
.term-post-title {
|
|
margin-block-start: 0;
|
|
}
|
|
|
|
// Make home post title close to summary
|
|
.home-post-title {
|
|
margin-block-end: 0;
|
|
}
|
|
|
|
// Make summary close to home post title
|
|
.summary {
|
|
margin-block-start: 0;
|
|
}
|
|
|
|
// Inline code
|
|
:not(pre)>code {
|
|
padding-inline: 0.25rem;
|
|
}
|
|
|
|
// Fenced code block (with line number, with language): div.highlight > div.chroma > table.lntable > tbody > tr > td.lntd > pre.chroma > code.language-javascript
|
|
// Fenced code block (without line number, with language): div.highlight > pre.chroma > code.language-javascript
|
|
// Fenced code block (without line number, without language) / indented code block: pre > code
|
|
|
|
// Code block with specified language
|
|
div.highlight {
|
|
// Horizontal scrollbar
|
|
overflow-x: auto;
|
|
// Prevent two code blocks sticking together
|
|
margin-block: 1rem;
|
|
|
|
// With line number
|
|
// Prevent italic character overflowing
|
|
>div.chroma>table.lntable {
|
|
padding-inline-end: 0.4rem; // same as line number's padding
|
|
}
|
|
|
|
// Without line number
|
|
// Prevent italic character overflowing (padding-inline-end doesn't work on Firefox Linux 128.0 and Chrome Linux 126.0.6478.182)
|
|
>pre.chroma {
|
|
padding-inline: 0.4rem;
|
|
}
|
|
}
|
|
|
|
// Code block [without specified language / indented with 4 spaces]
|
|
pre:not(.chroma) {
|
|
// Horizontal scrollbar
|
|
overflow-x: auto;
|
|
padding-block: 1rem;
|
|
padding-inline: 0.4rem; // padding-inline-end doesn't work on Firefox Linux 128.0
|
|
}
|
|
|
|
pre {
|
|
// Smaller font size
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.footer {
|
|
font-size: smaller;
|
|
} |