Merge branch 'Report'

This commit is contained in:
2024-11-21 18:57:24 +03:00
3 changed files with 13 additions and 16 deletions

View File

@@ -4,6 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>{{ title }}</title> <title>{{ title }}</title>
<link href="/static/css/main.css" type="text/css" rel="stylesheet"> <link href="/static/css/main.css" type="text/css" rel="stylesheet">
<link href="/static/css/report.css" type="text/css" rel="stylesheet">
</head> </head>
<body> <body>
<div class="logout"> <div class="logout">
@@ -44,9 +45,9 @@
<button type="submit" value="read">Просмотр</button> <button type="submit" value="read">Просмотр</button>
{% endif %} {% endif %}
</form> </form>
<div class="return"> </div>
<a href="{{ url_for('index') }}"><button>Главное меню</button></a> <div class="return">
</div> <a href="{{ url_for('index') }}"><button>Главное меню</button></a>
</div> </div>
</body> </body>
</html> </html>

View File

@@ -42,9 +42,8 @@ div.login button {
} }
div.return { div.return {
display: flex; text-align: center;
justify-content: center; margin: 20px 0;
margin-top: 15px;
} }
div.return button { div.return button {
@@ -52,10 +51,8 @@ div.return button {
} }
div.form { div.form {
position: absolute; margin-left: 30%;
left: 50%; margin-right: 30%;
top: 50%;
transform: translate(-50%, -50%);
text-align: center; text-align: center;
background-color: white; background-color: white;
padding: 20px; padding: 20px;
@@ -79,12 +76,6 @@ div.form select, div.form input[type=number] {
box-sizing: border-box; box-sizing: border-box;
} }
div.form .period {
display: flex;
gap: 10px;
justify-content: center;
}
div.form button { div.form button {
margin-top: 15px; margin-top: 15px;
} }

View File

@@ -0,0 +1,5 @@
div.form .period {
display: flex;
gap: 10px;
justify-content: center;
}