2019-10-08 15:03:40 +00:00
|
|
|
html {
|
|
|
|
font-size: $font-size-base;
|
|
|
|
scroll-behavior: smooth;
|
2020-02-12 22:31:58 +00:00
|
|
|
touch-action: manipulation;
|
2019-10-08 15:03:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
min-width: $body-min-width;
|
|
|
|
color: $body-font-color;
|
|
|
|
background: $body-background;
|
|
|
|
|
2020-06-13 16:19:58 +00:00
|
|
|
letter-spacing: 0.33px;
|
2019-10-08 15:03:40 +00:00
|
|
|
font-weight: $body-font-weight;
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
* {
|
|
|
|
box-sizing: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5 {
|
|
|
|
font-weight: $body-font-weight;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: $color-link;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
|
|
|
|
aside nav ul {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin: 1em 0;
|
2020-03-07 13:03:46 +00:00
|
|
|
position: relative;
|
2019-10-08 15:03:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
2020-05-17 11:09:48 +00:00
|
|
|
padding-inline-start: $padding-16;
|
2019-10-08 15:03:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.pagination {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
list-style-type: none;
|
|
|
|
|
|
|
|
.page-item a {
|
|
|
|
padding: $padding-16;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
max-width: $container-max-width;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2019-12-09 10:05:49 +00:00
|
|
|
.book-icon {
|
|
|
|
filter: $icon-filter;
|
|
|
|
}
|
|
|
|
|
2019-10-08 15:03:40 +00:00
|
|
|
.book-brand {
|
|
|
|
margin-top: 0;
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: 1.5em;
|
|
|
|
width: auto;
|
|
|
|
vertical-align: middle;
|
2020-05-17 11:09:48 +00:00
|
|
|
margin-inline-end: $padding-8;
|
2019-10-08 15:03:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-menu {
|
|
|
|
flex: 0 0 $menu-width;
|
|
|
|
font-size: $font-size-14;
|
|
|
|
|
|
|
|
nav {
|
|
|
|
width: $menu-width;
|
|
|
|
padding: $padding-16;
|
2020-06-13 16:19:58 +00:00
|
|
|
z-index: 1;
|
|
|
|
background: $body-background;
|
2019-10-08 15:03:40 +00:00
|
|
|
|
|
|
|
@include fixed;
|
|
|
|
}
|
|
|
|
|
2019-10-27 11:33:14 +00:00
|
|
|
a {
|
|
|
|
color: inherit;
|
2020-03-07 13:03:46 +00:00
|
|
|
word-wrap: break-word;
|
2019-10-27 11:33:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a.active {
|
|
|
|
color: $color-link;
|
|
|
|
}
|
2020-02-29 20:15:52 +00:00
|
|
|
|
2020-05-17 11:09:48 +00:00
|
|
|
a.collapsed {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: "▸";
|
|
|
|
}
|
2020-02-29 20:15:52 +00:00
|
|
|
}
|
2019-10-08 15:03:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.book-section-flat {
|
|
|
|
margin-bottom: $padding-16 * 2;
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-top: $padding-16 * 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
> ul {
|
2020-05-17 11:09:48 +00:00
|
|
|
padding-inline-start: 0;
|
2019-10-08 15:03:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-page {
|
|
|
|
min-width: $body-min-width;
|
|
|
|
flex-grow: 1;
|
|
|
|
padding: $padding-16;
|
|
|
|
}
|
|
|
|
|
2019-12-14 12:38:27 +00:00
|
|
|
.book-post {
|
2019-12-19 16:22:12 +00:00
|
|
|
margin-bottom: $padding-16 * 3;
|
2019-12-14 12:38:27 +00:00
|
|
|
}
|
|
|
|
|
2019-10-08 15:03:40 +00:00
|
|
|
.book-header {
|
|
|
|
display: none;
|
2020-01-23 23:07:47 +00:00
|
|
|
margin-bottom: $padding-16;
|
|
|
|
|
|
|
|
label {
|
|
|
|
line-height: 0;
|
|
|
|
}
|
2019-10-08 15:03:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.book-search {
|
|
|
|
position: relative;
|
|
|
|
margin: $padding-16 0;
|
|
|
|
border-bottom: 1px solid transparent;
|
|
|
|
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
padding: $padding-8;
|
|
|
|
|
|
|
|
border: 0;
|
2020-02-10 16:49:18 +00:00
|
|
|
border-radius: $border-radius;
|
2019-10-08 15:03:40 +00:00
|
|
|
|
|
|
|
background: $gray-100;
|
2019-10-08 21:17:30 +00:00
|
|
|
color: $body-font-color;
|
2019-10-08 15:03:40 +00:00
|
|
|
|
|
|
|
&:required + .book-search-spinner {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-search-spinner {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2020-05-19 21:10:11 +00:00
|
|
|
margin: $padding-8;
|
|
|
|
margin-inline-start: calc(100% - #{$padding-16 + $padding-8});
|
2019-10-08 15:03:40 +00:00
|
|
|
|
|
|
|
width: $padding-16;
|
|
|
|
height: $padding-16;
|
|
|
|
|
|
|
|
border: $padding-1 solid transparent;
|
|
|
|
border-top-color: $body-font-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
|
|
@include spin(1s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-toc {
|
|
|
|
flex: 0 0 $toc-width;
|
|
|
|
font-size: $font-size-12;
|
|
|
|
|
|
|
|
nav {
|
|
|
|
width: $toc-width;
|
|
|
|
padding: $padding-16;
|
|
|
|
|
|
|
|
@include fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav > ul > li:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-footer {
|
|
|
|
padding-top: $padding-16;
|
|
|
|
font-size: $font-size-14;
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: 1em;
|
2020-05-17 11:09:48 +00:00
|
|
|
margin-inline-end: $padding-8;
|
2019-10-08 15:03:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-17 20:44:25 +00:00
|
|
|
.book-comments {
|
|
|
|
margin-top: $padding-16;
|
2020-01-13 16:46:19 +00:00
|
|
|
}
|
|
|
|
|
2019-11-09 23:23:06 +00:00
|
|
|
.book-languages {
|
|
|
|
position: relative;
|
|
|
|
overflow: visible;
|
|
|
|
|
|
|
|
padding: $padding-16;
|
|
|
|
margin: -$padding-16;
|
|
|
|
|
2020-02-10 21:05:17 +00:00
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
li {
|
|
|
|
white-space: nowrap;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-10 17:39:07 +00:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:focus-within {
|
|
|
|
.book-languages-list {
|
|
|
|
display: block;
|
2020-02-10 21:05:17 +00:00
|
|
|
}
|
2019-11-09 23:23:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.book-languages-list {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
position: absolute;
|
2020-02-10 17:39:07 +00:00
|
|
|
bottom: 100%;
|
2019-11-09 23:23:06 +00:00
|
|
|
left: 0;
|
|
|
|
padding: $padding-8 0;
|
|
|
|
|
|
|
|
background: $body-background;
|
|
|
|
box-shadow: 0 0 $padding-4 rgba(0, 0, 0, 0.1);
|
|
|
|
|
2020-02-10 21:05:17 +00:00
|
|
|
li img {
|
|
|
|
opacity: 0.25;
|
2019-11-09 23:23:06 +00:00
|
|
|
}
|
|
|
|
|
2020-02-10 21:05:17 +00:00
|
|
|
li.active img,
|
|
|
|
li:hover img {
|
2019-11-09 23:23:06 +00:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
2020-02-10 17:39:07 +00:00
|
|
|
padding: $padding-8 $padding-16;
|
2019-11-09 23:23:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-08 15:03:40 +00:00
|
|
|
.book-home {
|
|
|
|
padding: $padding-16;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Responsive styles
|
|
|
|
aside nav,
|
|
|
|
.book-page,
|
2020-01-23 23:07:47 +00:00
|
|
|
.book-header aside,
|
2019-10-08 15:03:40 +00:00
|
|
|
.markdown {
|
|
|
|
transition: 0.2s ease-in-out;
|
2020-06-13 16:19:58 +00:00
|
|
|
transition-property: transform, margin, opacity, visibility;
|
|
|
|
will-change: transform, margin, opacity;
|
2019-10-08 15:03:40 +00:00
|
|
|
}
|
|
|
|
|
2020-01-23 23:07:47 +00:00
|
|
|
@media screen and (max-width: $mobile-breakpoint) {
|
2019-10-08 15:03:40 +00:00
|
|
|
.book-menu {
|
2020-06-13 16:19:58 +00:00
|
|
|
visibility: hidden;
|
2020-05-17 11:09:48 +00:00
|
|
|
margin-inline-start: -$menu-width;
|
2019-10-08 15:03:40 +00:00
|
|
|
font-size: $font-size-base;
|
|
|
|
}
|
2020-01-23 23:07:47 +00:00
|
|
|
|
2020-01-13 16:44:24 +00:00
|
|
|
.book-toc {
|
2020-01-23 23:07:47 +00:00
|
|
|
display: none;
|
2020-01-13 16:44:24 +00:00
|
|
|
}
|
2019-10-08 15:03:40 +00:00
|
|
|
|
|
|
|
.book-header {
|
2020-01-23 23:07:47 +00:00
|
|
|
display: block;
|
2019-10-08 15:03:40 +00:00
|
|
|
}
|
|
|
|
|
2020-01-23 23:07:47 +00:00
|
|
|
#menu-control:checked + main {
|
2020-06-13 16:19:58 +00:00
|
|
|
.book-menu {
|
|
|
|
visibility: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-menu nav {
|
2019-10-08 15:03:40 +00:00
|
|
|
transform: translateX($menu-width);
|
2020-06-13 16:19:58 +00:00
|
|
|
box-shadow: 0 0 $padding-8 rgba(0, 0, 0, 0.1);
|
2019-10-08 15:03:40 +00:00
|
|
|
}
|
2020-01-23 23:07:47 +00:00
|
|
|
|
2020-06-12 22:21:08 +00:00
|
|
|
.book-page {
|
2020-01-13 16:44:24 +00:00
|
|
|
opacity: 0.25;
|
|
|
|
}
|
2020-02-27 21:58:15 +00:00
|
|
|
|
|
|
|
.book-menu-overlay {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
2020-01-13 16:44:24 +00:00
|
|
|
}
|
2020-01-23 23:07:47 +00:00
|
|
|
|
2020-05-18 21:58:21 +00:00
|
|
|
//for RTL support
|
|
|
|
body[dir="rtl"] #menu-control:checked + main {
|
2020-06-13 16:19:58 +00:00
|
|
|
.book-menu nav {
|
2020-05-18 21:58:21 +00:00
|
|
|
transform: translateX(-$menu-width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-23 23:07:47 +00:00
|
|
|
#toc-control:checked + aside {
|
|
|
|
display: block;
|
2019-10-08 15:03:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extra space for big screens
|
|
|
|
@media screen and (min-width: $container-max-width) {
|
|
|
|
.book-page,
|
|
|
|
.book-menu nav,
|
|
|
|
.book-toc nav {
|
|
|
|
padding: $padding-16 * 2 $padding-16;
|
|
|
|
}
|
|
|
|
}
|