aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-03-24 20:19:53 -0400
committerThedro Neely <thedroneely@gmail.com>2019-03-24 20:19:53 -0400
commita85bf687252953d529deace690a09162cac7740f (patch)
tree791ab1da0ae63d5097f79b229820a1efcc71e357
parent1ea31083dad9917a430c2a85004a4538eedcc724 (diff)
downloadedwinmattiacci.com-a85bf687252953d529deace690a09162cac7740f.tar.gz
edwinmattiacci.com-a85bf687252953d529deace690a09162cac7740f.tar.bz2
edwinmattiacci.com-a85bf687252953d529deace690a09162cac7740f.zip
public/error: Add bottom border to error view links
-rw-r--r--public/error/403.html5
-rw-r--r--public/error/404.html5
2 files changed, 8 insertions, 2 deletions
diff --git a/public/error/403.html b/public/error/403.html
index 101f5cb..1588eb6 100644
--- a/public/error/403.html
+++ b/public/error/403.html
@@ -6,7 +6,10 @@
<h1 style="color: #FF6978; font-size: 8em;">403</h1>
<h2 class="text-xl font-normal text-grey-darkest">Error 403 - Forbidden.</h2>
<br>
- <h2 class="text-xl font-normal text-grey-darkest">You can head back to the <a class="text-blue" href="/">homepage</a>.</h2>
+ <h2 class="text-xl font-normal text-grey-darkest">
+ You can head back to the
+ <a class="text-blue no-underline border-b-2 border-blue" href="/">homepage</a>.
+ </h2>
<?php require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/views/partials/footer.php'; ?>
diff --git a/public/error/404.html b/public/error/404.html
index ba70b5c..8da16b3 100644
--- a/public/error/404.html
+++ b/public/error/404.html
@@ -6,7 +6,10 @@
<h1 style="color: #FF6978; font-size: 8em;">404</h1>
<h2 class="text-xl font-normal text-grey-darkest">Error 404 - Page not found.</h2>
<br>
- <h2 class="text-xl font-normal text-grey-darkest">You can head back to the <a class="text-blue" href="/">homepage</a>.</h2>
+ <h2 class="text-xl font-normal text-grey-darkest">
+ You can head back to the
+ <a class="text-blue no-underline border-b-2 border-blue" href="/">homepage</a>.
+ </h2>
<?php require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/views/partials/footer.php'; ?>