diff options
Diffstat (limited to '_sass')
-rw-r--r-- | _sass/color.scss | 2 | ||||
-rw-r--r-- | _sass/theme.scss | 2 | ||||
-rw-r--r-- | _sass/typography.scss | 13 |
3 files changed, 15 insertions, 2 deletions
diff --git a/_sass/color.scss b/_sass/color.scss index 9a5caff..3b45c28 100644 --- a/_sass/color.scss +++ b/_sass/color.scss @@ -26,7 +26,7 @@ --bg-2: var(--bg-1); --fg-2: var(--fg-1); - --code-comment: #808b9bd9; + --code-comment: #abbfddde; --code-keyword: #d25a76; --code-string: #e4a87e; --code-number: #fa7d57; diff --git a/_sass/theme.scss b/_sass/theme.scss index a844858..b220ceb 100644 --- a/_sass/theme.scss +++ b/_sass/theme.scss @@ -117,5 +117,5 @@ input, button { display: inline-block; padding: 2px 8px; } -input[type=submit], buttom { cursor: pointer; } +input[type=submit], button { cursor: pointer; } diff --git a/_sass/typography.scss b/_sass/typography.scss index 335e433..db82dc9 100644 --- a/_sass/typography.scss +++ b/_sass/typography.scss @@ -15,3 +15,16 @@ aside, header { text-wrap: balance; } article { text-align: justify; } + +h1 { font-size: 2em; } + +html[lang^="ja"] { + * { font-style: normal !important; } + article { text-align: left; } + & { + line-height: 1.6; + font-size: 9pt; + hyphens: none; + } +} + |