From 76cbb19317095aa741687aa86567a1c2d1ecfcb2 Mon Sep 17 00:00:00 2001 From: Captain ALM Date: Thu, 28 Jul 2022 01:01:53 +0100 Subject: [PATCH] . --- base.css | 11 +++++------ dark.css | 4 ++-- index.go.html | 6 ------ light.css | 4 ++-- pageHandler/pages/index/entry.go | 2 +- 5 files changed, 10 insertions(+), 17 deletions(-) diff --git a/base.css b/base.css index e1f6a4b..1584bd6 100644 --- a/base.css +++ b/base.css @@ -56,13 +56,12 @@ main{ position: fixed; max-height: 0; } -.so-pane > p > *{ - font-size: 24px; +.so-pane > *{ + font-size: 16px; text-align: left; - width: 180px; padding: 0 1px; } -.so-pane > p > label{ +.so-pane > label{ background-color: transparent; } .nav-menu, .sort-menu, .data-hold{ @@ -117,9 +116,9 @@ main{ box-sizing: content-box; position: fixed; top: 85px; - max-height: 96px; + max-height: 24px; width: 360px; - height: 96px; + height: 24px; padding: 4px; text-align: center; vertical-align: middle; diff --git a/dark.css b/dark.css index b275bef..181b20b 100644 --- a/dark.css +++ b/dark.css @@ -9,10 +9,10 @@ a{ .header, .nav, footer, .so-pane{ background-color: #1d1d1e; } -.home-button > div, .sort-button > div, .menu a, .so-pane > p > *{ +.home-button > div, .sort-button > div, .menu a, .so-pane > *{ color: #e0e0e0; } -.home-button:hover, .menu a:hover, .hmb:hover, .sort-button:hover, .sort-menu:checked ~ .sort-button, .so-pane > p > input, .so-pane > p > select{ +.home-button:hover, .menu a:hover, .hmb:hover, .sort-button:hover, .sort-menu:checked ~ .sort-button, .so-pane > input, .so-pane > select{ background-color: #606061; } .hmb-line, .hmb-line::before, .hmb-line::after{ diff --git a/index.go.html b/index.go.html index b759015..c095f06 100644 --- a/index.go.html +++ b/index.go.html @@ -33,7 +33,6 @@ {{ end }} {{ $sort := 0 }} -

-

-

-

-

-

diff --git a/light.css b/light.css index f0462d0..5c608bb 100644 --- a/light.css +++ b/light.css @@ -9,10 +9,10 @@ a{ .header, .nav, footer, .so-pane{ background-color: #e2e2e1; } -.home-button > div, .sort-button > div, .menu a, .so-pane > p > *{ +.home-button > div, .sort-button > div, .menu a, .so-pane > *{ color: #1f1f1f; } -.home-button:hover, .menu a:hover, .hmb:hover, .sort-button:hover, .sort-menu:checked ~ .sort-button, .so-pane > p > input, .so-pane > p > select{ +.home-button:hover, .menu a:hover, .hmb:hover, .sort-button:hover, .sort-menu:checked ~ .sort-button, .so-pane > input, .so-pane > select{ background-color: #9f9f9e; } .hmb-line, .hmb-line::before, .hmb-line::after{ diff --git a/pageHandler/pages/index/entry.go b/pageHandler/pages/index/entry.go index 5da2b29..bcf6d7b 100644 --- a/pageHandler/pages/index/entry.go +++ b/pageHandler/pages/index/entry.go @@ -8,7 +8,7 @@ import ( "time" ) -const dateFormat = "01-2006" +const dateFormat = "01/2006" type EntryYaml struct { Name string `yaml:"name"`