Small design adjustments
All checks were successful
docker-image / docker (push) Successful in 1m26s

This commit is contained in:
Stefan Bethke 2025-05-30 16:22:32 +02:00
commit ce0f6bfaa6
2 changed files with 13 additions and 11 deletions

View file

@ -24,6 +24,7 @@ body {
.lock__line * { .lock__line * {
flex-grow: 1; flex-grow: 1;
font-size: 1.2rem;
} }
.lock__state-and-label { .lock__state-and-label {
@ -33,7 +34,7 @@ body {
.lock__name, .lock__state-label { .lock__name, .lock__state-label {
display: inline-block; display: inline-block;
vertical-align: top; vertical-align: top;
margin: 1em 0 0 0; margin: 1rem 0 0 0;
} }
.lock__line .lock__state-bat { .lock__line .lock__state-bat {
@ -42,10 +43,10 @@ body {
} }
.lock__line button { .lock__line button {
min-width: 10em; min-width: 8rem;
margin: 0.1em 0.5em; margin: 0.1rem 0.5rem;
padding: 0.1em 0.5em; padding: 0.1rem 0.5rem;
border-radius: 2em; border-radius: 2rem;
background-color: white; background-color: white;
color: black; color: black;
} }
@ -54,12 +55,12 @@ body {
display: inline-block; display: inline-block;
background: black; background: black;
color: white; color: white;
min-width: 1.5em; min-width: 1.5rem;
min-height: 1.5em; min-height: 1.5rem;
border-radius: 1.5em; border-radius: 1.5rem;
padding: 0.5em; padding: 0.5rem;
margin: 0 1em 0 0; margin: 0 1rem 0 0;
font-size: 1.2em; font-size: 1.2rem;
font-weight: bold; font-weight: bold;
} }

View file

@ -2,6 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<title>{% block page_title %}{% endblock %}</title> <title>{% block page_title %}{% endblock %}</title>
<meta name="viewport" content="width=device-width">
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png">
<link rel=stylesheet type="text/css" href="static/main.css"> <link rel=stylesheet type="text/css" href="static/main.css">
<script src="static/main.js" defer></script> <script src="static/main.js" defer></script>