diff --git a/www/css/style.css b/www/css/style.css index ffc9b7a..cc4883a 100644 --- a/www/css/style.css +++ b/www/css/style.css @@ -238,13 +238,21 @@ main { background-color: #fff; } -main h2 { +main h1, +main h2, +main h3, +main h4, +main h5, +main h6 { color: #002244; - z-index: 2; /* Make appear under #menu */ position: relative; } +main h1 { + font-size: 1.8em; +} + article { overflow-y: hidden; } diff --git a/www/index.php b/www/index.php index 37e5ecd..e07309a 100644 --- a/www/index.php +++ b/www/index.php @@ -82,13 +82,13 @@ $motd = $motdfetcher->getMOTD(); "; + echo "

"; if($title == ""){ echo "Dagens melding"; }else{ echo $title; } - echo "

"; + echo ""; $Parsedown = new Parsedown(); echo $Parsedown->text(implode("\n", $motd["content"]));