From 161d591f74a64a8eda96dbc9ff8c7915196d1bb7 Mon Sep 17 00:00:00 2001 From: swag Date: Wed, 23 Feb 2022 16:18:08 -0500 Subject: [PATCH 1/7] Font style changes --- assets/css/swagg.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/css/swagg.css b/assets/css/swagg.css index e20ee90..d28660e 100644 --- a/assets/css/swagg.css +++ b/assets/css/swagg.css @@ -7,8 +7,7 @@ body { background: #000; margin: 0em; color: #00FF00; - font-family: monospace; - font-size: 1.25em; + font-family: 'Monaco', monospace; } p { @@ -105,7 +104,8 @@ article { } article .message.field { - font-family: cursive; + font-family: 'Bradley Hand', 'Apple Chancery', cursive; + font-size: 1.25em; margin-bottom: 0em; white-space: pre-wrap; } From 14bc79d89d15ddb0dd185fc87f23ab6d79ec006d Mon Sep 17 00:00:00 2001 From: swag Date: Fri, 18 Mar 2022 15:56:44 -0400 Subject: [PATCH 2/7] Move `

` for article heading to the inside of the `
` tag --- assets/css/swagg.css | 4 +++- templates/index.html.ep | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/assets/css/swagg.css b/assets/css/swagg.css index d28660e..600bc6d 100644 --- a/assets/css/swagg.css +++ b/assets/css/swagg.css @@ -110,8 +110,10 @@ article .message.field { white-space: pre-wrap; } -article h3 { +article .message.field.heading { margin-bottom: 0em; + font-size: 0.95em; + font-family: 'Monaco', monospace; } .captcha { diff --git a/templates/index.html.ep b/templates/index.html.ep index 10a8a15..beddb61 100644 --- a/templates/index.html.ep +++ b/templates/index.html.ep @@ -4,8 +4,8 @@
<% for my $post (@$view_posts) { =%>
-

<%= @$post[0] %>

+

<%= @$post[0] %>

<%= @$post[2] %>

From 96fd1736600ff731d96c3250c7968e2d510200b6 Mon Sep 17 00:00:00 2001 From: swag Date: Fri, 18 Mar 2022 16:13:15 -0400 Subject: [PATCH 3/7] Add `lang=en` attribute to `` --- templates/layouts/default.html.ep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index a7c9312..4faffde 100644 --- a/templates/layouts/default.html.ep +++ b/templates/layouts/default.html.ep @@ -1,5 +1,5 @@ - + From 64067b22f97dcd438288442cd545e67f74f65086 Mon Sep 17 00:00:00 2001 From: swag Date: Fri, 18 Mar 2022 16:15:09 -0400 Subject: [PATCH 4/7] Revert "Move `

` for article heading to the inside of the `
` tag" This reverts commit 14bc79d89d15ddb0dd185fc87f23ab6d79ec006d. This was just to address some warning but now it's creating errors in HTML validation so probably best to just ignore --- assets/css/swagg.css | 4 +--- templates/index.html.ep | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/assets/css/swagg.css b/assets/css/swagg.css index 600bc6d..d28660e 100644 --- a/assets/css/swagg.css +++ b/assets/css/swagg.css @@ -110,10 +110,8 @@ article .message.field { white-space: pre-wrap; } -article .message.field.heading { +article h3 { margin-bottom: 0em; - font-size: 0.95em; - font-family: 'Monaco', monospace; } .captcha { diff --git a/templates/index.html.ep b/templates/index.html.ep index beddb61..10a8a15 100644 --- a/templates/index.html.ep +++ b/templates/index.html.ep @@ -4,8 +4,8 @@
<% for my $post (@$view_posts) { =%>
+

<%= @$post[0] %>

-

<%= @$post[0] %>

<%= @$post[2] %>

From a11bae7cdf137742db5003889d93650309314d74 Mon Sep 17 00:00:00 2001 From: swag Date: Fri, 1 Apr 2022 15:36:16 -0400 Subject: [PATCH 5/7] Use

instead of

to appease HTML validator --- templates/index.html.ep | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.html.ep b/templates/index.html.ep index 10a8a15..f488fa8 100644 --- a/templates/index.html.ep +++ b/templates/index.html.ep @@ -9,12 +9,12 @@

<%= @$post[2] %>

-
+

- <%= @$post[1] %> <% if (@$post[3]) { =%> (<%= link_to Homepage => @$post[3] %>) <% } =%> -

+

From 93ee1b080b89d862025c8e0c9b8206a384603e77 Mon Sep 17 00:00:00 2001 From: swag Date: Fri, 1 Apr 2022 16:26:40 -0400 Subject: [PATCH 6/7] Style tweaks for the new

tags --- templates/index.html.ep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html.ep b/templates/index.html.ep index f488fa8..212639e 100644 --- a/templates/index.html.ep +++ b/templates/index.html.ep @@ -9,7 +9,7 @@

<%= @$post[2] %>

-

+

- <%= @$post[1] %> <% if (@$post[3]) { =%> (<%= link_to Homepage => @$post[3] %>) From 1fdd18c42f5bcee7d2e2bb1d2912088ed2694496 Mon Sep 17 00:00:00 2001 From: swag Date: Fri, 1 Apr 2022 22:38:14 -0400 Subject: [PATCH 7/7] Change some

to
where a heading is not necessary (HTML linter findings) --- templates/index.html.ep | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/index.html.ep b/templates/index.html.ep index 212639e..b5edf85 100644 --- a/templates/index.html.ep +++ b/templates/index.html.ep @@ -5,17 +5,17 @@ <% for my $post (@$view_posts) { =%>

<%= @$post[0] %>

-
+

<%= @$post[2] %>

-
-
+
+

- <%= @$post[1] %> <% if (@$post[3]) { =%> (<%= link_to Homepage => @$post[3] %>) <% } =%>

-
+

<% } =%>