diff options
author | David Thompson <dthompson2@worcester.edu> | 2024-07-08 21:59:45 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2024-07-08 21:59:45 -0400 |
commit | da895e9da67c917965f13a0416bd34eed6f512e2 (patch) | |
tree | 3a57f728116b1e1af5bc1bece5123d5149d6c563 /css/dthompson.css | |
parent | 576686b8362aa4be94972793e445db239e1da0e7 (diff) |
theme: Use <nav> tag and flexbox.
Diffstat (limited to 'css/dthompson.css')
-rw-r--r-- | css/dthompson.css | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/css/dthompson.css b/css/dthompson.css index 90c8a7a..7bdd6a6 100644 --- a/css/dthompson.css +++ b/css/dthompson.css @@ -85,7 +85,9 @@ footer { /* Navigation */ -.nav { +nav { + display: flex; + justify-content: space-between; font-family: 'Linux Biolinum',sans; padding-top: 1rem; padding-bottom: 1rem; @@ -93,32 +95,32 @@ footer { border-bottom: 1px solid #eee; } -.nav ul { +nav ul { list-style-type: none; - display: inline-block; + display: flex; margin: 0; padding: 0; } -.nav li { +nav li { display: inline; - padding: 1rem; + padding-right: 1rem; } -.nav li:first-child { +nav li:first-child { padding-left: 0; } -.nav a { +nav a { display: inline-block; color: #000; } -.nav a:hover { +nav a:hover { color: #000; } -.nav a:visited { +nav a:visited { color: #000; } |