summaryrefslogtreecommitdiff
path: root/assets/_main.scss
diff options
context:
space:
mode:
authorAlex Shpak <alex-shpak@users.noreply.github.com>2020-07-07 23:06:21 +0200
committerAlex Shpak <alex-shpak@users.noreply.github.com>2020-07-07 23:06:21 +0200
commitbf93dafdfa6b1c3977e25d093527f40a058f114d (patch)
tree715837df621208eae090b7acc0a28d8613f5eb20 /assets/_main.scss
parentf416a71bf8bb77e7af9ade9eea7fe3b662962290 (diff)
Improve accessibility and keyboard navigation
Diffstat (limited to 'assets/_main.scss')
-rw-r--r--assets/_main.scss39
1 files changed, 28 insertions, 11 deletions
diff --git a/assets/_main.scss b/assets/_main.scss
index c32d945..b8a0e5d 100644
--- a/assets/_main.scss
+++ b/assets/_main.scss
@@ -38,6 +38,10 @@ img {
vertical-align: baseline;
}
+:focus {
+ @include outline;
+}
+
aside nav ul {
padding: 0;
margin: 0;
@@ -98,7 +102,6 @@ ul.pagination {
nav {
width: $menu-width;
padding: $padding-16;
- z-index: 1;
background: $body-background;
@include fixed;
@@ -195,10 +198,8 @@ ul.pagination {
@include spin(1s);
}
- #book-search-results {
- small {
- opacity: .5;
- }
+ small {
+ opacity: 0.5;
}
}
@@ -279,7 +280,7 @@ ul.pagination {
li.active img,
li:hover img {
- opacity: 1;
+ opacity: initial;
}
a {
@@ -304,10 +305,16 @@ aside nav,
}
@media screen and (max-width: $mobile-breakpoint) {
+ #menu-control,
+ #toc-control {
+ display: inline;
+ }
+
.book-menu {
visibility: hidden;
margin-inline-start: -$menu-width;
font-size: $font-size-base;
+ z-index: 1;
}
.book-toc {
@@ -318,7 +325,11 @@ aside nav,
display: block;
}
- #menu-control:checked + main {
+ #menu-control:focus ~ main label[for="menu-control"] {
+ @include outline;
+ }
+
+ #menu-control:checked ~ main {
.book-menu {
visibility: initial;
}
@@ -342,16 +353,22 @@ aside nav,
}
}
+ #toc-control:focus ~ main label[for="toc-control"] {
+ @include outline;
+ }
+
+ #toc-control:checked ~ main {
+ .book-header aside {
+ display: block;
+ }
+ }
+
//for RTL support
body[dir="rtl"] #menu-control:checked + main {
.book-menu nav {
transform: translateX(-$menu-width);
}
}
-
- #toc-control:checked + aside {
- display: block;
- }
}
// Extra space for big screens