diff --git a/README.md b/README.md index 3dbae1247705117728f69e8378414486f90269c5..3033061cc739c3803686afd042299cca1c99f19f 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 bcf317ea95fb84a2179b1cef52ebf53ff81aaab8..a259770df7adb2f1d4f184d4f3bf8cf4990e9058 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>