Compare commits

..

No commits in common. "310b659aea6d1a7ffbbd794fabc3f280028dc588" and "4156423dd3954539caf3b62d11204cbc81941a47" have entirely different histories.

2 changed files with 5 additions and 20 deletions

View file

@ -1,3 +1,4 @@
<details><summary>{{ .Get "title" }}</summary> <details><summary>{{ .Get "title" }}</summary>
{{ .Inner }} {{ .Inner }}
</details> </details>

View file

@ -6,10 +6,8 @@
--background-color-light: #252525; --background-color-light: #252525;
--background-color-dark: #121212; --background-color-dark: #121212;
--avatar-background: #B6B6B6; --avatar-background: #B6B6B6;
--color01: #799479; --gray-colored01: #799479;
--color01_bright: #58af58; --gray-colored02: #8f8071;
--color02: #8f8071;
--color02_bright: #b88a5b;
} }
/******************* Page *******************/ /******************* Page *******************/
@ -592,7 +590,7 @@ pre {
margin-top: 0.5rem; margin-top: 0.5rem;
background: repeating-linear-gradient(28deg, #1C1C1C, #1C1C1C 20px, #121212 20px, #121212 40px); background: repeating-linear-gradient(28deg, #1C1C1C, #1C1C1C 20px, #121212 20px, #121212 40px);
} }
:not(pre, details)>code { :not(pre)>code {
font-size: 1rem; font-size: 1rem;
color: var(--font-color-em); color: var(--font-color-em);
} }
@ -648,7 +646,7 @@ details[open] summary:hover {
outline-offset: .3rem; outline-offset: .3rem;
} }
/******************* Article Superscript *******************/ /******************* Article Details *******************/
.article-body sup { .article-body sup {
vertical-align: top; vertical-align: top;
position: relative; position: relative;
@ -679,17 +677,3 @@ details[open] summary:hover {
right: 1rem; right: 1rem;
font-family: Arial; font-family: Arial;
} }
/******************* Generic colors *******************/
.color01 {
color: var(--color01);
}
.color01.bright {
color: var(--color01_bright);
}
.color02 {
color: var(--color02);
}
.color02.bright {
color: var(--color02_bright);
}