-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed 52ffa68 with MkDocs version: 1.6.1
- Loading branch information
0 parents
commit fc64870
Showing
170 changed files
with
112,565 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,222 @@ | ||
[data-md-color-primary=P] { | ||
--md-primary-fg-color: #FFACA6; | ||
} | ||
|
||
[data-md-color-accent=P] { | ||
--md-accent-fg-color: #FFACA6; | ||
} | ||
|
||
[data-md-color-scheme=default] { | ||
--md-typeset-a-color: #000000; | ||
--my-changlog-color: #EFEFEF; | ||
} | ||
|
||
[data-md-color-scheme=slate] { | ||
--md-typeset-a-color: #FFFFFF; | ||
--my-changlog-color: #161616; | ||
} | ||
|
||
.md-grid { | ||
max-width: 1400px; | ||
} | ||
|
||
/* make the page wider */ | ||
/* changelog config*/ | ||
.timeline-card { | ||
background-color: var(--my-changlog-color); | ||
} | ||
|
||
.timeline-content::before { | ||
background-color: var(--my-changlog-color); | ||
} | ||
|
||
.changelog-type { | ||
background-color: #CC9052; | ||
} | ||
|
||
.changelog-type-newpage { | ||
background-color: #FF9C80; | ||
} | ||
|
||
.changelog-type-refactor::before { | ||
content: "文档更新"; | ||
} | ||
|
||
/* 图片的样式 */ | ||
img { | ||
border-radius: 10px; | ||
position: relative; | ||
transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out; | ||
} | ||
|
||
img:hover { | ||
filter: brightness(1.15) saturate(1.1) | ||
drop-shadow(0 0 0.5rem rgba(255, 255, 255, 0.2)); | ||
transform: scale(1.03); | ||
} | ||
|
||
/* beat like a heart */ | ||
@keyframes heart { | ||
|
||
0%, | ||
40%, | ||
80%, | ||
100% { | ||
transform: scale(1); | ||
} | ||
|
||
20%, | ||
60% { | ||
transform: scale(1.15); | ||
} | ||
} | ||
|
||
.heart { | ||
animation: heart 1000ms infinite; | ||
} | ||
|
||
/* new admonitions */ | ||
:root { | ||
--md-admonition-icon--definition: url('../icons/define.svg') | ||
} | ||
|
||
.md-typeset .admonition.definition, | ||
.md-typeset details.definition { | ||
border-color: rgb(43, 155, 70); | ||
} | ||
|
||
.md-typeset .definition>.admonition-title, | ||
.md-typeset .definition>summary { | ||
background-color: rgba(43, 155, 70, 0.1); | ||
} | ||
|
||
.md-typeset .definition>.admonition-title::before, | ||
.md-typeset .definition>summary::before { | ||
background-color: rgb(43, 155, 70); | ||
-webkit-mask-image: var(--md-admonition-icon--definition); | ||
mask-image: var(--md-admonition-icon--definition); | ||
} | ||
|
||
:root { | ||
--md-admonition-icon--reference: url('../icons/reference.svg') | ||
} | ||
|
||
.md-typeset .admonition.reference, | ||
.md-typeset details.reference { | ||
border-color: rgb(223, 251, 13); | ||
} | ||
|
||
.md-typeset .reference>.admonition-title, | ||
.md-typeset .reference>summary { | ||
background-color: rgba(249, 249, 90, 0.1); | ||
} | ||
|
||
.md-typeset .reference>.admonition-title::before, | ||
.md-typeset .reference>summary::before { | ||
background-color: rgb(223, 251, 13); | ||
-webkit-mask-image: var(--md-admonition-icon--reference); | ||
mask-image: var(--md-admonition-icon--reference); | ||
} | ||
|
||
/* new code highlight lines*/ | ||
span.hll { | ||
width: 150%; | ||
} | ||
|
||
/*see https://xuan-insr.github.io/%E6%9D%82%E9%A1%B9/%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E8%AE%B0%E5%BD%95/#%E8%A7%A3%E5%86%B3%E5%85%AC%E5%BC%8F%E5%B8%A6%E7%BA%B5%E5%90%91%E6%BB%9A%E5%8A%A8%E6%9D%A1%E7%9A%84%E9%97%AE%E9%A2%98*/ | ||
.md-typeset div.arithmatex { | ||
overflow-y: hidden; | ||
} | ||
|
||
/* 各个标题样式 */ | ||
h1 { | ||
text-align: center; | ||
} | ||
|
||
h2 { | ||
color: #f8bc31; | ||
text-align: center; | ||
} | ||
|
||
h3 { | ||
color: rgb(105, 186, 101); | ||
} | ||
|
||
h4 { | ||
color: rgb(68, 102, 174); | ||
} | ||
|
||
md-header__button md-logo { | ||
width: 150%; | ||
height: 150%; | ||
} | ||
|
||
/* 改表情包颜色 */ | ||
.youtube { | ||
color: #EE0F0F; | ||
} | ||
|
||
/* 无效 */ | ||
md-footer__inner md-grid { | ||
height: 400px; | ||
} | ||
|
||
/* 代码的配色 */ | ||
:root>* { | ||
--md-code-hl-string-color: #0eb49b; | ||
--md-code-hl-comment-color: #0e8941; | ||
--md-code-hl-number-color: #e6695b; | ||
--md-code-hl-special-color: #f06090; | ||
--md-code-hl-constant-color: #9383e2; | ||
--md-code-hl-variable-color: #92915b; | ||
--md-code-hl-name-color: #c48a3a; | ||
--md-code-hl-function-color: #c973d9; | ||
} | ||
|
||
/* 代码字体 */ | ||
@font-face { | ||
font-family: "Longjf Nerd Font"; | ||
src: "../fonts/LONGJF-NF-REGULAR.OTF"; | ||
} | ||
|
||
:root { | ||
--md-code-font: "Longjf Nerd Font"; | ||
} | ||
|
||
.typewriter { | ||
font-weight: bold; | ||
font-size: 32px; | ||
filter: brightness(1.2); | ||
} | ||
|
||
.yellow { | ||
color: orange; | ||
} | ||
|
||
.blue { | ||
color: #87CEEB; | ||
} | ||
|
||
.md-typeset__table { | ||
text-align: center; | ||
filter: brightness(1.2); | ||
} | ||
|
||
.navigation { | ||
font-size: 23px; | ||
} | ||
|
||
.navigation:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
/* 引用的设置 */ | ||
blockquote { | ||
padding: 10px 0px 10px 15px; | ||
background-color: rgba(66, 185, 131, 0.1); | ||
position: relative; | ||
/* 右上角圆角 */ | ||
border-top-right-radius: 5px; | ||
/* 右下角圆角 */ | ||
border-bottom-right-radius: 5px; | ||
} |
Oops, something went wrong.