From 627cdfd418c6d55c4b8e130068aa34de23324c0d Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Tue, 23 Dec 2025 16:37:46 -0330 Subject: theme: flatten partials and assets dirs --- themes/aoidh/assets/aoidh.css | 91 +++++++++++++++++++++++++++++++++++++++ themes/aoidh/assets/css/aoidh.css | 91 --------------------------------------- themes/aoidh/assets/js/main.js | 2 - 3 files changed, 91 insertions(+), 93 deletions(-) create mode 100644 themes/aoidh/assets/aoidh.css delete mode 100644 themes/aoidh/assets/css/aoidh.css delete mode 100644 themes/aoidh/assets/js/main.js (limited to 'themes/aoidh/assets') diff --git a/themes/aoidh/assets/aoidh.css b/themes/aoidh/assets/aoidh.css new file mode 100644 index 0000000..0b787b7 --- /dev/null +++ b/themes/aoidh/assets/aoidh.css @@ -0,0 +1,91 @@ +:root { + --paper-color: #ffffea; + --dark-yellow: #99994c; + --light-blue: #eaffff; + --dark-blue: #8888cc; + --light-gray: #eee; + --dark-gray: #888; +} + +html { + background: var(--light-gray); +} + +body { + margin: 2rem auto; + padding: .5rem 1rem .25rem; + max-width: 60rem; + border: 1px solid var(--dark-yellow); + box-shadow: 2px 2px var(--dark-yellow); +} + +body { + line-height: 1.35rem; + font-family: serif; + text-rendering: optimizeLegibility; + color: #000; + background: #fff; +} + +.content { + margin-left: auto; + margin-right: auto; + max-width: 40rem; +} + +header { + margin-bottom: 2rem; +} + +nav ul { + display: flex; + list-style-type: none; +} + +nav a { + text-decoration: none; + color: #000; + background: #fff; + padding: .2rem 1.5rem .2rem 1.5rem; + margin: .1rem 0 .1rem 1rem; + border: .1rem solid var(--dark-blue); + box-shadow: .1rem .1rem var(--dark-blue); +} + +nav li:first-child a { + margin-left: 0; +} + +nav a:active { + color: #000; + background: #fff; + box-shadow: 0 0; +} + +ul { + padding: 0; +} + +p { + text-align: justify; + hyphens: auto; + text-justify: inter-word; +} + +a { + text-decoration: underline; + border: 1px solid transparent; +} + +a:hover, nav a:focus { + text-decoration: none; + color: #000; + background: var(--light-blue); +} + +a:active { + text-decoration: none; + color: #000; + background: var(--light-blue); + border: 1px solid var(--dark-blue); +} diff --git a/themes/aoidh/assets/css/aoidh.css b/themes/aoidh/assets/css/aoidh.css deleted file mode 100644 index 0b787b7..0000000 --- a/themes/aoidh/assets/css/aoidh.css +++ /dev/null @@ -1,91 +0,0 @@ -:root { - --paper-color: #ffffea; - --dark-yellow: #99994c; - --light-blue: #eaffff; - --dark-blue: #8888cc; - --light-gray: #eee; - --dark-gray: #888; -} - -html { - background: var(--light-gray); -} - -body { - margin: 2rem auto; - padding: .5rem 1rem .25rem; - max-width: 60rem; - border: 1px solid var(--dark-yellow); - box-shadow: 2px 2px var(--dark-yellow); -} - -body { - line-height: 1.35rem; - font-family: serif; - text-rendering: optimizeLegibility; - color: #000; - background: #fff; -} - -.content { - margin-left: auto; - margin-right: auto; - max-width: 40rem; -} - -header { - margin-bottom: 2rem; -} - -nav ul { - display: flex; - list-style-type: none; -} - -nav a { - text-decoration: none; - color: #000; - background: #fff; - padding: .2rem 1.5rem .2rem 1.5rem; - margin: .1rem 0 .1rem 1rem; - border: .1rem solid var(--dark-blue); - box-shadow: .1rem .1rem var(--dark-blue); -} - -nav li:first-child a { - margin-left: 0; -} - -nav a:active { - color: #000; - background: #fff; - box-shadow: 0 0; -} - -ul { - padding: 0; -} - -p { - text-align: justify; - hyphens: auto; - text-justify: inter-word; -} - -a { - text-decoration: underline; - border: 1px solid transparent; -} - -a:hover, nav a:focus { - text-decoration: none; - color: #000; - background: var(--light-blue); -} - -a:active { - text-decoration: none; - color: #000; - background: var(--light-blue); - border: 1px solid var(--dark-blue); -} diff --git a/themes/aoidh/assets/js/main.js b/themes/aoidh/assets/js/main.js deleted file mode 100644 index 1756afc..0000000 --- a/themes/aoidh/assets/js/main.js +++ /dev/null @@ -1,2 +0,0 @@ -console.log('This site was generated by Hugo.'); -console.log('Theme: Aoidh'); -- cgit v1.2.3