summaryrefslogtreecommitdiff
path: root/sass/parts/_header.scss
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2025-09-13 14:55:15 -0600
committerAlejandro Soto <alejandro@34project.org>2025-09-13 14:55:15 -0600
commita2ea06d513a5802964f8f0ef5795cec7e548ed7b (patch)
tree8afb58e3749d19bc46cffc6473f3059d647c515b /sass/parts/_header.scss
Squashed 'themes/tabi-lean/' content from commit 95c8796
git-subtree-dir: themes/tabi-lean git-subtree-split: 95c879696445ede40daa7a30a88dae5dd74d5c0c
Diffstat (limited to 'sass/parts/_header.scss')
-rw-r--r--sass/parts/_header.scss197
1 files changed, 197 insertions, 0 deletions
diff --git a/sass/parts/_header.scss b/sass/parts/_header.scss
new file mode 100644
index 0000000..414aa82
--- /dev/null
+++ b/sass/parts/_header.scss
@@ -0,0 +1,197 @@
+header {
+ width: 100%;
+ font-family: 'Inter Subset', var(--sans-serif-font);
+}
+
+.page-header {
+ margin-block: 4rem 1rem;
+ font-size: 3em;
+ line-height: 100%;
+ font-family: var(--header-font);
+}
+
+.navbar {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ justify-content: space-between;
+ align-items: center;
+ margin: 0 auto;
+ padding-block: 1em;
+ max-width: var(--max-layout-width);
+}
+
+.nav-navs {
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+
+ ul {
+ display: flex;
+ flex-wrap: inherit;
+ justify-content: inherit;
+ align-items: inherit;
+ gap: 1px;
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ }
+}
+
+.menu-icons-container {
+ display: flex;
+ align-items: center;
+ margin-left: auto;
+}
+
+.menu-icons-group {
+ gap: 1px;
+ margin: 0;
+ padding: 0;
+}
+
+.nav-links {
+ justify-content: right;
+ padding: 0.66rem;
+ color: var(--text-color);
+ font-weight: 340;
+ font-size: 1em;
+ line-height: 2.5;
+ text-decoration: none;
+}
+
+.home-title {
+ margin-inline-start: -0.12rem;
+ border: none;
+ padding: 0.12rem;
+ color: var(--primary-color);
+ font-weight: 450;
+ font-size: 1.7em;
+ text-decoration: none;
+}
+
+.meta {
+ padding: 0;
+ padding-top: 0.7vmin;
+ padding-bottom: 3vmin;
+ color: var(--meta-color);
+ font-weight: 300;
+ font-size: 0.8rem;
+ line-height: 1.4rem;
+ letter-spacing: -0.4px;
+
+ a {
+ color: var(--meta-color);
+ font-weight: inherit;
+ text-decoration: none;
+ text-decoration-color: none;
+ }
+
+ ul,
+ li {
+ display: inline-block;
+ margin-inline-end: 0.2rem;
+ font-family: var(--sans-serif-font);
+ list-style-type: none;
+ }
+
+ .tag {
+ margin-inline-end: 0;
+ }
+}
+
+.separator {
+ margin-inline-end: 0.2rem;
+ user-select: none;
+}
+
+.language-switcher {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ margin-inline-start: 0.5rem;
+ margin-inline-end: 0.5rem;
+
+ .language-switcher-icon {
+ -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.8' d='M1 12a11 11 90 0 0 22 0 11 11 90 0 0-22 0m1-4h20M2 16h20M11 1a21 21 90 0 0 0 22m2-22a21 21 90 0 1 0 22'/%3E%3C/svg%3E%0A");
+ position: relative;
+ align-self: center;
+ cursor: pointer;
+ background: var(--text-color);
+ width: 1rem;
+ height: 1rem;
+
+ &:hover {
+ background: var(--meta-color);
+ }
+ }
+}
+
+.dropdown {
+ display: inline-block;
+ position: relative;
+ z-index: 1;
+ font-size: 0.8rem;
+
+ &:hover .dropdown-content,
+ &:focus-within .dropdown-content {
+ display: block;
+ }
+
+ summary {
+ list-style: none;
+
+ &::-webkit-details-marker {
+ display: none;
+ }
+ }
+
+ .dropdown-content {
+ display: none;
+ position: absolute;
+ left: 50%;
+ transform: translateX(-50%);
+ z-index: 1;
+ background: var(--background-color);
+ padding-inline-start: 0.5rem;
+ padding-inline-end: 0.5rem;
+ text-align: center;
+ white-space: nowrap;
+
+ a {
+ display: block;
+ }
+ }
+}
+
+@media only screen and (max-width: 1000px) {
+ .navbar {
+ max-width: var(--normal-layout-width);
+ }
+
+ .nav-navs {
+ display: flex;
+ justify-content: center;
+ }
+
+ .menu-icons-container {
+ margin-left: 0;
+ }
+}
+
+@media only screen and (max-width: 600px) {
+ .nav-navs {
+ margin-top: 0.8rem;
+ }
+
+ .navbar {
+ flex-direction: column;
+ align-items: center;
+ }
+}
+
+@media only screen and (max-width: 300px) {
+ .navbar {
+ max-width: var(--small-layout-width);
+ }
+}