diff options
author | Valentin Popov <info@valentineus.link> | 2020-01-23 10:54:12 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-01-23 10:54:12 +0300 |
commit | 20a83cfb4a9f7841944b62c914250d8938274585 (patch) | |
tree | fcbbf1aedb82a345f852d5bab6bdf7b67be7136e /_scss/sakura/_main.scss | |
parent | d48911089650991034664eac3d2dc2cb2527fcaa (diff) | |
download | popov.link-20a83cfb4a9f7841944b62c914250d8938274585.tar.xz popov.link-20a83cfb4a9f7841944b62c914250d8938274585.zip |
Updated site styles
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_scss/sakura/_main.scss')
-rw-r--r-- | _scss/sakura/_main.scss | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/_scss/sakura/_main.scss b/_scss/sakura/_main.scss index 8e15541..2f22dbc 100644 --- a/_scss/sakura/_main.scss +++ b/_scss/sakura/_main.scss @@ -26,7 +26,7 @@ body { } } -@mixin word-wrap() { +@mixin word-wrap { hyphens: auto; overflow-wrap: break-word; word-break: break-word; @@ -40,6 +40,7 @@ h4, h5, h6 { @include word-wrap; + font-weight: 700; line-height: 1.1; } @@ -126,7 +127,7 @@ code { white-space: pre-wrap; } -pre>code { +pre > code { background-color: transparent; padding: 0; white-space: pre; @@ -159,9 +160,9 @@ textarea { .button, button, -input[type="submit"], -input[type="reset"], -input[type="button"] { +input[type='submit'], +input[type='reset'], +input[type='button'] { background-color: $color-blossom; border: 1px solid $color-blossom; border-radius: 1px; @@ -206,7 +207,7 @@ input[type] { } } -input[type="checkbox"]:focus { +input[type='checkbox']:focus { outline: 1px dotted $color-blossom; } |