diff --git a/source/_assets/css/main.css b/source/_assets/css/main.css index 1450552..6a83110 100644 --- a/source/_assets/css/main.css +++ b/source/_assets/css/main.css @@ -1,3 +1,4 @@ +/* Sectioning */ @font-face { font-family: 'Custom'; src: url("/assets/fonts/JetBrainsMono[wght].ttf"); @@ -47,6 +48,10 @@ nav ul li a { text-decoration: none; } +header nav ul li a { + color: unset; +} + nav ul li[aria-current] a { padding-bottom: .8rem; border-bottom: .2rem solid; @@ -69,6 +74,10 @@ article section h2 { margin: 0; } +article section a { + color: blue; +} + article section:first-of-type { margin-top: 4rem; } @@ -91,6 +100,10 @@ section.paginationNavigation { justify-content: center; } +section.paginationNavigation a { + color: blue; +} + footer { margin-top: 4rem; border-top: thin solid; diff --git a/source/_layouts/post.blade.php b/source/_layouts/post.blade.php index 47cc2a8..8206333 100644 --- a/source/_layouts/post.blade.php +++ b/source/_layouts/post.blade.php @@ -1,7 +1,13 @@ @extends('_layouts.main') @section('body') -

{{ $page->title }}

- {{ $page->dateTranslated($page->date) }} - @yield('content') +
+
+

{{ $page->title }}

+ {{ $page->dateTranslated($page->date) }} +
+
+ @yield('content') +
+
@endsection \ No newline at end of file diff --git a/source/about.blade.php b/source/about.blade.php index 477771f..6c8a4b0 100644 --- a/source/about.blade.php +++ b/source/about.blade.php @@ -1,6 +1,12 @@ @extends('_layouts.main') @section('body') -

Hello World

-

{{ $page->getPath() }}

+
+
+

About

+
+
+

Hello World

+
+
@endsection \ No newline at end of file diff --git a/source/projects.blade.php b/source/projects.blade.php index 477771f..2bfcaab 100644 --- a/source/projects.blade.php +++ b/source/projects.blade.php @@ -1,6 +1,12 @@ @extends('_layouts.main') @section('body') -

Hello World

-

{{ $page->getPath() }}

+
+
+

Projects

+
+
+

Hello World

+
+
@endsection \ No newline at end of file