commit 7005fc6b15dcb81f578fdfe9757d733293c474e8
parent 96ac9379e79eb7963a2c7b2b805088216c5fea27
Author: mjkloeckner <martinjkloeckner@gmail.com>
Date: Sat, 24 Feb 2024 18:16:06 -0300
Remove animation from blog index title
Diffstat:
3 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/blog.html b/blog.html
@@ -10,7 +10,7 @@
<!--#include virtual="/common/header.shtml" -->
<article>
<link rel='stylesheet' type='text/css' href="/css/article_style.css">
- <h1 id="index-title">Blog</h1>
+ <h1 id="blog-title">Blog</h1>
<ul id=blog_entries>
<!--#include virtual="/common/blog_index.shtml" -->
</ul>
diff --git a/css/style.css b/css/style.css
@@ -153,7 +153,7 @@ footer {
margin-right:auto;
}
-#index-title {
+#index-title, #blog-title {
text-align: center;
color: #DAA520;
padding-top: 0em;
@@ -161,6 +161,10 @@ footer {
animation: zoom-in-zoom-out 5s ease-in-out infinite;
}
+#blog-title {
+ animation: none;
+}
+
img {
overflow: hidden;
diff --git a/index.html b/index.html
@@ -38,7 +38,7 @@
<p id=blog-entries>See all <a href="/blog">blog entries</a></p>
- <script src="/js/count-blog-posts.js" defer> </script>
+ <script src="/scripts/js/count-blog-posts.js" defer> </script>
<hr class="article_bottom_bar">
</article>