Correction of validator's comments [2]

This commit is contained in:
Valentin Popov 2024-02-14 21:33:46 +04:00
parent b8edb5d4cd
commit ad86f7a471
Signed by: Valentin Popov
GPG Key ID: AE3CE523DAAA8401
2 changed files with 8 additions and 7 deletions

View File

@ -6,14 +6,14 @@
<meta content="index, follow" name="robots"> <meta content="index, follow" name="robots">
<!-- Title / Description --> <!-- Title / Description -->
<meta content="{{- page.description | default: site.description | strip | normalize_whitespace | xml_escape -}}" name="description" /> <meta content="{{- page.description | default: site.description | strip | normalize_whitespace | xml_escape -}}" name="description">
<title>{{- page.title | default: site.title | strip | normalize_whitespace | xml_escape -}}</title> <title>{{- page.title | default: site.title | strip | normalize_whitespace | xml_escape -}}</title>
<!-- RSS --> <!-- RSS -->
<link href="{{- site.rss | absolute_url | url_escape -}}" rel="alternate" title="RSS" type="application/atom+xml" /> <link href="{{- site.rss | absolute_url | url_escape -}}" rel="alternate" title="RSS" type="application/atom+xml">
<!-- Canonical URL --> <!-- Canonical URL -->
<link href="{{- page.url | absolute_url | url_escape -}}" rel="canonical" /> <link href="{{- page.url | absolute_url | url_escape -}}" rel="canonical">
<!-- CSS --> <!-- CSS -->
{%- include styles.html -%} {%- include styles.html -%}

View File

@ -8,6 +8,7 @@
html { html {
font-family: $font-family-base; font-family: $font-family-base;
font-size: 62.5%; font-size: 62.5%;
min-height: 100%;
overflow-y: scroll; overflow-y: scroll;
} }
@ -20,6 +21,7 @@ body {
line-height: 1.5; line-height: 1.5;
margin: auto; margin: auto;
max-width: 52em; max-width: 52em;
min-height: 100vh;
padding: 6em 4em 4em 4em; padding: 6em 4em 4em 4em;
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
} }
@ -38,7 +40,6 @@ h4,
h5, h5,
h6 { h6 {
font-weight: 700; font-weight: 700;
hyphens: auto;
line-height: 1.1; line-height: 1.1;
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
margin-top: 3rem; margin-top: 3rem;
@ -200,7 +201,7 @@ input[type="button"] {
color: $color-bg; color: $color-bg;
cursor: pointer; cursor: pointer;
display: inline-block; display: inline-block;
padding: 5px 10; padding: 5px 10px;
text-align: center; text-align: center;
text-decoration: none; text-decoration: none;
white-space: nowrap; white-space: nowrap;
@ -228,8 +229,8 @@ input {
box-shadow: none; box-shadow: none;
box-sizing: border-box; box-sizing: border-box;
color: $color-text; color: $color-text;
margin-bottom: 10; margin-bottom: 10px;
padding: 6px 10; padding: 6px 10px;
&:focus { &:focus {
border: 1px solid $color-blossom; border: 1px solid $color-blossom;