From 3fe6392a9db4083680ff9f509eacc8695bdca159 Mon Sep 17 00:00:00 2001 From: suroh Date: Thu, 26 Oct 2023 10:55:34 +0200 Subject: [PATCH] renamed css to main.css --- _includes/base.njk | 2 +- assets/css/master.css | 432 ------------------------------------------ 2 files changed, 1 insertion(+), 433 deletions(-) delete mode 100644 assets/css/master.css diff --git a/_includes/base.njk b/_includes/base.njk index 858728d..a14ca40 100644 --- a/_includes/base.njk +++ b/_includes/base.njk @@ -11,7 +11,7 @@ - + diff --git a/assets/css/master.css b/assets/css/master.css deleted file mode 100644 index ab22f64..0000000 --- a/assets/css/master.css +++ /dev/null @@ -1,432 +0,0 @@ -/* PAGE STYLES */ -@import url(https://cdn.jsdelivr.net/gh/tonsky/FiraCode@1.206/distr/fira_code.css); - -* { - scroll-behavior: smooth; -} - -/* --> BASE STYLES <-- */ -body { - font-family: 'fira code', monospace; - color: #1e1e3cff; -} - -p { - max-width: 80ch; -} - -p > img:first-of-type { - margin-top: 2em; -} - -em { - font-family: serif; - font-size: 1.03em; -} - -a, a:visited { - color: #1e1e3cff; - padding-bottom: 2px; - text-decoration: none; - border-bottom: 1px #1e1e3c50 solid; - transition: color ease 0.5s, border ease 0.2s; -} - -img { - max-width: 100%; - height: auto; -} - -hr { - border-bottom: thin dotted grey; - border-top: none; - border-left: none; - border-right: none; -} - -section { - isolation: auto; -} - -/* --> LISTS <-- */ -ul { - list-style: none; - margin-left: 16px; - padding-left: 0; -} - -li { - padding: 0.2em 0 0.2em 1em; - text-indent: -0.5em; -} - -li:before { - content: "▸"; - padding-right: 16px; -} - -/* --> NAVIGATION <-- */ -nav#primary>span { - display: inline-block; - color: #1e1e3c33; - transition: color ease 0.5s; -} - -nav#primary>span:hover { - color: #1e1e3cff; - transition: color ease 0.1s; - cursor: pointer; -} - -nav#primary>span.active { - color: #1e1e3cff; - transition: color 1s ease; -} - -nav#primary>span::after { - display: inline-block; - content: attr(data-link); - max-width: 0px; - overflow: hidden; - color: #1e1e3cff; - transition: max-width 0.5s ease; -} - -nav#primary>span.active::after { - max-width: 10em; -} - -nav#sub { - max-height: 0px; - margin-left: 1.5em; - padding-bottom: 0.5em; - overflow: hidden; - transition: max-height 0.5s ease; -} - -nav#sub.active { - max-height: 50vh; -} - -nav#sub > ul { - padding: 0px; - margin: 0px; - max-height: 0px; - overflow: hidden; - opacity: 0; - transition: opacity 0.5s ease, max-height 0.025s ease; -} - -nav#sub > ul.active { - max-height: 50vh; - opacity: 1; -} - -nav#toTop { - position: fixed; - display: inline-block; - visibility: hidden; - top: calc(95vh - 2em); - right: 3em; - overflow: hidden; - padding: 0 0em 0.25em; - z-index: 100; -} - -nav#toTop.active { - visibility: visible; -} - -nav#toTop > span { - display: block; - opacity: 0.0; - transform: translateY(-2em); - background-color: rgba(255,255,255,0.0); - padding: 0.3em 0.5em 0.5em; - border-radius: 1em; - transition: transform ease 0.5s, opacity ease 1s, background-color ease 0.5s 0.5s; -} - -nav#toTop > span::after { - font-size: 1.25em; - content: '△' -} - -nav#toTop.active > span { - opacity: 0.5; - background-color: rgba(255,255,255,0.9); - transform: translateY(0em); -} - -nav#toTop.active > span:hover { - opacity: 1; - cursor: pointer; -} - -h1#menuItem { - position: absolute; - line-height: inherit; - bottom: -500px; - margin: 0; - padding: 0; - font-size: 33vw; - opacity: 0; - transform: translateY(100px); - transform-origin: bottom left; - mix-blend-mode: difference; - transition: opacity ease-in-out 0.1s, transform ease-in-out 0.1s; -} - -h1#menuItem.active { - mix-blend-mode: difference; - opacity: 1 !important; - transform: translateY(-600px) !important; -} - -/* --> AUDIO TOGGLE <-- */ -span#audioToggle { - position: absolute; - top: 16px; - right: 16px; - transition: color ease-in-out 0.1s; -} - -span#audioToggle:hover { - color: #CECECE; - cursor: pointer; - transition: color ease-in-out 0.1s; -} - -span#audioToggle::after { - content: '🔇' -} - -span#audioToggle.active::after { - content: '🔉' -} - -/* --> MAINPAGE CONSTRUCTION <-- */ -div#wrapper { - max-width: 95vw; - margin: 0 auto; -} - -nav#sub > ul { - margin: 0; - padding: 0; - list-style: none !important; -} - -nav#sub > ul > li { - border-left: thin solid #d2d2d8; - text-decoration: none; - padding: 5px 10px; -} - -nav#sub > ul > li:before { - content: ""; - padding-right: 16px; -} - -nav#sub > ul > li:hover { - background: #d2d2d8; - cursor: pointer; -} - -nav#sub > ul > li > a { - border: none; -} - -/* --> SUBCONTENT CONSTRUCTION <-- */ -section.page { - display: grid; - animation: fadeIn 1s ease; -} - -section.page h1 { - margin: 0px; - padding: 0px; -} - -@media screen and (min-width: 1360px) { - body { - font-size: 19px; - line-height: 24px; - margin: 0; - padding: 0; - } - - /* --> NAVIGATION <-- */ - nav { - margin: 23px 0px 8px; - font-size: 1.5em; - } - - nav>span { - margin-right: 8px; - } - - nav>span.active::after { - margin-left: 8px; - } - - /* --> MAINPAGE CONSTRUCTION <-- */ - section ul.subMenu { - font-size: 1.5em; - } - - /* --> SUBCONTENT CONSTRUCTION <-- */ - section.page { - max-width: 1960px; - grid-template-columns: repeat(5, 1fr); - gap: 24px; - } - - section.page h1 { - margin-top: 0.25em; - margin-bottom: 0.4em; - font-size: 6em; - line-height: 0.95em; - } - - section.page div.imgFeat { - grid-column: span 4; - } - - section.page section.imgs { - grid-column: 4 / span 2; - grid-row: 2; - } - - section.page section.imgs>img { - max-width: 100%; - margin-bottom: 24px; - height: auto; - } - - section.page section.text { - grid-column: 1 / span 3; - grid-row: 2; - } -} - -@media screen and (max-width: 1359px) { - body { - font-size: 19px; - line-height: 24px; - margin: 0; - padding: 0; - } - - /* --> NAVIGATION <-- */ - nav { - margin: 23px 0px 8px; - font-size: 1.5em; - } - - nav>span { - margin-right: 8px; - } - - nav>span.active::after { - margin-left: 8px; - } - - /* --> MAINPAGE CONSTRUCTION <-- */ - section ul.subMenu { - font-size: 1.5em; - } - - /* --> SUBCONTENT CONSTRUCTION <-- */ - section.page { - max-width: 1960px; - grid-template-columns: repeat(5, 1fr); - gap: 24px; - } - - section.page h1 { - margin-top: 0.25em; - margin-bottom: 0.5em; - font-size: 4em; - line-height: 0.95em; - } - - section.page div.imgFeat { - grid-column: span 4; - } - - section.page section.imgs { - grid-column: 4 / span 2; - grid-row: 2 - } - - section.page section.imgs>img { - max-width: 100%; - height: auto; - } - - section.page section.text { - grid-column: 1 / span 3; - grid-row: 2; - } -} - -@media screen and (max-width: 800px) { - body { - font-size: 20px; - line-height: 24px; - margin: 0; - padding: 0; - } - - /* --> NAVIGATION <-- */ - nav { - margin: 23px 0px 8px; - font-size: 1.75em; - } - - nav>span { - margin-right: 8px; - } - - nav>span.active::after { - position: relative; - top: 2px; - margin-left: 8px; - } - - /* --> MAINPAGE CONSTRUCTION <-- */ - - /* --> SUBCONTENT CONSTRUCTION <-- */ - section.page { - display: inherit; - max-width: 650px; - grid-gap: 24px; - } - - section.page h1 { - margin-top: 0.35em; - margin-bottom: 0.5em; - font-size: 3em; - line-height: 0.95em; - margin: 24px 0 32px; - } - - section#teach h1 { - font-size: 3em; - line-height: 0.75em; - margin: 40px 0 48px; - } - -} - -/* ANIMATIONS */ - -@keyframes fadeIn { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -}