Enhance team page styling and structure adjustments.

Removed `pointer-events: none` to enable hover effects on images and updated font weight for better visibility. Added new CSS for tooltips and modified navigation/yaml configuration for better presentation.
This commit is contained in:
tfw
2025-05-15 16:05:24 +02:00
parent dd1cf89c50
commit a34275a7e9
50 changed files with 529 additions and 124 deletions
+16
View File
@@ -41,6 +41,12 @@
.md-tabs__list {
height: 4rem;
// Remove left margin/padding from the first tab item to align with content container
.md-tabs__item:first-child {
margin-left: 0;
padding-left: 0;
}
}
.md-tabs__link {
@@ -62,6 +68,16 @@
text-transform: uppercase !important;
}
// Secondary navigation (TOC) styling - make all text 80% of the normal size
.md-nav.md-nav--secondary {
font-size: 80%; // Set font size to 80% of the parent element
// Ensure all child elements inherit the font size
* {
font-size: inherit;
}
}
// Footer navigation
.md-footer__title {
font-size: 100%;