You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hello-algo/stylesheets/extra.css

541 lines
11 KiB

2 years ago
/* Color Settings */
/* https://github.com/squidfunk/mkdocs-material/blob/6b5035f5580f97532d664e3d1babf5f320e88ee9/src/assets/stylesheets/main/_colors.scss */
/* https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#custom-colors */
:root > * {
1 year ago
--md-primary-fg-color: #ffffff;
--md-primary-bg-color: #1d1d20;
--md-default-fg-color: #1d1d20;
--md-default-bg-color: #ffffff;
9 months ago
--md-body-bg-color: #22272e;
--md-header-bg-color: rgba(255, 255, 255, 0.6);
1 year ago
--md-code-fg-color: #1d1d20;
11 months ago
--md-code-bg-color: #f5f5f5;
1 year ago
1 year ago
--md-accent-fg-color: #999;
2 years ago
1 year ago
--md-admonition-fg-color: #1d1d20;
2 years ago
1 year ago
--md-typeset-color: #1d1d20;
12 months ago
--md-typeset-a-color: #349890;
--md-typeset-btn-color: #55aea6;
--md-typeset-btn-hover-color: #52bbb1;
11 months ago
--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>');
11 months ago
--md-admonition-pythontutor-color: #eee;
2 years ago
}
[data-md-color-scheme="slate"] {
1 year ago
--md-primary-fg-color: #22272e;
--md-primary-bg-color: #adbac7;
--md-default-fg-color: #adbac7;
--md-default-bg-color: #22272e;
9 months ago
--md-body-bg-color: #22272e;
--md-header-bg-color: rgba(34, 39, 46, 0.8);
1 year ago
--md-code-fg-color: #adbac7;
11 months ago
--md-code-bg-color: #1d2126;
2 years ago
1 year ago
--md-accent-fg-color: #aaa;
2 years ago
1 year ago
--md-admonition-fg-color: #adbac7;
--md-footer-fg-color: #adbac7;
--md-typeset-color: #adbac7;
9 months ago
--md-typeset-a-color: #52bbb1;
12 months ago
--md-typeset-btn-color: #52bbb1;
--md-typeset-btn-hover-color: #55aea6;
11 months ago
--md-admonition-pythontutor-color: #30363f;
2 years ago
}
9 months ago
[data-md-color-scheme="slate"][data-md-color-primary="black"],
[data-md-color-scheme="slate"][data-md-color-primary="white"] {
--md-typeset-a-color: #52bbb1;
}
[data-md-color-primary="black"] .md-header {
background-color: var(--md-header-bg-color);
}
.md-header {
box-shadow: none;
transition: none;
backdrop-filter: saturate(180%) blur(20px); /* Gaussian blur */
9 months ago
-webkit-backdrop-filter: saturate(180%) blur(20px); /* Safari */
9 months ago
background-color: var(--md-header-bg-color);
}
2 years ago
/* https://github.com/squidfunk/mkdocs-material/issues/4832#issuecomment-1374891676 */
.md-nav__link[for] {
1 year ago
color: var(--md-default-fg-color) !important;
2 years ago
}
1 year ago
/* Figure class */
.animation-figure {
9 months ago
border-radius: 0.3rem;
1 year ago
display: block;
margin: 0 auto;
11 months ago
box-shadow: var(--md-shadow-z2);
1 year ago
}
/* Cover image class */
.cover-image {
width: 28rem;
height: auto;
border-radius: 0.3rem;
display: block;
margin: 0 auto;
10 months ago
box-shadow: var(--md-shadow-z2);
1 year ago
}
2 years ago
/* Center Markdown Tables (requires md_in_html extension) */
.center-table {
2 years ago
text-align: center;
2 years ago
}
2 years ago
/* Reset alignment for table cells */
1 year ago
.md-typeset .center-table :is(td, th):not([align]) {
2 years ago
text-align: initial;
2 years ago
}
2 years ago
/* Font size */
.md-typeset {
font-size: 0.75rem;
line-height: 1.5;
}
.md-typeset pre {
font-size: 0.95em;
}
2 years ago
/* Markdown Header */
/* https://github.com/squidfunk/mkdocs-material/blob/dcab57dd1cced4b77875c1aa1b53467c62709d31/src/assets/stylesheets/main/_typeset.scss */
.md-typeset h1 {
font-weight: 400;
color: var(--md-default-fg-color);
}
.md-typeset h2 {
font-weight: 400;
}
.md-typeset h3 {
font-weight: 500;
}
1 year ago
.md-typeset h5 {
text-transform: none;
}
10 months ago
.md-typeset a:hover {
color: var(--md-typeset-a-color);
text-decoration: underline;
}
11 months ago
.md-typeset code {
border-radius: 0.2rem;
}
.highlight span.filename {
font-weight: normal;
}
2 years ago
/* font-family setting for Win10 */
body {
1 year ago
--md-text-font-family: -apple-system, BlinkMacSystemFont,
var(--md-text-font, _), Helvetica, Arial, sans-serif;
--md-code-font-family: var(--md-code-font, _), SFMono-Regular, Consolas, Menlo,
-apple-system, BlinkMacSystemFont, var(--md-text-font, _), monospace;
2 years ago
}
/* max height of code block */
/* https://github.com/squidfunk/mkdocs-material/issues/3444 */
.md-typeset pre > code {
2 years ago
max-height: 25rem;
2 years ago
}
1 year ago
/* Make the picture not glare in dark theme */
[data-md-color-scheme="slate"] .md-typeset img,
[data-md-color-scheme="slate"] .md-typeset svg,
[data-md-color-scheme="slate"] .md-typeset video {
filter: brightness(0.85) invert(0.05);
}
12 months ago
/* landing page */
12 months ago
.header-img-div {
12 months ago
display: flex;
align-items: center;
justify-content: center;
12 months ago
margin: 0 auto;
12 months ago
width: 100%; /* Default to full width */
}
12 months ago
11 months ago
/* Admonition for python tutor */
.md-typeset .admonition.pythontutor,
.md-typeset details.pythontutor {
11 months ago
border-color: var(--md-default-fg-color--lightest);
11 months ago
margin-top: 0;
margin-bottom: 1.5625em;
11 months ago
}
11 months ago
.md-typeset .admonition:focus-within,
.md-typeset details:focus-within {
11 months ago
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);
11 months ago
mask-image: var(--md-admonition-icon--pythontutor);
}
.md-typeset .admonition-title:before,
.md-typeset summary:before {
width: 1.25em;
11 months ago
}
10 months ago
8 months ago
/* code block tabs */
.md-typeset .tabbed-labels>label {
7 months ago
font-size: 0.61rem;
}
.md-typeset .tabbed-labels--linked>label>a {
padding: .78125em 1.0em .625em;
8 months ago
}
9 months ago
/* header banner */
.md-banner {
background-color: var(--md-code-bg-color);
color: var(--md-default-fg-color);
font-size: 0.75rem;
}
9 months ago
.md-banner .banner-svg svg {
9 months ago
margin-right: 0.3rem;
height: 0.63rem;
fill: var(--md-default-fg-color);
}
10 months ago
.pythontutor-iframe {
width: 125%;
height: 125%;
max-width: 125% !important;
max-height: 125% !important;
transform: scale(0.8);
transform-origin: top left;
border: none;
}
10 months ago
/* landing page container */
.home-div {
width: 100%;
height: auto;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--md-default-bg-color);
color: var(--md-default-fg-color);
font-size: 0.9rem;
10 months ago
padding: 3em 2em;
10 months ago
text-align: center;
}
.section-content {
width: 100%;
height: auto;
max-width: 70vw;
}
10 months ago
/* rounded button */
.rounded-button {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 10em;
10 months ago
margin: 0 0.1em;
10 months ago
padding: 0.6em 1.3em;
10 months ago
border: none;
background-color: var(--md-typeset-btn-color);
color: var(--md-primary-fg-color) !important;
text-align: center;
text-decoration: none;
cursor: pointer;
}
.rounded-button:hover {
background-color: var(--md-typeset-btn-hover-color);
}
10 months ago
.rounded-button span {
10 months ago
margin: 0;
10 months ago
margin-bottom: 0.07em;
white-space: nowrap;
10 months ago
}
.rounded-button svg {
fill: var(--md-primary-fg-color);
width: auto;
height: 1.2em;
margin-right: 0.5em;
}
9 months ago
/* device image */
.device-on-hover {
width: auto;
transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}
a:hover .device-on-hover {
filter: drop-shadow(0 0 0.2rem rgba(0, 0, 0, 0.15));
transform: scale(1.02);
}
10 months ago
/* text button */
9 months ago
.reading-media {
10 months ago
display: flex;
justify-content: center;
9 months ago
align-items: flex-end;
height: 32vw;
}
.media-block {
height: 100%;
margin: 0 0.2em;
10 months ago
}
.text-button {
9 months ago
width: auto;
10 months ago
color: var(--md-typeset-btn-color);
text-decoration: none;
9 months ago
text-align: center;
margin: 2.7em auto;
10 months ago
}
10 months ago
.text-button span {
white-space: nowrap;
}
10 months ago
.text-button svg {
display: inline-block;
fill: var(--md-typeset-btn-color);
width: auto;
height: 0.9em;
background-size: cover;
padding-top: 0.17em;
9 months ago
margin-left: 0.15em;
}
a:hover .text-button span {
text-decoration: underline;
10 months ago
}
/* hero image */
9 months ago
.hero-div {
10 months ago
height: min(84vh, 75vw);
width: min(112vh, 100vw);
margin: 0 auto;
margin-top: -2.4rem;
padding: 0;
position: relative;
10 months ago
font-size: min(1.8vh, 2.5vw);
10 months ago
font-weight: normal;
10 months ago
}
.hero-bg {
height: 100%;
width: 100%;
object-fit: cover;
position: absolute;
}
/* hover on the planets */
9 months ago
.hero-div > a > img {
10 months ago
width: auto;
position: absolute;
transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}
9 months ago
.hero-div > a > span {
10 months ago
margin: 0;
position: absolute;
transform: translateX(-50%) translateY(-50%);
10 months ago
white-space: nowrap; /* prevent line breaks */
10 months ago
color: white;
10 months ago
}
9 months ago
.hero-div > a:hover > img {
10 months ago
filter: brightness(1.15) saturate(1.1)
drop-shadow(0 0 0.5rem rgba(255, 255, 255, 0.2));
10 months ago
transform: scale(1.03);
}
9 months ago
.hero-div > a:hover > span {
10 months ago
text-decoration: underline;
10 months ago
color: var(--md-typeset-btn-color);
}
9 months ago
.heading-div {
width: 100%;
position: absolute;
transform: translateX(-50%);
left: 50%;
bottom: min(2vh, 3vw);
pointer-events: none;
color: #fff;
}
10 months ago
/* code badge */
.code-badge {
width: 100%;
height: auto;
10 months ago
margin: 1em auto;
10 months ago
}
.code-badge img {
height: 1.07em;
width: auto;
}
10 months ago
/* brief intro */
.intro-container {
display: flex;
align-items: center;
margin: 2em auto;
}
.intro-image {
flex-shrink: 0;
flex-grow: 0;
width: 55%;
border-radius: 0.5em;
box-shadow: var(--md-shadow-z2);
}
.intro-text {
10 months ago
flex-grow: 1; /* fill the space */
10 months ago
display: flex;
flex-direction: column;
justify-content: center;
text-align: left;
align-items: flex-start;
width: fit-content;
margin: 2em;
}
.intro-text > div {
align-self: flex-start;
width: auto;
margin: 0 auto;
}
10 months ago
.endor-text {
width: 50%;
}
10 months ago
.intro-quote {
color: var(--md-accent-fg-color);
font-weight: bold;
}
/* contributors table */
.profile-div {
display: flex;
10 months ago
flex-wrap: wrap;
justify-content: center;
9 months ago
max-width: 40em;
10 months ago
margin: 1em auto;
}
.profile-cell {
10 months ago
flex: 1; /* even distribution */
10 months ago
flex-basis: 15%;
10 months ago
margin: 1em 0.5em;
text-align: center;
10 months ago
}
.profile-img {
width: 5em;
border-radius: 50%;
10 months ago
margin-bottom: 0.5em;
10 months ago
}
10 months ago
.giscus-container {
10 months ago
width: 40em;
10 months ago
max-width: 100%;
margin: 0 auto;
10 months ago
}
/* Hide navigation */
@media screen and (max-width: 76.25em) {
.section-content {
max-width: 95vw;
}
9 months ago
.reading-media {
height: 33vw;
}
9 months ago
.contrib-image {
width: 100%;
}
}
/* Hide table of contents */
@media screen and (max-width: 60em) {
.home-div {
font-size: 0.75rem;
}
10 months ago
.intro-container {
10 months ago
flex-direction: column;
10 months ago
}
.intro-text {
width: auto;
order: 2;
margin: 0 auto;
}
10 months ago
.endor-text {
width: auto;
margin: 0 auto;
}
10 months ago
.intro-image {
10 months ago
width: 100%;
10 months ago
order: 1;
margin-bottom: 1em;
}
9 months ago
.text-button {
margin: 0.7em auto;
10 months ago
}
}
8 months ago
.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}