diff --git a/public/css/default.css b/public/css/default.css index 4a00c3b6..2cb4faf9 100644 --- a/public/css/default.css +++ b/public/css/default.css @@ -5,6 +5,7 @@ */ @import url(//fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic); +@import url('//fonts.googleapis.com/css2?family=Coda&display=swap'); @font-face { font-family: 'Invaders'; @@ -21,7 +22,6 @@ body { #wrapper, header .container { width: 95%; - min-width: 900px; max-width: 1280px; margin: 0 auto; } @@ -38,6 +38,7 @@ a:hover { /* Navigation ---------------*/ #mainNav { + font-family: 'Coda', sans-serif; margin-bottom: 4rem; } .nav-divider { @@ -57,10 +58,43 @@ i.space-invader::before { height: 85px; left: -25px; position: absolute; + text-align: center; text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6); top: -5px; transform: rotate(-5deg); - width: 85px; + width: 110px; +} +i.space-invader.alt-1::before { + content: 'C'; +} +i.space-invader.alt-2::before { + content: 'D'; +} +i.space-invader.alt-3::before { + content: 'E'; +} +i.space-invader.alt-4::before { + content: 'H'; +} +i.space-invader.alt-5::before { + content: 'I'; +} +i.space-invader.alt-6::before { + content: 'N'; +} +i.space-invader.alt-7::before { + content: 'O'; +} +@media (max-width: 991px) { + .navbar-brand { + padding-left: 60px; + } + i.space-invader::before { + font-size: 50px; + left: -10px; + top: -7px; + width: 70px; + } } @@ -73,6 +107,9 @@ i.space-invader::before { border-radius: 0.5rem; box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1); } +.content-box h1 { + font-family: 'Coda', sans-serif; +} /* Tiled grid diff --git a/templates/MainNavBar.php b/templates/MainNavBar.php index 6442673c..133c2051 100644 --- a/templates/MainNavBar.php +++ b/templates/MainNavBar.php @@ -18,11 +18,15 @@ class MainNavBar extends NavBar public function html_main() { + // Select a random space invader, with a bias towards the mascot + $rnd = rand(0, 100); + $alt = $rnd > 50 ? ' alt-' . ($rnd % 6 + 1) : ''; + echo '