-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: enhance navigation and update AI index
- Added custom CSS for top-level navigation tabs - Created stylesheets directory with extra.css - Added hover and active state effects - Moved AI Development Index to top-level nav - Added site description and author metadata - Updated today's log with navigation changes
- Loading branch information
Showing
4 changed files
with
128 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
.md-tabs__link { | ||
border: 1px solid rgba(255,255,255,0.1); | ||
border-radius: 4px; | ||
padding: 0.6rem 1rem !important; | ||
margin: 0.4rem 0.2rem; | ||
} | ||
|
||
.md-tabs__link:hover { | ||
border-color: var(--md-accent-fg-color); | ||
background-color: rgba(255,255,255,0.05); | ||
} | ||
|
||
.md-tabs__link--active { | ||
border-color: var(--md-accent-fg-color); | ||
background-color: rgba(255,255,255,0.05); | ||
} | ||
|
||
.md-tabs__item { | ||
height: auto !important; | ||
padding: 0 !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters