diff --git a/app.py b/app.py index 5368a23..32c95ee 100644 --- a/app.py +++ b/app.py @@ -11,11 +11,11 @@ app = Flask( @app.route('/') def index(): - return render_template("index.html") + return render_template("index.html", nightly=False) @app.route('/nightly') def nightly(): - return render_template("nightly.html") + return render_template("index.html", nightly=True) @app.route('/agegate') def agegate(): diff --git a/static/sexy.css b/static/sexy.css index 0eb3d04..8e026ba 100644 --- a/static/sexy.css +++ b/static/sexy.css @@ -166,6 +166,7 @@ a:hover { .game-logo { width: 40vh; opacity: 0.5; + transition: 0.2s; } .game-button:hover { diff --git a/templates/index.html b/templates/index.html index 322179e..e0f3d4d 100644 --- a/templates/index.html +++ b/templates/index.html @@ -4,35 +4,35 @@
-
-
-
-
-
-
-
-