diff --git a/main.py b/main.py new file mode 100644 index 0000000..e656d28 --- /dev/null +++ b/main.py @@ -0,0 +1,7 @@ +from flask import Flask +from flask import render_template +app = Flask(__name__) + +@app.route("/") +def main(): + return render_template('index.html') diff --git a/static/styles.css b/static/styles.css new file mode 100644 index 0000000..fe1e046 --- /dev/null +++ b/static/styles.css @@ -0,0 +1,25 @@ +body { + position: relative; + background-color: DarkSlateBlue; + color: white; + font-family: Arial; + font-size: 400%; +} + +.center { + position: absolute; + top: 50%; + width: 100%; + text-align: center; +} + +.bottom { + background-color: black; + position: fixed; + width: 100%; + bottom: 0; + right: 0px; + font-size: 30px; + text-align: right; + padding: 10px; +} diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..7852056 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,14 @@ + + + + + +One day, we will be there + + +

Coming soon! (2022?)

+
+

For any info, please contact alexandru.pentilescu@disroot.org

+
+ +