2021-02-10 01:01:50 +04:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Share Tech Mono';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
src: local('ShareTechMono'), local('ShareTechMono-Regular'),
|
2021-11-15 02:52:29 +04:00
|
|
|
url(/shared/fonts/ShareTechMono-Regular.ttf) format('truetype'); }
|
2021-02-10 01:01:50 +04:00
|
|
|
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
font-variant: normal;
|
|
|
|
text-align: left; }
|
|
|
|
|
2022-05-22 03:17:21 +04:00
|
|
|
h4,
|
|
|
|
h5 {
|
2021-02-10 01:01:50 +04:00
|
|
|
text-indent: 1.5rem;
|
|
|
|
margin: 1rem 0 1rem 0; }
|
|
|
|
|
2021-02-10 19:56:44 +04:00
|
|
|
h3 a,
|
2022-05-22 03:17:21 +04:00
|
|
|
h4 a,
|
|
|
|
h5 a { color: var(--text-color); }
|
2021-02-10 19:56:44 +04:00
|
|
|
|
|
|
|
h3 a:hover,
|
2022-05-22 03:17:21 +04:00
|
|
|
h4 a:hover,
|
|
|
|
h5 a:hover { color: var(--primary-color); }
|
2021-02-10 19:56:44 +04:00
|
|
|
|
2021-02-10 01:01:50 +04:00
|
|
|
code,
|
|
|
|
pre {
|
|
|
|
font-family: 'Share Tech Mono';
|
|
|
|
font-size: 1.1rem;
|
2021-09-20 16:41:13 +04:00
|
|
|
letter-spacing: -1px; }
|
2021-02-10 01:01:50 +04:00
|
|
|
|
|
|
|
pre {
|
|
|
|
border-left: 1px solid var(--primary-color);
|
|
|
|
padding-left: .25rem;
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
margin-left: 1.6rem;
|
2021-09-20 16:41:13 +04:00
|
|
|
overflow-x: auto;
|
|
|
|
overflow-y: auto;
|
2021-02-10 01:01:50 +04:00
|
|
|
white-space: pre; }
|
|
|
|
|
|
|
|
article {
|
|
|
|
margin-top: 1rem;
|
|
|
|
max-width: 100%; }
|
|
|
|
|
|
|
|
article:last-child { margin-bottom: 1rem; }
|
|
|
|
|
|
|
|
article header {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column; }
|
|
|
|
|
|
|
|
article header .menu {
|
|
|
|
display: flex;
|
|
|
|
font-size: .8rem;
|
|
|
|
justify-content: space-between; }
|
|
|
|
|
|
|
|
article header nav a { font-variant: normal; }
|
|
|
|
|
|
|
|
article header nav ol {
|
|
|
|
counter-reset: item;
|
|
|
|
list-style-type: none; }
|
|
|
|
|
|
|
|
article header nav ol > li { counter-increment: item; }
|
|
|
|
|
|
|
|
article header nav ol > li:before { content: counters(item, '.') '. '; }
|