diff --git a/static/css/screens.css b/static/css/screens.css index e716bbc..4544103 100644 --- a/static/css/screens.css +++ b/static/css/screens.css @@ -22,5 +22,5 @@ input.button{ display: inline-block; font-size: 100%; padding:1em; - margin:2em; + margin:2em 0; } \ No newline at end of file diff --git a/templates/x-dex.html b/templates/x-dex.html index 64aa13e..11cf00b 100644 --- a/templates/x-dex.html +++ b/templates/x-dex.html @@ -104,6 +104,7 @@ + @@ -124,6 +125,7 @@ + @@ -150,6 +152,7 @@
+ @@ -163,6 +166,7 @@ + @@ -188,5 +192,9 @@ document.getElementById(current).style.display = 'none'; document.getElementById(next).style.display = 'block'; } + function prevScreen(current, previous) { + document.getElementById(current).style.display = 'none'; + document.getElementById(previous).style.display = 'block'; + } {% endblock %} \ No newline at end of file