diff --git a/pelicanconf.py b/pelicanconf.py index 1b6c661..09fb0f4 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -37,7 +37,14 @@ DEFAULT_PAGINATION = 5 RELATIVE_URLS = True THEME = "theme/" -DISPLAY_PAGES_ON_MENU = True +DISPLAY_PAGES_ON_MENU = False +MENUITEMS = ( + ("Werke", "/werke/"), + ("Neues", "/neues/"), + ("Termine", "/termine/"), + ("Autor", "/autor/"), + ("Kontakt", "/kontakt/") +) ############################################################################### diff --git a/theme/static/css/custom.css b/theme/static/css/custom.css index ec1eb44..a237edd 100644 --- a/theme/static/css/custom.css +++ b/theme/static/css/custom.css @@ -37,13 +37,11 @@ a { * Regular CSS */ -/* Jumbotron (site name and subtitle) */ +/* Jumbotron */ #jumbotron-title { border-bottom: thin solid black; -} -#jumbotron { - #jumbotron-title h1 { + h1 { font-size: 3rem; font-weight: 500; margin-bottom: 10px; @@ -52,10 +50,19 @@ a { color: var(--pico-h1-color); } } +} - #jumbotron-subtitle h2 { - font-size: 2.2rem; - font-weight: 500; - margin-top: 10px; +#jumbotron-subtitle h2 { + font-size: 2.1rem; + font-weight: 500; + margin-top: 10px; +} + +/* site navbar */ +#site-navbar>div>ul { + box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; + + a { + font-weight: bold; } } \ No newline at end of file diff --git a/theme/templates/base.html b/theme/templates/base.html index 26edeb9..22276a1 100644 --- a/theme/templates/base.html +++ b/theme/templates/base.html @@ -8,21 +8,32 @@ {% for css in STYLESHEET_FILES %} {% endfor %} -