From 28e56a17a8693d73342ea01980d5edf17744f199 Mon Sep 17 00:00:00 2001 From: tilcreator <tilcreator@tc-j.de> Date: Tue, 15 Mar 2022 23:16:27 +0100 Subject: [PATCH] Add copyright infos --- README.md | 4 ++++ src/index.html | 21 +++++++++++++++++++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3dbae12..3033061 100644 --- a/README.md +++ b/README.md @@ -10,3 +10,7 @@ This generator is meant to provide an easy way to generator BB3 style logos/user ```nix (import (pkgs.fetchFromGitLab {domain = "git.cccv.de"; owner = "TilCreator"; repo = "divoc-bb3-logo-generator"; rev = "..."; sha256 = "...";})).default ``` +## Licence +Graphics: CC-BY design: betalars, evlli; translation: kimera7790, pliess; programming: tilcreator, stuebinm +Code: MIT +Copyright of used fonts, see: [Google Font attribution](https://fonts.google.com/attribution) diff --git a/src/index.html b/src/index.html index bcf317e..a259770 100644 --- a/src/index.html +++ b/src/index.html @@ -64,6 +64,12 @@ p { margin: 10px 0px; } + a { + color: #62C1A6; + } + a:visited { + color: #5253ff; + } input, textarea { background: #241B2B; color: #FFEBD8; @@ -75,6 +81,9 @@ border-color: #62c1a6; outline: none; } + footer { + text-align: center; + } .input-with-label { display: inline-grid; grid-template-columns: repeat(2, auto); @@ -206,6 +215,9 @@ grid-row-start: 1; grid-row-end: 4; } + #copyright { + font-size: 90%; + } #preview_big, #preview_small, #preview_big > svg, #preview_small > svg { display: block; width: 100%; @@ -240,8 +252,8 @@ margin: -5px; } #selector_animal { - grid-template-columns: repeat(auto-fit, minmax(100px, 250px)); - grid-template-rows: repeat(auto-fit, minmax(100px, 250px)); + grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); + grid-template-rows: repeat(auto-fit, minmax(100px, 1fr)); } #selector_animal > div { width: calc(100% - 10px); @@ -527,6 +539,7 @@ <div class="container-background"> <h3>alt text</h3> <p id="alt_text"></p> + <p id="copyright">CC-BY</p> </div> <div class="container-distance"> <h2>Customize visuals</h2> @@ -797,6 +810,10 @@ </div> </div> </main> + <footer> + <p>CC-BY design: betalars, evlli; translation: kimera7790, pliess; programming: tilcreator, stuebinm</p> + <a href="https://git.cccv.de/tilcreator/divoc-bb3-logo-generator">source</a> + </footer> <script> onhtmlload(); </script> -- GitLab