This commit is contained in:
Руслан 2023-07-30 14:58:54 +06:00 committed by GitHub
parent 85998f84f9
commit 490b6e251b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,92 +1,70 @@
/* Markdown */ root {
:root{
--maincolor : blue; --maincolor : blue;
} }
html { html {
color : #232333; color : #232333;
font-family : 'Roboto Mono', monospace; font-family : 'Roboto Mono', monospace;
font-size : 15px; font-size : 15px;
line-height : 1.6em; line-height : 1.6em;
} }
body { body {
display : block; display : block;
margin : 8px; margin : 8px;
} }
* {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
::selection { ::selection {
background: var(--maincolor); background : blue;
color : #fff; color : #fff;
} }
p { p {
font-family : 'Fira Sans', sans-serif; font-family : 'Fira Sans', sans-serif;
line-height : 1.5; line-height : 1.5;
} }
hr { hr {
margin : 1em 0; margin : 1em 0;
} }
blockquote { blockquote {
color : #737373; color : #737373;
margin : 0; margin : 0;
padding-left : 1em; padding-left : 1em;
} }
a { a {
border-bottom: 3px solid var(--maincolor); border-bottom : 3px solid blue;
color : inherit; color : inherit;
text-decoration : none; text-decoration : none;
} }
a:hover { a:hover {
background-color: var(--maincolor); background-color : blue;
color : #fff; color : #fff;
} }
ul { ul {
list-style : none; list-style : none;
padding-left : 2ch; padding-left : 2ch;
} }
ul li { ul li {
text-indent : -2ch; text-indent : -2ch;
} }
ul > li::before { ul > li::before {
content : '* '; content : '* ';
font-weight : bold; font-weight : bold;
} }
/* Images */
img { img {
border: 3px solid #ececec; border : #ececec solid 3px;
max-width : 100%; max-width : 100%;
} }
figure { figure {
box-sizing : border-box; box-sizing : border-box;
display : inline-block; display : inline-block;
margin : 0; margin : 0;
max-width : 100%; max-width : 100%;
} }
figure img { figure img {
max-height : 500px; max-height : 500px;
} }
@media screen and (min-width: 600px) { @media screen and (min-width: 600px) {
figure { figure {
padding : 0 40px; padding : 0 40px;
} }
} }
figure h4 { figure h4 {
font-size : 1rem; font-size : 1rem;
margin : 0; margin : 0;
@ -95,43 +73,34 @@ figure h4 {
figure h4::before { figure h4::before {
content : '↳ '; content : '↳ ';
} }
/* Code blocks */
code { code {
background-color : #f1f1f1; background-color : #f1f1f1;
padding: .1em .2em; padding : 0.1em 0.2em;
} }
pre { pre {
background-color : #ececec; background-color : #ececec;
line-height : 1.4; line-height : 1.4;
overflow-x : auto; overflow-x : auto;
padding : 1em; padding : 1em;
} }
.highlight pre ::selection { .highlight pre ::selection {
background: rgba(255, 255, 255, 0.2); background : rgb(255, 255, 255, 0.2);
color : inherit; color : inherit;
} }
pre code { pre code {
background-color : transparent; background-color : transparent;
color : inherit; color : inherit;
font-size : 100%; font-size : 100%;
padding : 0; padding : 0;
} }
/* Containers */
.content { .content {
margin-bottom : 4em; margin-bottom : 4em;
margin-left : auto; margin-left : auto;
margin-right : auto; margin-right : auto;
max-width : 800px; max-width : 800px;
padding : 0 1ch; padding : 0 1ch;
word-wrap: break-word; overflow-wrap : break-word;
} }
/* Header */
header { header {
display : flex; display : flex;
flex-wrap : wrap; flex-wrap : wrap;
@ -139,7 +108,6 @@ header {
margin : 1em 0; margin : 1em 0;
line-height : 2.5em; line-height : 2.5em;
} }
header .main { header .main {
font-size : 1.5rem; font-size : 1.5rem;
} }
@ -147,125 +115,107 @@ h1, h2, h3, h4, h5, h6 {
font-size : 1.2rem; font-size : 1.2rem;
margin-top : 2em; margin-top : 2em;
} }
h1::before {
h1::before { color: var(--maincolor); content: '# '; } color : var(--maincolor);
h2::before { color: var(--maincolor); content: '## '; } content : '# ';
h3::before { color: var(--maincolor); content: '### '; } }
h4::before { color: var(--maincolor); content: '#### '; } h2::before {
h5::before { color: var(--maincolor); content: '##### '; } color : var(--maincolor);
h6::before { color: var(--maincolor); content: '###### '; } content : '## ';
}
h3::before {
color : var(--maincolor);
content : '### ';
}
h4::before {
color : var(--maincolor);
content : '#### ';
}
h5::before {
color : var(--maincolor);
content : '##### ';
}
h6::before {
color : var(--maincolor);
content : '###### ';
}
.meta { .meta {
color : #999; color : #999;
letter-spacing : -0.5px; letter-spacing : -0.5px;
} }
/* Footer */
footer { footer {
display : flex; display : flex;
align-items : center; align-items : center;
padding: 2rem 0rem; padding : 2rem 0;
margin-top : 2rem; margin-top : 2rem;
} }
.soc { .soc {
display : flex; display : flex;
align-items : center; align-items : center;
border-bottom : none; border-bottom : none;
} }
.border { .border {
margin-left : 0.5rem; margin-left : 0.5rem;
margin-right : 0.5rem; margin-right : 0.5rem;
border: 1px solid; border : solid 1px;
} }
.footer-info {
padding: var(--footer-padding);
}
/* Common */
.title h1 { .title h1 {
margin-bottom : 0; margin-bottom : 0;
} }
time { time {
color : grey; color : grey;
} }
/* Posts */
article .title { article .title {
margin-bottom : 1em; margin-bottom : 1em;
} }
/* Callout */
.callout { .callout {
background-color: var(--maincolor); background-color : blue;
color : #fff; color : #fff;
padding : 1em; padding : 1em;
} }
.callout p { .callout p {
font-family : 'IBM Plex Mono', monospace; font-family : 'IBM Plex Mono', monospace;
margin : 0; margin : 0;
} }
.callout a { .callout a {
border-bottom : 3px solid #fff; border-bottom : 3px solid #fff;
} }
.callout a:hover { .callout a:hover {
background-color : #fff; background-color : #fff;
color : var(--maincolor); color : var(--maincolor);
} }
.site-description { .site-description {
display : flex; display : flex;
justify-content : space-between; justify-content : space-between;
} }
.tags li::before { .tags li::before {
content : "<"; content : "<";
} }
.tags li::after { .tags li::after {
content : ">"; content : ">";
} }
.tags a { .tags a {
border-bottom: 3px solid var(--maincolor); border-bottom : 3px solid blue;
} }
.tags a:hover { .tags a:hover {
color : white; color : white;
background-color: var(--maincolor); background-color : blue;
} }
svg { svg {
max-height : 15px; max-height : 15px;
} }
.soc:hover { .soc:hover {
color : white; color : white;
} }
.draft-label { .draft-label {
text-decoration : none; text-decoration : none;
padding : 2px 4px; padding : 2px 4px;
margin-left : 6px; margin-left : 6px;
background-color : #f9f2f4; background-color : #f9f2f4;
} }
.highlight { .highlight {
position : relative; position : relative;
-webkit-overflow-scrolling: touch;
} }
.highlight pre code[class*="language-"] {
-webkit-overflow-scrolling: touch;
}
.highlight pre code[class*="language-"]::before { .highlight pre code[class*="language-"]::before {
background : black; background : black;
border-radius : 0 0 0.25rem 0.25rem; border-radius : 0 0 0.25rem 0.25rem;
@ -279,252 +229,191 @@ svg{
text-transform : uppercase; text-transform : uppercase;
top : 0; top : 0;
} }
.highlight pre code[class="language-javaScript"]::before, .highlight pre code[class="language-js"]::before {
.highlight pre code[class=language-javaScript]::before,
.highlight pre code[class="language-js"]::before {
content : "js"; content : "js";
background : #f7df1e; background : #f7df1e;
color : black; color : black;
} }
.highlight pre code[class*="language-yml"]::before, .highlight pre code[class*="language-yaml"]::before {
.highlight pre code[class*='language-yml']::before,
.highlight pre code[class*='language-yaml']::before {
content : 'yaml'; content : 'yaml';
background : #f71e6a; background : #f71e6a;
color : white; color : white;
} }
.highlight pre code[class*="language-shell"]::before, .highlight pre code[class*="language-bash"]::before, .highlight pre code[class*="language-sh"]::before {
.highlight pre code[class*='language-shell']::before,
.highlight pre code[class*='language-bash']::before,
.highlight pre code[class*='language-sh']::before {
content : 'shell'; content : 'shell';
background : green; background : green;
color:white color : white;
} }
.highlight pre code[class*="language-json"]::before {
.highlight pre code[class*='language-json']::before{
content : 'json'; content : 'json';
background : dodgerblue; background : dodgerblue;
color: #000000 color : #000000;
} }
.highlight pre code[class*="language-python"]::before, .highlight pre code[class*="language-py"]::before {
.highlight pre code[class*='language-python']::before,
.highlight pre code[class*='language-py']::before {
content : 'py'; content : 'py';
background : blue; background : blue;
color : yellow; color : yellow;
} }
.highlight pre code[class*="language-css"]::before {
.highlight pre code[class*='language-css']::before{
content : 'css'; content : 'css';
background : cyan; background : cyan;
color : black; color : black;
} }
.highlight pre code[class*="language-go"]::before {
.highlight pre code[class*='language-go']::before{
content : 'Go'; content : 'Go';
background : cyan; background : cyan;
color : royalblue; color : royalblue;
} }
.highlight pre code[class*="language-md"]::before, .highlight pre code[class*="language-md"]::before {
.highlight pre code[class*='language-md']::before,
.highlight pre code[class*='language-md']::before{
content : 'Markdown'; content : 'Markdown';
background : royalblue; background : royalblue;
color : whitesmoke; color : whitesmoke;
} }
/* table */
table { table {
border-spacing : 0; border-spacing : 0;
border-collapse : collapse; border-collapse : collapse;
} }
table th { table th {
padding : 6px 13px; padding : 6px 13px;
border: 1px solid #dfe2e5; border : #dfe2e5 solid 1px;
font-size : large; font-size : large;
} }
table td { table td {
padding : 6px 13px; padding : 6px 13px;
border: 1px solid #dfe2e5; border : #dfe2e5 solid 1px;
} }
body { body {
color : white; color : white;
background-color : black; background-color : black;
} }
::-moz-selection { ::-moz-selection {
background: var(--maincolor); background : blue;
color : #fff; color : #fff;
text-shadow : none; text-shadow : none;
} }
::selection { ::selection {
background: var(--maincolor); background : blue;
color : #fff; color : #fff;
text-shadow : none; text-shadow : none;
} }
hr { hr {
border-top : 3px dotted blue; border-top : 3px dotted blue;
} }
code { code {
background-color : lightblue; background-color : lightblue;
color : black; color : black;
text-decoration: bold;
padding : 0.1em 0.2em; padding : 0.1em 0.2em;
} }
pre { pre {
background-color : #272822; background-color : #272822;
line-height : 1.4; line-height : 1.4;
overflow-x : auto; overflow-x : auto;
padding : 1em; padding : 1em;
} }
blockquote { blockquote {
border-color : blue; border-color : blue;
} }
h1, h2, h3, h4, h5, h6 {
h1,
h2,
h3,
h4,
h5,
h6 {
color : #ddd; color : #ddd;
} }
h1::before { h1::before {
color : var(--maincolor); color : var(--maincolor);
content : "# "; content : "# ";
} }
h2::before { h2::before {
color : var(--maincolor); color : var(--maincolor);
content : "## "; content : "## ";
} }
h3::before { h3::before {
color : var(--maincolor); color : var(--maincolor);
content : "### "; content : "### ";
} }
h4::before { h4::before {
color : var(--maincolor); color : var(--maincolor);
content : "#### "; content : "#### ";
} }
h5::before { h5::before {
color : var(--maincolor); color : var(--maincolor);
content : "##### "; content : "##### ";
} }
h6::before { h6::before {
color : var(--maincolor); color : var(--maincolor);
content : "###### "; content : "###### ";
} }
a { a {
border-bottom: 3px solid var(--maincolor); border-bottom : 3px solid blue;
color : inherit; color : inherit;
} }
a:hover { a:hover {
background-color: var(--maincolor); background-color : blue;
color : black; color : black;
} }
.site-description a { .site-description a {
color : #ddd; color : #ddd;
} }
.site-description a:hover { .site-description a:hover {
color : black; color : black;
} }
.tags a { .tags a {
border-bottom: 3px solid var(--maincolor); border-bottom : 3px solid blue;
} }
.tags a:hover { .tags a:hover {
background-color: var(--maincolor); background-color : blue;
color : black; color : black;
} }
.site-title a { .site-title a {
color : white; color : white;
text-decoration : none !important ; text-decoration : none !important ;
} }
.header nav, .footer {
.header nav,
.footer {
border-color : #333; border-color : #333;
} }
.highlight { .highlight {
background-color : #333; background-color : #333;
} }
.soc:hover { .soc:hover {
color : black; color : black;
} }
.draft-label { .draft-label {
color : var(--maincolor); color : var(--maincolor);
background-color : blue; background-color : blue;
} }
.highlight pre code[class="language-javaScript"]::before, .highlight pre code[class="language-js"]::before {
.highlight pre code[class=language-javaScript]::before,
.highlight pre code[class="language-js"]::before {
content : "js"; content : "js";
background : #f7df1e; background : #f7df1e;
color : black; color : black;
} }
.highlight pre code[class*="language-yml"]::before, .highlight pre code[class*="language-yaml"]::before {
.highlight pre code[class*='language-yml']::before,
.highlight pre code[class*='language-yaml']::before {
content : 'yaml'; content : 'yaml';
background : #f71e6a; background : #f71e6a;
color : white; color : white;
} }
.highlight pre code[class*="language-shell"]::before, .highlight pre code[class*="language-bash"]::before, .highlight pre code[class*="language-sh"]::before {
.highlight pre code[class*='language-shell']::before,
.highlight pre code[class*='language-bash']::before,
.highlight pre code[class*='language-sh']::before {
content : 'shell'; content : 'shell';
background : green; background : green;
color:white color : white;
} }
.highlight pre code[class*="language-json"]::before {
.highlight pre code[class*='language-json']::before{
content : 'json'; content : 'json';
background : dodgerblue; background : dodgerblue;
color: #000000 color : #000000;
} }
.highlight pre code[class*="language-python"]::before, .highlight pre code[class*="language-py"]::before {
.highlight pre code[class*='language-python']::before,
.highlight pre code[class*='language-py']::before {
content : 'py'; content : 'py';
background : blue; background : blue;
color : yellow; color : yellow;
} }
.highlight pre code[class*="language-css"]::before {
.highlight pre code[class*='language-css']::before{
content : 'css'; content : 'css';
background : cyan; background : cyan;
color : black; color : black;
} }
.highlight pre code[class*="language-go"]::before {
.highlight pre code[class*='language-go']::before{
content : 'Go'; content : 'Go';
background : cyan; background : cyan;
color : royalblue; color : royalblue;
} }
.highlight pre code[class*="language-md"]::before, .highlight pre code[class*="language-md"]::before {
.highlight pre code[class*='language-md']::before,
.highlight pre code[class*='language-md']::before{
content : 'Markdown'; content : 'Markdown';
background : royalblue; background : royalblue;
color : whitesmoke; color : whitesmoke;