-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed 5e393f9 with MkDocs version: 1.4.2
- Loading branch information
Unknown
committed
Nov 14, 2023
0 parents
commit c0b5651
Showing
469 changed files
with
222,367 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 @@ | ||
wiki.adhadse.com |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,195 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap'); | ||
|
||
.md-ellipsis { | ||
font-family: "Poppins", "Inter", --apple-system, sans-serif; | ||
font-weight: 400; | ||
} | ||
|
||
/*bring site name closer to logo*/ | ||
[dir=ltr] .md-header__title { | ||
margin-left: 0; | ||
} | ||
|
||
:root { | ||
font-variant-ligatures: normal !important; | ||
} | ||
|
||
[data-md-color-scheme=slate] { | ||
--md-default-bg-color: #0f0f0f; | ||
} | ||
|
||
.highlight, | ||
[data-md-color-scheme=default], | ||
.highlight [data-md-color-scheme=slate], | ||
[data-md-color-scheme=slate] { | ||
--md-footer-bg-color: #000; | ||
--md-footer-bg-color--dark: #000; /* color for bottom most footer in dark mode */ | ||
|
||
/* code color */ | ||
--md-code-fg-color: #ffffff; | ||
--md-code-hl-punctuation-color: #fff; | ||
--md-code-hl-operator-color: #fff; | ||
--md-code-bg-color: #222; | ||
--md-code-hl-keyword-color: #cc7832; | ||
--md-code-hl-number-color: #689757; | ||
--md-code-hl-function-color: #ffc66d; | ||
--md-code-hl-string-color: #6a8759; | ||
--md-code-hl-comment-color: #606366; | ||
--md-code-hl-special-color: #bbb529; | ||
--md-code-hl-color: #c5c5c521; | ||
} | ||
|
||
.highlight .nb, .highlight .bp { | ||
color: var(--md-code-hl-keyword-color); | ||
} | ||
.md-clipboard { | ||
color: #7e7979; | ||
} | ||
|
||
/* increase logo size */ | ||
/*.md-header__button.md-logo img, .md-header__button.md-logo svg {*/ | ||
/* height: 1.5rem;*/ | ||
/*}*/ | ||
|
||
/*aligning images*/ | ||
.center { | ||
display: block; | ||
margin: 0 auto; | ||
} | ||
|
||
.right { | ||
float: right; | ||
} | ||
|
||
/* classic admonition/alerts */ | ||
.md-typeset .admonition, | ||
.md-typeset details { | ||
border-width: 0; | ||
border-left-width: 4px; | ||
} | ||
|
||
.md-typeset .admonition, .md-typeset details { | ||
background-color: var(--md-admonition-bg-color); | ||
font-size: .8rem; | ||
} | ||
|
||
/* Scrollbar style */ | ||
|
||
/* width */ | ||
::-webkit-scrollbar { | ||
width: 0.6rem; | ||
} | ||
|
||
html { | ||
overflow-y: overlay; | ||
} | ||
|
||
/* Track */ | ||
::-webkit-scrollbar-track { | ||
display: none; | ||
background: none; | ||
} | ||
|
||
/* Handle */ | ||
::-webkit-scrollbar-thumb { | ||
background: #888; | ||
width: 70%; | ||
} | ||
|
||
::-webkit-scrollbar-thumb:hover { | ||
/* Handle on hover */ | ||
background: #555; | ||
} | ||
|
||
.MathJax { | ||
overflow: scroll hidden; | ||
} | ||
|
||
.md-typeset figcaption { | ||
margin: 0.5em auto; | ||
max-width: max-content; | ||
} | ||
|
||
/* selection */ | ||
::selection { | ||
background: #000; | ||
color: #fff; | ||
border-radius: 1em; | ||
border: 1px solid; | ||
} | ||
|
||
::-moz-selection { | ||
background: $black-original; | ||
color: #fff; | ||
border-radius: 1em; | ||
border: 1px solid; | ||
} | ||
|
||
.hljs ::selection, | ||
.hljs::selection { | ||
background: #fff !important; | ||
color: #000; | ||
} | ||
|
||
/* home page */ | ||
.hero-container h1 { | ||
font-family: Poppins, Inter, sans-serif; | ||
font-weight: 600 !important; | ||
color: inherit !important; | ||
font-size: 3rem !important; | ||
} | ||
|
||
.hero-container p { | ||
font-size: 1rem; | ||
margin-top: 2rem; | ||
} | ||
|
||
.hero-container h1 span { | ||
color: white; | ||
} | ||
|
||
.hero-container .bg { | ||
position: absolute; | ||
margin-left: auto; | ||
margin-right: auto; | ||
left: 0; | ||
right: 0; | ||
width: 100vw; | ||
height: 100vw; | ||
z-index: -1; | ||
background: conic-gradient( | ||
from 180deg at 50% 50%, | ||
#1f363d 0deg, | ||
#ffffff 360deg | ||
); | ||
animation: rotate-gradient 7s linear infinite; | ||
} | ||
|
||
.hero-container { | ||
position: relative; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
width: 100vw; | ||
height: 80vh; | ||
padding: 0; | ||
box-sizing: border-box; | ||
overflow: hidden; | ||
color: #ffffff; | ||
background: #000; | ||
margin-top: 0 !important; | ||
} | ||
|
||
.hero-content { | ||
margin-left: 1.5rem; | ||
margin-bottom: 4rem; | ||
} | ||
|
||
@keyframes rotate-gradient { | ||
from { | ||
transform: rotate(0deg) scale(3); | ||
} | ||
to { | ||
transform: rotate(360deg) scale(3); | ||
} | ||
} |
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,86 @@ | ||
.md-typeset mark { | ||
cursor: pointer; | ||
padding: 0 0.1rem; | ||
} | ||
|
||
[data-md-color-scheme="slate"] mark { | ||
color: white; | ||
} | ||
|
||
mark.y { | ||
background-color: #fff6da; | ||
} | ||
|
||
mark.y:hover { | ||
background-color: #fff2c8; | ||
} | ||
|
||
[data-md-color-scheme="slate"] mark.y { | ||
background-color: #564328; | ||
} | ||
|
||
[data-md-color-scheme="slate"] mark.y:hover { | ||
background-color: #9b6f32; | ||
} | ||
|
||
mark.r { | ||
background-color: #ffe9eb; | ||
} | ||
|
||
mark.r:hover { | ||
background-color: #f9d5d8; | ||
} | ||
|
||
[data-md-color-scheme="slate"] mark.r { | ||
background-color: #522e2a; | ||
} | ||
[data-md-color-scheme="slate"] mark.r:hover { | ||
background-color: #933f35; | ||
} | ||
|
||
mark.b { | ||
background-color: #e5f4ff; | ||
} | ||
|
||
mark.b:hover { | ||
background-color: #d2e8f7; | ||
} | ||
|
||
[data-md-color-scheme="slate"] mark.b { | ||
background-color: #143a4e; | ||
} | ||
[data-md-color-scheme="slate"] mark.b:hover { | ||
background-color: #245671; | ||
} | ||
|
||
mark.v { | ||
background-color: #efe5f7cc; | ||
} | ||
|
||
mark.v:hover { | ||
background-color: #e6d6f2cc; | ||
} | ||
|
||
[data-md-color-scheme="slate"] mark.v { | ||
background-color: #3c2d49; | ||
} | ||
|
||
[data-md-color-scheme="slate"] mark.v:hover { | ||
background-color: #42215f; | ||
} | ||
|
||
mark.g { | ||
background-color: #edf3ec; | ||
} | ||
|
||
mark.g:hover { | ||
background-color: #d6f2d1; | ||
} | ||
|
||
[data-md-color-scheme="slate"] mark.g { | ||
background-color: #243d30; | ||
} | ||
|
||
[data-md-color-scheme="slate"] mark.g:hover { | ||
background-color: #25573d; | ||
} |
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,3 @@ | ||
.highlight .hll { | ||
box-shadow: 2px 0 0 0 var(--md-code-hl-color) inset; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.