diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html index 473bd70..874ad1a 100644 --- a/layouts/partials/nav.html +++ b/layouts/partials/nav.html @@ -1,11 +1,12 @@ - + Qoheleth Toledot Nevi'im Mitzvot + The Post-Self Cycle Clade Extras About diff --git a/static/css/toledot.css b/static/css/toledot.css index 25d326b..40cddc0 100644 --- a/static/css/toledot.css +++ b/static/css/toledot.css @@ -30,3 +30,21 @@ ul { list-style-type: revert; padding-left: 2rem; } +.nav-desktop { + display: block; +} +.nav-mobile { + display: none; +} + +@media (max-device-width: 450px) { + .nav-desktop { + display: none; + } + .nav-mobile { + display: inline-block; + } + nav ul li { + padding-bottom: 0.5rem !important; + } +}