diff options
-rw-r--r-- | README.md | 16 | ||||
-rw-r--r-- | assets/stylesheets/style.css | 14 |
2 files changed, 19 insertions, 11 deletions
@@ -1,17 +1,15 @@ # TJKBasic Hugo Theme -This is the hugo theme used on [tjkeller.xyz](https://tjkeller.xyz). -The theme was made from scratch. +This is the Hugo theme used on [tjkeller.xyz](https://tjkeller.xyz). +The theme was made from scratch, but still benefited from the availability from other open themes to reference. -This is really just meant as a reference for those who would like to replicate some features from my site. -I would prefer if you did not just copy + paste my theme on your own site. +This theme is made available as a reference for those who would like to replicate some features from my site. +Starting from scratch comes with many benefits, so you're better off not building off of this theme as a starting point. +To be clear, I would prefer if you did not just copy + paste my theme for your own site. Nobody likes a copycat, so that would be lame! -I wouldn't even recommend using it as a starting point to build off of since I believe that I have benefited greatly by starting from scratch. -However, I still believe that having it up as a reference could be useful for those who would like to start from scratch, but are having difficulty implementing specific features, etc. - -Because of that, I am hereby graciously releasing this theme unto the unwashed, liberal masses under the GPLv3 licence! -I am entrusting you (the public) to more or less respect my wishes, but I of course don't mind if you copy certain portions, etc. so long as you don't rip off my entire site. +With that being said, I hereby (graciously) release this theme unto the unwashed, liberal masses under the GPLv3 license! +I am entrusting you (the public) to more or less respect my wishes, just don't rip off my entire site if you can help it. Also, check out the `hugo.yaml` file. It contains some settings that you need to include in your main `hugo.yaml` to make it function correctly for some reason. diff --git a/assets/stylesheets/style.css b/assets/stylesheets/style.css index 278bac3..2253b65 100644 --- a/assets/stylesheets/style.css +++ b/assets/stylesheets/style.css @@ -67,12 +67,12 @@ main, footer{ #publishing a { color: #555 } #publishing a:not(:last-child)::after { content: "," } +footer span, #copyright, #theme-copyright { text-align: center; display: block; - opacity: .2; - color: #fff; margin: .25em; + color: #6a6a6a; } /* elements */ @@ -169,6 +169,16 @@ ol, ul, pre code { max-width: 100%; } +/* youtube iframe shortcode */ +div.yt-4x3 iframe { + display: block; + aspect-ratio: 4/3; + max-width: 600px; + width: 100%; + margin: 2em auto; + border: 0; +} + /* utility classes */ .monodate, .monospace { font-family: monospace } .bold { font-weight: bold } |