|
|
|
@ -1,58 +1,256 @@
@@ -1,58 +1,256 @@
|
|
|
|
|
|
|
|
|
|
:root { |
|
|
|
|
--text: #32373f; |
|
|
|
|
--code: #383a42; |
|
|
|
|
--link: #4286f4; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#joplin-container-content{ |
|
|
|
|
padding-left: 0 !important; |
|
|
|
|
padding-right: 0 !important; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#rendered-md { |
|
|
|
|
width: 100%; |
|
|
|
|
padding: 3%; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
body { |
|
|
|
|
font-size: 1.3rem; |
|
|
|
|
color: var(--text); |
|
|
|
|
word-wrap: break-word; |
|
|
|
|
line-height: 1.6em; |
|
|
|
|
/* background-color: #ffffff; */ |
|
|
|
|
font-family: 'Avenir', 'Arial', sans-serif; |
|
|
|
|
padding-bottom: 0px; |
|
|
|
|
padding-top: 0px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.hljs { |
|
|
|
|
display: block; |
|
|
|
|
overflow-x: auto; |
|
|
|
|
padding: 0.5em; |
|
|
|
|
color: var(--code); |
|
|
|
|
background: var(--code); |
|
|
|
|
padding: 1em; |
|
|
|
|
/* background: #000; */ |
|
|
|
|
/* color: #f8f8f8; */ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
code.hljs { |
|
|
|
|
padding: 3px 5px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.hljs-attr, .hljs-variable, .hljs-template-variable, .hljs-type, |
|
|
|
|
.hljs-selector-class, .hljs-selector-attr, .hljs-selector-pseudo, .hljs-number, |
|
|
|
|
.hljs-built_in, .hljs-class .hljs-title { |
|
|
|
|
color: #ffc13d; |
|
|
|
|
} |
|
|
|
|
.hljs-comment, |
|
|
|
|
.hljs-meta, |
|
|
|
|
.hljs-quote { |
|
|
|
|
color: #7c7c7c; |
|
|
|
|
} |
|
|
|
|
.hljs-keyword, |
|
|
|
|
.hljs-name, |
|
|
|
|
.hljs-selector-tag, |
|
|
|
|
.hljs-tag { |
|
|
|
|
color: #96cbfe; |
|
|
|
|
} |
|
|
|
|
.hljs-attribute, |
|
|
|
|
.hljs-selector-id { |
|
|
|
|
color: #ffffb6; |
|
|
|
|
} |
|
|
|
|
.hljs-addition, |
|
|
|
|
.hljs-selector-attr, |
|
|
|
|
.hljs-selector-pseudo, |
|
|
|
|
.hljs-string { |
|
|
|
|
color: #a8ff60; |
|
|
|
|
} |
|
|
|
|
.hljs-subst { |
|
|
|
|
color: #daefa3; |
|
|
|
|
} |
|
|
|
|
.hljs-link, |
|
|
|
|
.hljs-regexp { |
|
|
|
|
color: #e9c062; |
|
|
|
|
} |
|
|
|
|
.hljs-doctag, |
|
|
|
|
.hljs-section, |
|
|
|
|
.hljs-title, |
|
|
|
|
.hljs-type { |
|
|
|
|
color: #ffffb6; |
|
|
|
|
} |
|
|
|
|
.hljs-bullet, |
|
|
|
|
.hljs-literal, |
|
|
|
|
.hljs-symbol, |
|
|
|
|
.hljs-template-variable, |
|
|
|
|
.hljs-variable { |
|
|
|
|
color: #c6c5fe; |
|
|
|
|
} |
|
|
|
|
.hljs-deletion, |
|
|
|
|
.hljs-number { |
|
|
|
|
color: #ff73fd; |
|
|
|
|
} |
|
|
|
|
.hljs-emphasis { |
|
|
|
|
font-style: italic; |
|
|
|
|
} |
|
|
|
|
.hljs-strong { |
|
|
|
|
font-weight: 700; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
h1, h2, h3, h4 { |
|
|
|
|
padding-left: 0.5em; |
|
|
|
|
padding-bottom: 0; |
|
|
|
|
|
|
|
|
|
/* CUSTOM */ |
|
|
|
|
|
|
|
|
|
h1 { |
|
|
|
|
font-size: 2rem; |
|
|
|
|
color: #2c3e50 !important; |
|
|
|
|
margin-bottom: 0.5rem; |
|
|
|
|
text-transform: uppercase!important; |
|
|
|
|
text-align: center!important; |
|
|
|
|
line-height: 1.2; |
|
|
|
|
margin-top: 0; |
|
|
|
|
margin-bottom: 1em; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 { |
|
|
|
|
font-weight: 700; |
|
|
|
|
color: #2c3e50 !important; |
|
|
|
|
margin-bottom: 0.5rem; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
h1 { |
|
|
|
|
color: white; |
|
|
|
|
background-color: #414650; |
|
|
|
|
width: 100%; |
|
|
|
|
line-height: 2.5em; |
|
|
|
|
text-align: center; |
|
|
|
|
font-size: 2rem; |
|
|
|
|
text-transform: uppercase!important; |
|
|
|
|
text-align: center!important; |
|
|
|
|
line-height: 1.2; |
|
|
|
|
margin-top: 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
h2 { |
|
|
|
|
color: white; |
|
|
|
|
font-weight: 400; |
|
|
|
|
background-color: #414650; |
|
|
|
|
width: 100%; |
|
|
|
|
border: 2px solid #414650; |
|
|
|
|
font-size: 1.8rem; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
h3 { |
|
|
|
|
color: white; |
|
|
|
|
font-weight: 150; |
|
|
|
|
background-color: #606776; |
|
|
|
|
font-size: 1.6rem; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
h4 { |
|
|
|
|
color: white; |
|
|
|
|
font-weight: 100; |
|
|
|
|
width: 100%; |
|
|
|
|
background-color: #808286; |
|
|
|
|
font-size: 1.4rem; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
mark { |
|
|
|
|
background: #aeefce; |
|
|
|
|
color: black; |
|
|
|
|
padding-left: 3px; |
|
|
|
|
padding-right: 3px; |
|
|
|
|
h5 { |
|
|
|
|
font-size: 1.2rem; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
h6 { |
|
|
|
|
font-size: 1rem; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
code { |
|
|
|
|
padding: 0% 0.5%; |
|
|
|
|
color: #faffc3 !important; |
|
|
|
|
background-color: var(--code) !important; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
code, pre { |
|
|
|
|
font-family: "NotoMono Nerd Font" !important; |
|
|
|
|
font-size: 1.2rem; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
pre > code { |
|
|
|
|
/* background-color: #2c3e50 !important; */ |
|
|
|
|
/* color: #fff !important; */ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
p { |
|
|
|
|
display: block; |
|
|
|
|
margin-block-end: 1em; |
|
|
|
|
margin-block-start: 1em; |
|
|
|
|
margin-bottom: 1rem; |
|
|
|
|
margin-inline-end: 0px; |
|
|
|
|
margin-inline-start: 0px; |
|
|
|
|
margin-top: 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
a { |
|
|
|
|
color: #5082be; |
|
|
|
|
color: var(--link); |
|
|
|
|
text-decoration: none; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
a:focus, |
|
|
|
|
a:hover, |
|
|
|
|
a:active { |
|
|
|
|
text-decoration: none; |
|
|
|
|
/* color: #26e4bb; */ |
|
|
|
|
color: #007c7c; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
blockquote { |
|
|
|
|
border-left: 4px solid #4286f4; |
|
|
|
|
display: block; |
|
|
|
|
margin-block-end: 1em; |
|
|
|
|
margin-block-start: 1em; |
|
|
|
|
margin-inline-end: 40px; |
|
|
|
|
margin-inline-start: 40px; |
|
|
|
|
margin: 0 0 1rem; |
|
|
|
|
padding-left: 2%; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* LISTS */ |
|
|
|
|
|
|
|
|
|
ol { |
|
|
|
|
margin: 0 0 1.5em; |
|
|
|
|
padding: 0; |
|
|
|
|
counter-reset: item; |
|
|
|
|
} |
|
|
|
|
ol li { |
|
|
|
|
margin: 0; |
|
|
|
|
padding: 0 0 0 1.5em; |
|
|
|
|
list-style-type: none; |
|
|
|
|
counter-increment: item; |
|
|
|
|
} |
|
|
|
|
ol li:before { |
|
|
|
|
color: var(--link); |
|
|
|
|
/* content: counter(item, decimal-leading-zero) "."; */ |
|
|
|
|
content: "00" counter(item) "."; |
|
|
|
|
/* display: inline-block; */ |
|
|
|
|
/* float: left; */ |
|
|
|
|
font-weight: bold; |
|
|
|
|
padding-right: 0.5em; |
|
|
|
|
width: 1em; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ol li:nth-child(n+10):before { |
|
|
|
|
content: "0" counter(item) "."; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ol li:nth-child(n+100):before { |
|
|
|
|
content: counter(item) "."; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ul { |
|
|
|
|
margin: 0 0 1.5em; |
|
|
|
|
padding: 0; |
|
|
|
|
list-style: none; |
|
|
|
|
} |
|
|
|
|
ul li { |
|
|
|
|
margin: 0; |
|
|
|
|
padding: 0 0 0 1.5em; |
|
|
|
|
list-style-type: none; |
|
|
|
|
} |
|
|
|
|
ul li::before { |
|
|
|
|
color: var(--link); |
|
|
|
|
content: "\2022"; |
|
|
|
|
/* display: inline-block; */ |
|
|
|
|
float: left; |
|
|
|
|
font-weight: bold; |
|
|
|
|
/* padding-right: 0.3em; */ |
|
|
|
|
width: 1em; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ins { |
|
|
|
|
text-decoration: none; |
|
|
|
|
color: #007c7c; |
|
|
|
|
font-weight: bold; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* BADGES */ |
|
|
|
@ -78,8 +276,8 @@ b-warning::before,
@@ -78,8 +276,8 @@ b-warning::before,
|
|
|
|
|
b-help::before { |
|
|
|
|
font-weight: 700; |
|
|
|
|
font-size: 1.5em; |
|
|
|
|
left: 30px; |
|
|
|
|
position: absolute; |
|
|
|
|
left: 1.6em; |
|
|
|
|
/* position: absolute; */ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
b-error { |
|
|
|
@ -137,122 +335,12 @@ b-help::before {
@@ -137,122 +335,12 @@ b-help::before {
|
|
|
|
|
color: blueviolet; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
strike, s { |
|
|
|
|
opacity: 0.5 !important; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
blockquote { |
|
|
|
|
color: black; |
|
|
|
|
margin: 1.5em; |
|
|
|
|
padding: 1em; |
|
|
|
|
border-radius: 8px; |
|
|
|
|
border-left: 6px solid darkslateblue; |
|
|
|
|
background-color: lavender; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
blockquote strong { |
|
|
|
|
font-style: bold !important; |
|
|
|
|
color: darkblue !important; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
blockquote em { |
|
|
|
|
font-style: italic !important; |
|
|
|
|
color: darkblue !important; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
hr { |
|
|
|
|
border: none; |
|
|
|
|
border-bottom: 1px solid gray !important; |
|
|
|
|
margin: 2.5em 0 !important; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
a:hover { |
|
|
|
|
text-decoration: underline; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ol { |
|
|
|
|
margin: 0 0 1.5em; |
|
|
|
|
padding: 0; |
|
|
|
|
counter-reset: item; |
|
|
|
|
} |
|
|
|
|
ol li { |
|
|
|
|
margin: 0; |
|
|
|
|
padding: 0 0 0 1.5em; |
|
|
|
|
list-style-type: none; |
|
|
|
|
counter-increment: item; |
|
|
|
|
} |
|
|
|
|
ol li:before { |
|
|
|
|
color: #007c7c; |
|
|
|
|
/* content: counter(item, decimal-leading-zero) "."; */ |
|
|
|
|
content: "00" counter(item) "."; |
|
|
|
|
/* display: inline-block; */ |
|
|
|
|
/* float: left; */ |
|
|
|
|
font-weight: bold; |
|
|
|
|
padding-right: 0.5em; |
|
|
|
|
width: 1em; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ol li:nth-child(n+10):before { |
|
|
|
|
content: "0" counter(item) "."; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ol li:nth-child(n+100):before { |
|
|
|
|
content: counter(item) "."; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ul { |
|
|
|
|
margin: 0 0 1.5em; |
|
|
|
|
padding: 0; |
|
|
|
|
list-style: none; |
|
|
|
|
} |
|
|
|
|
ul li { |
|
|
|
|
margin: 0; |
|
|
|
|
padding: 0 0 0 1.5em; |
|
|
|
|
list-style-type: none; |
|
|
|
|
} |
|
|
|
|
ul li::before { |
|
|
|
|
color: #007c7c; |
|
|
|
|
content: "\2022"; |
|
|
|
|
/* display: inline-block; */ |
|
|
|
|
float: left; |
|
|
|
|
font-weight: bold; |
|
|
|
|
padding-right: 0.3em; |
|
|
|
|
width: 1em; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
table { |
|
|
|
|
border-collapse: collapse; |
|
|
|
|
overflow: hidden; |
|
|
|
|
} |
|
|
|
|
th, |
|
|
|
|
td { |
|
|
|
|
padding: 15px; |
|
|
|
|
background-color: rgba(255, 255, 255, 0.2); |
|
|
|
|
color: #fff; |
|
|
|
|
} |
|
|
|
|
th { |
|
|
|
|
text-align: left; |
|
|
|
|
} |
|
|
|
|
thead th, .jop-tinymce table th, table th { |
|
|
|
|
background-color: dimgray; |
|
|
|
|
} |
|
|
|
|
tbody tr:hover { |
|
|
|
|
background-color: rgba(255, 255, 255, 0.3); |
|
|
|
|
} |
|
|
|
|
tbody td { |
|
|
|
|
position: relative; |
|
|
|
|
} |
|
|
|
|
tbody td:hover:before { |
|
|
|
|
content: ""; |
|
|
|
|
position: absolute; |
|
|
|
|
left: 0; |
|
|
|
|
right: 0; |
|
|
|
|
top: -9999px; |
|
|
|
|
bottom: -9999px; |
|
|
|
|
background-color: rgba(255, 255, 255, 0.2); |
|
|
|
|
z-index: -1; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
input[type='checkbox'], |
|
|
|
|
.md-checkbox .checkbox-label-unchecked, |
|
|
|
|
.md-checkbox .checkbox-label-checked, |
|
|
|
@ -272,6 +360,10 @@ li.md-checkbox [type="checkbox"]:checked + label {
@@ -272,6 +360,10 @@ li.md-checkbox [type="checkbox"]:checked + label {
|
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* .md-checkbox input[type=checkbox]:checked { */ |
|
|
|
|
/* opacity: 1; */ |
|
|
|
|
/* } */ |
|
|
|
|
|
|
|
|
|
li.md-checkbox [type="checkbox"]:not(:checked) + label:before, |
|
|
|
|
li.md-checkbox [type="checkbox"]:checked + label:before { |
|
|
|
|
content: ''; |
|
|
|
@ -321,21 +413,15 @@ li.md-checkbox [type="checkbox"]:checked + label:after {
@@ -321,21 +413,15 @@ li.md-checkbox [type="checkbox"]:checked + label:after {
|
|
|
|
|
transform: scale(1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ins { |
|
|
|
|
text-decoration: none; |
|
|
|
|
color: #2178db; |
|
|
|
|
font-weight: bold; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.resource-icon { |
|
|
|
|
display: inline-block; |
|
|
|
|
position: relative; |
|
|
|
|
top: 2px; |
|
|
|
|
top: 4px; |
|
|
|
|
text-decoration: none; |
|
|
|
|
width: 14px; |
|
|
|
|
height: 16px; |
|
|
|
|
width: 18px; |
|
|
|
|
height: 21px; |
|
|
|
|
margin-right: 5px; |
|
|
|
|
background-color: #155BDA; |
|
|
|
|
background-color: #155bda; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* TOC */ |
|
|
|
@ -348,12 +434,11 @@ nav.table-of-contents ul {
@@ -348,12 +434,11 @@ nav.table-of-contents ul {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
nav.table-of-contents>ul { |
|
|
|
|
|
|
|
|
|
top: 5px; |
|
|
|
|
right: 0px; |
|
|
|
|
z-index: 99; |
|
|
|
|
|
|
|
|
|
font-size: 12px; |
|
|
|
|
font-size: 0.8em !important; |
|
|
|
|
position: fixed; |
|
|
|
|
padding: 15px; |
|
|
|
|
|
|
|
|
@ -371,7 +456,7 @@ nav.table-of-contents::after {
@@ -371,7 +456,7 @@ nav.table-of-contents::after {
|
|
|
|
|
color: black; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
nav.table-of-contents>ul:hover { |
|
|
|
|
nav.table-of-contents > ul:hover { |
|
|
|
|
background: #F8F8F8; |
|
|
|
|
box-shadow: -5px 0px 10px 0px rgba(0,0,0,0.15); |
|
|
|
|
|
|
|
|
@ -380,8 +465,8 @@ nav.table-of-contents>ul:hover {
@@ -380,8 +465,8 @@ nav.table-of-contents>ul:hover {
|
|
|
|
|
overflow: scroll; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
nav.table-of-contents>ul:hover::before { |
|
|
|
|
content: "Содержание" |
|
|
|
|
nav.table-of-contents > ul:hover::before { |
|
|
|
|
content: "Содержание"; |
|
|
|
|
font-weight: bold; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -401,3 +486,4 @@ nav.table-of-contents li:before {
@@ -401,3 +486,4 @@ nav.table-of-contents li:before {
|
|
|
|
|
content: "" !important; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|