summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2020-03-07 22:55:21 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2020-03-07 22:55:21 +0000
commit008b171d883c369d92ecc9b5baec92f671b88c54 (patch)
tree22376853587205c230d6004d11569b4e4eeb8bb9
parent8a59a4d61f20c7a7c03362d3f3a44e0197fd2827 (diff)
Style tags
-rw-r--r--source/_assets/sass/_blog.scss14
-rw-r--r--source/_layouts/master.blade.php2
-rw-r--r--source/_posts/custom-404-page.md2
-rw-r--r--source/_posts/customizing-your-site.md2
-rw-r--r--source/_posts/fuse-search.md2
-rw-r--r--source/_posts/my-first-blog-post.md2
-rw-r--r--source/assets/build/css/main.css13
-rw-r--r--source/assets/build/mix-manifest.json2
8 files changed, 29 insertions, 10 deletions
diff --git a/source/_assets/sass/_blog.scss b/source/_assets/sass/_blog.scss
index e193a68..d9e3240 100644
--- a/source/_assets/sass/_blog.scss
+++ b/source/_assets/sass/_blog.scss
@@ -30,10 +30,20 @@ body {
}
}
-a.php {
- background-color: #8892BF;
+a.apache {
+ background-color: #CB2138;
+}
+
+a.linux {
+ background-color: #FFFFFF;
+ color: #000000;
}
a.mysql {
background-color: #F29221;
}
+
+a.php {
+ background-color: #8892BF;
+}
+
diff --git a/source/_layouts/master.blade.php b/source/_layouts/master.blade.php
index cb9ebdc..5fced96 100644
--- a/source/_layouts/master.blade.php
+++ b/source/_layouts/master.blade.php
@@ -12,7 +12,7 @@
<aside class="p-4 lg:fixed">
<a href="/">Home</a>
@foreach ($page->allTags($posts) as $tag)
- <a href="/tags/{{ Str::slug($tag) }}">{{ $tag }}</a>
+ <a class="rounded p-1 {{Str::slug($tag) }}" href="/tags/{{ Str::slug($tag) }}">{{ $tag }}</a>
@endforeach
</aside>
</div>
diff --git a/source/_posts/custom-404-page.md b/source/_posts/custom-404-page.md
index 5bf2404..fdeefc4 100644
--- a/source/_posts/custom-404-page.md
+++ b/source/_posts/custom-404-page.md
@@ -4,7 +4,7 @@ section: content
title: Custom 404 Pages
date: 2018-12-23
description: Add a custom 404 page is easy with Jigsaw
-tags: [PHP]
+tags: [PHP, Apache]
---
This starter template includes a custom __404 Not Found__ error page, located at `/source/404.blade.php`. [To preview the 404 page](/404), you can visit `/404` in your browser.
diff --git a/source/_posts/customizing-your-site.md b/source/_posts/customizing-your-site.md
index 8ff7e2c..60d8e13 100644
--- a/source/_posts/customizing-your-site.md
+++ b/source/_posts/customizing-your-site.md
@@ -4,7 +4,7 @@ section: content
title: Customizing Your Site
date: 2018-12-24
description: Customize your site with CSS and JS
-tags: [PHP, MySQL]
+tags: [PHP, MySql]
featured: true
excerpt: This starter template comes pre-loaded with Tailwind CSS, a utility CSS framework that allows you to customize and build complex designs without touching a line of CSS.
---
diff --git a/source/_posts/fuse-search.md b/source/_posts/fuse-search.md
index 5ff6ded..645510e 100644
--- a/source/_posts/fuse-search.md
+++ b/source/_posts/fuse-search.md
@@ -5,7 +5,7 @@ title: Fuse Search
date: 2018-12-22
description: Fast local search powered by FuseJS
cover_image: /assets/img/post-cover-image-1.png
-tags: [PHP, MySql]
+tags: [PHP, Linux]
---
To provide fast, local search of your blog, this starter template comes with a pre-built Vue.js component that uses Fuse.js. [Fuse.js](http://fusejs.io/) is a "lightweight fuzzy-search library with _no_ dependencies." It works by running queries against a JSON index of your content.
diff --git a/source/_posts/my-first-blog-post.md b/source/_posts/my-first-blog-post.md
index c837875..ee6df52 100644
--- a/source/_posts/my-first-blog-post.md
+++ b/source/_posts/my-first-blog-post.md
@@ -5,7 +5,7 @@ title: My First Blog Post
date: 2017-03-23
description: This is your first blog post.
cover_image: /assets/img/post-cover-image-2.png
-tags: [php]
+tags: [PHP]
---
This is the start of your first blog post.
diff --git a/source/assets/build/css/main.css b/source/assets/build/css/main.css
index d5b777f..82ced66 100644
--- a/source/assets/build/css/main.css
+++ b/source/assets/build/css/main.css
@@ -655,14 +655,23 @@ body {
}
}
-a.php {
- background-color: #8892BF;
+a.apache {
+ background-color: #CB2138;
+}
+
+a.linux {
+ background-color: #FFFFFF;
+ color: #000000;
}
a.mysql {
background-color: #F29221;
}
+a.php {
+ background-color: #8892BF;
+}
+
.sr-only {
position: absolute;
width: 1px;
diff --git a/source/assets/build/mix-manifest.json b/source/assets/build/mix-manifest.json
index db9d470..553dd1a 100644
--- a/source/assets/build/mix-manifest.json
+++ b/source/assets/build/mix-manifest.json
@@ -1,4 +1,4 @@
{
"/js/main.js": "/js/main.js?id=d2fc77312aa2cec93616",
- "/css/main.css": "/css/main.css?id=5a6fe2001799916b3c68"
+ "/css/main.css": "/css/main.css?id=ba730dec96afea03f0f6"
}