temporary css changes

This commit is contained in:
Denis Lehmann 2022-04-11 00:21:59 +02:00
parent 7e4df5c34c
commit 101ffcbc87
2 changed files with 26 additions and 2 deletions

View file

@ -1,3 +1,21 @@
body {
font-family: sans-serif;
margin: 0;
}
#container {
display: flex;
flex-direction: column;
}
#header {
border: 1px solid green;
}
#title {
font-size: 14pt;
}
#content {
border: 1px solid red;
}

View file

@ -3,5 +3,11 @@
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.png') }}">
<title>{{ config["directory"] }} - {{ cloud_name }}</title>
<h1>{{ config["directory"] }}</h1>
{% block content %}{% endblock %}
<div id="container">
<div id="header">
<span id="title">{{ config["directory"] }}</span>
</div>
<div id="content">
{% block content %}{% endblock %}
</div>
</div>