Design foundations

- Create a colour palette
- Create a sizing schema for paddings and fonts
- Implement basic form controls
- Create a theme demo page
- Apply the theme to the existing pages.

Still TODO is the final font selection.
This commit is contained in:
Jonas Schäfer
2020-02-29 19:03:47 +01:00
parent 9318b0d152
commit e985fe9c61
24 changed files with 2229 additions and 56 deletions

View File

@@ -34,5 +34,14 @@ async def home():
return redirect(url_for('login'))
@app.route("/meta/about.html")
async def about():
return await render_template("about.html")
@app.route("/meta/demo.html")
async def demo():
return await render_template("demo.html")
from .user import user_bp
app.register_blueprint(user_bp)