diff --git a/README.md b/README.md index b591bb4..b9c131d 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ uv sync uv run python main.py ``` -The app runs on `0.0.0.0:8000` by default. +The app runs on `0.0.0.0:5000` by default. ## API Endpoints diff --git a/hnsdoh_status/static/style.css b/hnsdoh_status/static/style.css index 0818fc8..41737c5 100644 --- a/hnsdoh_status/static/style.css +++ b/hnsdoh_status/static/style.css @@ -34,6 +34,10 @@ body { radial-gradient(circle at 10% 10%, #cfeadf 0, transparent 32%), radial-gradient(circle at 90% 0%, #b4d6e3 0, transparent 28%), var(--bg); + background-repeat: no-repeat; + background-size: 140vmax 140vmax, 120vmax 120vmax, auto; + background-position: left top, right top, center; + background-attachment: fixed; } @media (prefers-color-scheme: dark) { @@ -42,6 +46,10 @@ body { radial-gradient(circle at 10% 10%, #143342 0, transparent 35%), radial-gradient(circle at 90% 0%, #233a46 0, transparent 30%), var(--bg); + background-repeat: no-repeat; + background-size: 140vmax 140vmax, 120vmax 120vmax, auto; + background-position: left top, right top, center; + background-attachment: fixed; } } diff --git a/main.py b/main.py index 4b0a139..64b9f54 100644 --- a/main.py +++ b/main.py @@ -5,4 +5,4 @@ app = create_app() if __name__ == "__main__": - app.run(host="0.0.0.0", port=8000, debug=False) + app.run(host="0.0.0.0", port=5000, debug=False)