Skip to content

Commit

Permalink
Deployed 5e393f9 with MkDocs version: 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Nov 14, 2023
0 parents commit c0b5651
Show file tree
Hide file tree
Showing 469 changed files with 222,367 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
2,241 changes: 2,241 additions & 0 deletions 404.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
wiki.adhadse.com
Binary file added assets/adhadse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
195 changes: 195 additions & 0 deletions assets/css/extra.css
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);
}
}
86 changes: 86 additions & 0 deletions assets/css/hl.css
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;
}
3 changes: 3 additions & 0 deletions assets/css/hljs.css
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;
}
Binary file added assets/images/cs/rust/reference_cycles_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/cs/rust/reference_cycles_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/cs/rust/reference_cycles_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/cs/rust/stack_heap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/cs/rust/string_stack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions assets/images/etc/maths/Collinearity.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions assets/images/etc/maths/Intercept_form.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions assets/images/etc/maths/Normal_Form.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions assets/images/etc/maths/Point_SLope_form.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions assets/images/etc/maths/distance_of_a_point_from_a_line.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/etc/maths/frustum.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/favicon.png
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

0 comments on commit c0b5651

Please sign in to comment.