diff --git a/site-root/public/foot.php b/site-root/public/foot.php
index b6c51cb..5d38b1a 100644
--- a/site-root/public/foot.php
+++ b/site-root/public/foot.php
@@ -1,3 +1,9 @@
+
diff --git a/site-root/public/head.php b/site-root/public/head.php
index e44bbf4..494a318 100644
--- a/site-root/public/head.php
+++ b/site-root/public/head.php
@@ -109,7 +109,8 @@
text-align: center;
}
- section a {
+ section a,
+ nav a {
color: hsla(0, 0%, 0%, 1);
text-decoration-color: hsla(10, 98%, 26%, 1);
text-decoration-thickness: 0.1rem;
@@ -118,7 +119,8 @@
text-decoration-thickness 0.3s;
}
- section a:hover {
+ section a:hover,
+ nav a:hover {
text-decoration-thickness: 0rem;
}
@@ -184,6 +186,32 @@
article[is="book-details"] {
grid-template-columns: auto auto;
}
+
+ nav {
+ text-align: center;
+ }
+
+ nav > ul {
+ margin: 0 auto;
+ padding: 0;
+ display: flex;
+ /* grid-template-columns: min-content; */
+ /* display: inline; */
+ list-style: none;
+ }
+
+ nav a {
+ display: inline-block;
+ padding: 1rem;
+ }
+
+ /* nav > ul > li {
+ float: left;
+ } */
+
+ nav > ul > li:first-of-type:after {
+ content: '|';
+ }
}