diff options
| author | Anson Bridges <bridges.anson@gmail.com> | 2025-08-11 22:24:05 -0700 |
|---|---|---|
| committer | Anson Bridges <bridges.anson@gmail.com> | 2025-08-11 22:24:05 -0700 |
| commit | 02284958a1189ffcb10b34a4c3a02417f8136a4d (patch) | |
| tree | 837aac77184a3435ee686dd33878b9f2715c94b1 /static/css/navbar.css | |
Diffstat (limited to 'static/css/navbar.css')
| -rw-r--r-- | static/css/navbar.css | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/static/css/navbar.css b/static/css/navbar.css new file mode 100644 index 0000000..9109333 --- /dev/null +++ b/static/css/navbar.css @@ -0,0 +1,54 @@ + +@font-face { + font-family: "HWYGOTH"; + src: url("/static/fonts/HWYGOTH.ttf"); +} + +/* Add a black background color to the top navigation */ +.topnav { +background-color: #163314; +overflow: hidden; +flex-shrink: 0; +display: flex; +} + +/* Style the links inside the navigation bar */ +.topnav a { + float: left; + color: #f2f2f2; + text-align: center; + padding: 14px 16px; + text-decoration: none; + font-size: 17px; + font-family:HWYGOTH; + cursor: pointer; +} + +/* Change the color of links on hover */ +.topnav a:hover { + background-color: #ddd; + color: black; +} + +/* Add a color to the active/current link */ +.topnav a.active { + background-color: #2a572a; + color: white; +} +/* Create a right-aligned (split) link inside the navigation bar */ +.topnav a.split { + float: right; + background-color: #163314; + color: white; +} +.topnav a.split:hover { + background-color: #ddd; + color: black; +} + +.topnav a.collection-title { + background-color: #2a572a; + color: white; + cursor: pointer; + flex: 1; +}
\ No newline at end of file |
