diff --git a/src/assets/styles/components/forms.css b/src/assets/styles/components/forms.css
index 2089e2cc..17901e23 100644
--- a/src/assets/styles/components/forms.css
+++ b/src/assets/styles/components/forms.css
@@ -49,7 +49,6 @@ button:not(.theme__toggle, .share, .pagefind-ui__search-clear) {
background-color: var(--accent-color);
appearance: none;
border: none;
- text-decoration: none;
transition-property: background-color;
}
diff --git a/src/assets/styles/components/pagefind.css b/src/assets/styles/components/pagefind.css
index 5845c786..5ca7434e 100644
--- a/src/assets/styles/components/pagefind.css
+++ b/src/assets/styles/components/pagefind.css
@@ -35,7 +35,6 @@
font-size: var(--font-size-2xl);
line-height: var(--line-height-2xl);
font-weight: 900;
- text-decoration: none;
margin: 0;
transition-property: color;
transition-timing-function: var(--transition-ease-in-out);
@@ -48,6 +47,10 @@
color: var(--accent-color-hover);
}
+.pagefind-ui__results-area {
+ margin-bottom: var(--sizing-base);
+}
+
:is(input[type="text"], input[type="search"]).pagefind-ui__search-input {
padding-left: 2.375rem !important;
padding-top: 0 !important;
@@ -73,7 +76,6 @@
.pagefind-ui__result-link {
font-size: var(--font-size-2xl) !important;
color: var(--accent-color) !important;
- text-decoration: none !important;
}
.pagefind-ui__result-link:hover,
@@ -90,7 +92,6 @@
margin: 0 var(--sizing-xs) var(--sizing-md) 0;
cursor: pointer !important;
height: unset !important;
- text-decoration: none;
background-color: var(--accent-color) !important;
transition-property: background-color;
transition-timing-function: var(--transition-ease-in-out);
diff --git a/src/assets/styles/index.css b/src/assets/styles/index.css
index 80fcd0ef..b154d721 100644
--- a/src/assets/styles/index.css
+++ b/src/assets/styles/index.css
@@ -58,6 +58,7 @@ blockquote {
/* links */
a {
transition-property: color;
+ text-decoration: none;
}
a,
@@ -126,10 +127,6 @@ table {
border: 1px solid var(--gray-light);
}
-table a {
- text-decoration: none;
-}
-
table,
th,
td {
@@ -282,7 +279,6 @@ footer nav:last-child span:not(.active) {
:is(.main__title, footer nav:last-child) a {
color: var(--text-color);
- text-decoration: none;
}
.highlight-text {
@@ -407,10 +403,6 @@ li {
display: none !important;
}
-.no-underline {
- text-decoration: none !important;
-}
-
.text--centered {
text-align: center !important;
}
diff --git a/src/index.html b/src/index.html
index 4e882429..c8b3eae2 100644
--- a/src/index.html
+++ b/src/index.html
@@ -14,14 +14,14 @@ pagination:
{{ post.date | date: "%B %e, %Y" }}
-
+
{{ post.data.title }}
{% render "partials/tags.liquid", tags:post.data.tags %}
{{ meta.siteName }}
{{ post.data.post_excerpt }}
{{ post.data.post_excerpt | markdown }}
-
Read more →
+
Read more →
{% endfor %}
{% render "partials/paginator.liquid", pagination:pagination %}
\ No newline at end of file
diff --git a/src/links.html b/src/links.html
index 20999746..5328b1dc 100644
--- a/src/links.html
+++ b/src/links.html
@@ -13,7 +13,7 @@ image: /assets/img/ogi/links.jpg
{% for link in pagination.items %}
- {{ link.title }}
+ {{ link.title }}
{% if link.author and link.author != 'undefined' %}by {{ link.author }}{% endif %}
{% endfor %}
diff --git a/src/pages/blogroll.html b/src/pages/blogroll.html
index 0eb19357..4fbea750 100644
--- a/src/pages/blogroll.html
+++ b/src/pages/blogroll.html
@@ -16,8 +16,8 @@ description: 'These are awesome blogs that I enjoy and you may enjoy too.'
{{ blog.name }}
{%- if blog.description %}
{{ blog.description }}
diff --git a/src/pages/referrals.md b/src/pages/referrals.md
index 99916910..2ef1917c 100644
--- a/src/pages/referrals.md
+++ b/src/pages/referrals.md
@@ -10,10 +10,10 @@ description: 'Referral links for services that I use.'
Referral links for services I use. I save some money, and you do as well if you choose to use them.
\ No newline at end of file
diff --git a/src/pages/stats.html b/src/pages/stats.html
index e35f23c7..cfb508a9 100644
--- a/src/pages/stats.html
+++ b/src/pages/stats.html
@@ -13,7 +13,7 @@ image: /assets/img/ogi/stats.jpg
{% assign posts = collections.posts | getPopularPosts: analytics %}
{% for post in posts limit: 10 %}
-
+
{{ post.data.title }}
diff --git a/src/pages/tag-list.html b/src/pages/tag-list.html
index 05352f0b..824cd0ea 100644
--- a/src/pages/tag-list.html
+++ b/src/pages/tag-list.html
@@ -15,10 +15,10 @@ eleventyComputed:
{{ post.date | date: "%m.%Y" }}
-
+
{{ post.data.title }}
{{ post.data.post_excerpt | markdown }}
-
Read more →
+
Read more →
{% endfor %}
\ No newline at end of file