mirror of
https://github.com/krahets/hello-algo.git
synced 2026-02-03 02:43:41 +08:00
feat: Add visualizing code blocks based on the pythontutor (#1029)
* Update copyright * Update the Python code * Fix the code comments in ArrayBinaryTree * Fix the code comments in ArrayBinaryTree * Roll back time_comlexity.py * Add the visualizing code(pythontutor) blocks to the chapter complexity, data structure, array and linked list, stack and queue, hash table, and backtracking * Fix the code comments
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
--md-default-bg-color: #ffffff;
|
||||
|
||||
--md-code-fg-color: #1d1d20;
|
||||
--md-code-bg-color: #f5f5f5;
|
||||
|
||||
--md-accent-fg-color: #999;
|
||||
|
||||
@@ -19,6 +20,9 @@
|
||||
|
||||
--md-typeset-btn-color: #55aea6;
|
||||
--md-typeset-btn-hover-color: #52bbb1;
|
||||
|
||||
--md-admonition-icon--pythontutor: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.14 7.5A2.86 2.86 0 0 1 22 10.36v3.78A2.86 2.86 0 0 1 19.14 17H12c0 .39.32.96.71.96H17v1.68a2.86 2.86 0 0 1-2.86 2.86H9.86A2.86 2.86 0 0 1 7 19.64v-3.75a2.85 2.85 0 0 1 2.86-2.85h5.25a2.85 2.85 0 0 0 2.85-2.86V7.5h1.18m-4.28 11.79c-.4 0-.72.3-.72.89 0 .59.32.71.72.71a.71.71 0 0 0 .71-.71c0-.59-.32-.89-.71-.89m-10-1.79A2.86 2.86 0 0 1 2 14.64v-3.78A2.86 2.86 0 0 1 4.86 8H12c0-.39-.32-.96-.71-.96H7V5.36A2.86 2.86 0 0 1 9.86 2.5h4.28A2.86 2.86 0 0 1 17 5.36v3.75a2.85 2.85 0 0 1-2.86 2.85H8.89a2.85 2.85 0 0 0-2.85 2.86v2.68H4.86M9.14 5.71c.4 0 .72-.3.72-.89 0-.59-.32-.71-.72-.71-.39 0-.71.12-.71.71s.32.89.71.89Z"/></svg>');
|
||||
--md-admonition-pythontutor-color: #eee;
|
||||
}
|
||||
|
||||
[data-md-color-scheme="slate"] {
|
||||
@@ -28,8 +32,8 @@
|
||||
--md-default-fg-color: #adbac7;
|
||||
--md-default-bg-color: #22272e;
|
||||
|
||||
--md-code-bg-color: #1d2126;
|
||||
--md-code-fg-color: #adbac7;
|
||||
--md-code-bg-color: #1d2126;
|
||||
|
||||
--md-accent-fg-color: #aaa;
|
||||
|
||||
@@ -42,6 +46,8 @@
|
||||
|
||||
--md-typeset-btn-color: #52bbb1;
|
||||
--md-typeset-btn-hover-color: #55aea6;
|
||||
|
||||
--md-admonition-pythontutor-color: #30363f;
|
||||
}
|
||||
|
||||
/* https://github.com/squidfunk/mkdocs-material/issues/4832#issuecomment-1374891676 */
|
||||
@@ -106,6 +112,14 @@
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
.md-typeset code {
|
||||
border-radius: 0.2rem;
|
||||
}
|
||||
|
||||
.highlight span.filename {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
/* font-family setting for Win10 */
|
||||
body {
|
||||
--md-text-font-family: -apple-system, BlinkMacSystemFont,
|
||||
@@ -163,3 +177,32 @@ body {
|
||||
height: auto;
|
||||
margin-right: 0.5em; /* Add some space between the SVG icon and the text */
|
||||
}
|
||||
|
||||
/* Admonition for python tutor */
|
||||
.md-typeset .admonition.pythontutor,
|
||||
.md-typeset details.pythontutor {
|
||||
border-color: var(--md-default-fg-color--lightest);
|
||||
margin-top: 0;
|
||||
margin-bottom: 1.5625em;
|
||||
}
|
||||
|
||||
.md-typeset .admonition:focus-within,
|
||||
.md-typeset details:focus-within {
|
||||
box-shadow: var(--md-shadow-z1);
|
||||
}
|
||||
|
||||
.md-typeset .pythontutor > .admonition-title,
|
||||
.md-typeset .pythontutor > summary {
|
||||
background-color: var(--md-code-bg-color);
|
||||
}
|
||||
.md-typeset .pythontutor > .admonition-title::before,
|
||||
.md-typeset .pythontutor > summary::before {
|
||||
background-color: rgb(55, 118, 171);
|
||||
-webkit-mask-image: var(--md-admonition-icon--pythontutor);
|
||||
mask-image: var(--md-admonition-icon--pythontutor);
|
||||
}
|
||||
|
||||
.md-typeset .admonition-title:before,
|
||||
.md-typeset summary:before {
|
||||
width: 1.25em;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user