diff options
author | KushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com> | 2021-08-18 00:50:13 -0300 |
---|---|---|
committer | KushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com> | 2021-08-18 00:50:13 -0300 |
commit | d460fa6316d3db4e68e6b4d4c7ee2d02d6505304 (patch) | |
tree | b343013d9754cdaa61d30a407b28e3a01e53356d /static/main.html | |
parent | 9e782ba01620997becc3118433e3d1961a88b2c3 (diff) |
it works
Diffstat (limited to 'static/main.html')
-rw-r--r-- | static/main.html | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/static/main.html b/static/main.html index 9a88afc..794a602 100644 --- a/static/main.html +++ b/static/main.html @@ -41,11 +41,14 @@ {{ template "bottom" . }} - <select onchange="setTheme(this.options[this.selectedIndex].value)"> - {{ range .Themes }} - <option value="{{.}}">{{.}}</option> - {{ end }} - </select> + <div style="float: right;"> + Theme: + <select id="themeSwitcher" onchange="setTheme(this.options[this.selectedIndex].value)"> + {{ range .Themes }} + <option value="{{.}}">{{.}}</option> + {{ end }} + </select> + </div> <div align="center" style="width: 500px; margin:0 auto; margin-top: 50px;"> <a href="/">[Home]</a><a href="/static/rules.html">[Rules]</a><a href="/static/faq.html">[FAQ]</a> |