rune-workshop

A web ui to make runes
git clone git://jb55.com/rune-workshop
Log | Files | Refs | README

commit 91512aa0f99f2f635002037500fec6e48c29e304
parent 1d0038aaa3c184388a9bd5847f5dd2fc963e41f7
Author: William Casarin <jb55@jb55.com>
Date:   Mon, 22 Aug 2022 13:34:49 -0700

add source link

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mindex.html | 3+++
Mstyle.css | 14++++++++++++++
2 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/index.html b/index.html @@ -23,6 +23,9 @@ </section> <section id="workshop"> </section> + <section id="footer"> + <a href="https://github.com/jb55/rune-workshop">Source Code</a> + </section> </div> </body> <script src="rune-workshop.js?v=3" ></script> diff --git a/style.css b/style.css @@ -14,6 +14,20 @@ select { margin: 20px 0 20px 0; } +a { + color: white; +} + +a:visited { + color: #ccc; +} + +#footer { + display: flex; + justify-content: center; + margin-top: 50px; +} + .param-name { color: white; }