diff --git a/articles.html b/articles.html
index f2ec048..42da649 100644
--- a/articles.html
+++ b/articles.html
@@ -44,30 +44,30 @@
- Date |
+ Date |
Article |
- |
+ |
A Beginner's Guide to Searching with Lucene |
- |
+ |
DSH - Easier Scripting in D |
- |
+ |
The D Programming Language: Does it have a future? |
- |
+ |
Spring's Open-Session-in-View & Transactions |
- |
+ |
2D Games with Java & Swing |
diff --git a/styles/article.css b/styles/article.css
index 73033ca..483328f 100644
--- a/styles/article.css
+++ b/styles/article.css
@@ -1,6 +1,10 @@
-article {
- background-color: var(--background-color-2);
- padding: 0.5em 1em;
+/* Adjust body and hr to make the page slightly wider if possible. */
+body {
+ max-width: 70ch;
+}
+
+hr {
+ max-width: 80ch;
}
article h1 {
@@ -13,5 +17,5 @@ figure {
}
code {
- font-size: x-small;
+ color: var(--code-color);
}
diff --git a/styles/style.css b/styles/style.css
index 7092c7f..16d2ec7 100644
--- a/styles/style.css
+++ b/styles/style.css
@@ -3,7 +3,8 @@
--background-color-2: #e0e0e0;
--background-color-3: #d1d1d1;
--text-color: #1c1c1c;
- --link-color: #194b26;
+ --link-color: #236936;
+ --code-color: #e02929;
}
:root.dark {
@@ -12,6 +13,7 @@
--background-color-3: #2b2b2b;
--text-color: #e8e8e8;
--link-color: #46d169;
+ --code-color: #ff2f2f;
}
body {