2021-05-04 11:29:36 +02:00
|
|
|
body {
|
2021-05-14 18:28:33 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
2021-05-14 18:28:33 +02:00
|
|
|
width: 100%;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
2021-05-14 18:28:33 +02:00
|
|
|
|
2021-05-04 11:29:36 +02:00
|
|
|
.center {
|
2021-07-17 14:26:19 +02:00
|
|
|
position: fixed;
|
2021-05-14 18:28:33 +02:00
|
|
|
width: 600px;
|
|
|
|
max-width: 100%;
|
2021-07-17 14:26:19 +02:00
|
|
|
height: 500px;
|
2021-05-14 18:28:33 +02:00
|
|
|
max-height: 100%;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -300px;
|
2021-07-17 14:26:19 +02:00
|
|
|
margin-top: -250px;
|
2021-05-14 18:28:33 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding: 30px;
|
|
|
|
color: #333;
|
2021-07-17 14:26:19 +02:00
|
|
|
overflow-y: scroll;
|
|
|
|
scrollbar-width: none;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
2021-05-14 18:28:33 +02:00
|
|
|
|
2021-05-04 11:29:36 +02:00
|
|
|
.center input {
|
2021-05-14 18:28:33 +02:00
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 1px;
|
|
|
|
border: 1px solid rgb(90, 90, 90);
|
|
|
|
font-family: inherit;
|
|
|
|
background-color: #eae9ea;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
2021-05-26 20:10:01 +02:00
|
|
|
div.login div {
|
|
|
|
width: 100%;
|
|
|
|
height: 60px;
|
|
|
|
display: table;
|
|
|
|
}
|
2021-05-31 06:55:56 +02:00
|
|
|
|
2021-05-26 20:10:01 +02:00
|
|
|
div.login input {
|
|
|
|
padding: 15px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2021-05-14 18:28:33 +02:00
|
|
|
.center table p {
|
|
|
|
font-size: x-small;
|
|
|
|
margin: 0;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
2021-05-14 18:28:33 +02:00
|
|
|
border-collapse: collapse;
|
|
|
|
width: 100%;
|
2021-05-20 11:40:44 +02:00
|
|
|
margin-bottom: 10px;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
2021-05-14 18:28:33 +02:00
|
|
|
th,
|
|
|
|
td {
|
|
|
|
text-align: center;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
padding: 10px;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
2021-05-31 06:55:56 +02:00
|
|
|
td.table_qr svg {
|
|
|
|
max-height: 40px;
|
|
|
|
}
|
|
|
|
|
2021-05-04 11:29:36 +02:00
|
|
|
table tr:nth-child(even) {
|
2021-05-14 18:28:33 +02:00
|
|
|
background-color: #eee;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
2021-05-14 18:28:33 +02:00
|
|
|
|
2021-05-04 11:29:36 +02:00
|
|
|
table tr:nth-child(odd) {
|
2021-05-14 18:28:33 +02:00
|
|
|
background-color: #fff;
|
|
|
|
}
|
2021-05-04 11:29:36 +02:00
|
|
|
|
2021-06-14 20:59:01 +02:00
|
|
|
table tr:nth-child(even).admin {
|
|
|
|
background-color: rgb(240, 142, 142);
|
|
|
|
}
|
|
|
|
|
|
|
|
table tr:nth-child(odd).admin {
|
|
|
|
background-color: rgb(255, 204, 169);
|
|
|
|
}
|
|
|
|
|
2021-05-04 11:29:36 +02:00
|
|
|
table tr.filters input {
|
2021-05-14 18:28:33 +02:00
|
|
|
background-image: url("/static/search.svg");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: contain;
|
|
|
|
width: 100%;
|
|
|
|
padding: 5px;
|
|
|
|
height: 20px;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 0;
|
|
|
|
border: none;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
table tr.filters td {
|
2021-05-14 18:28:33 +02:00
|
|
|
padding: 5px;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
2021-05-14 18:28:33 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: stretch;
|
|
|
|
width: 100%;
|
|
|
|
height: 60px;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
2021-05-14 18:28:33 +02:00
|
|
|
|
2021-05-04 11:29:36 +02:00
|
|
|
nav ol {
|
2021-05-14 18:28:33 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 40px;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
2021-05-14 18:28:33 +02:00
|
|
|
nav li a,
|
|
|
|
nav li div.willkommen {
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
padding: 14px 16px;
|
|
|
|
text-decoration: none;
|
|
|
|
border-radius: 0 0 10px 10px;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
nav li a {
|
2021-05-14 18:28:33 +02:00
|
|
|
background: rgb(2, 0, 36);
|
|
|
|
background: linear-gradient(180deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgb(0, 145, 174) 100%);
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
nav li {
|
2021-05-14 18:28:33 +02:00
|
|
|
float: left;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
2021-05-14 18:28:33 +02:00
|
|
|
|
2021-05-04 11:29:36 +02:00
|
|
|
nav li a:hover {
|
2021-05-14 18:28:33 +02:00
|
|
|
background: rgb(2, 0, 36);
|
|
|
|
background: linear-gradient(180deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgb(60, 170, 255) 100%);
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
nav li {
|
2021-05-14 18:28:33 +02:00
|
|
|
margin: 5px;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
2021-05-14 18:28:33 +02:00
|
|
|
nav li div {
|
|
|
|
background-color: burlywood;
|
|
|
|
text-align: center;
|
|
|
|
padding: 14px 16px;
|
|
|
|
border-radius: 0 0 10px 10px;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
2021-05-14 18:28:33 +02:00
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div.actions {
|
2021-05-14 18:28:33 +02:00
|
|
|
margin-left: 5px;
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
padding: 10px;
|
|
|
|
color: #333;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: center;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div.danger {
|
2021-05-14 18:28:33 +02:00
|
|
|
background-color: rgb(235, 127, 77);
|
|
|
|
font-size: smaller;
|
|
|
|
border: 2px solid crimson;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div.danger h3 {
|
2021-05-14 18:28:33 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.button,
|
|
|
|
div.actions input {
|
|
|
|
width: 250px;
|
|
|
|
display: block;
|
|
|
|
padding: 15px;
|
|
|
|
margin-left: 15px;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 1px;
|
|
|
|
border: 1px solid rgb(90, 90, 90);
|
|
|
|
font-family: inherit;
|
|
|
|
background-color: #eae9ea;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.editdialog {
|
|
|
|
background-color: aliceblue;
|
|
|
|
border: 5px solid rgb(90, 90, 90);
|
2021-05-15 19:20:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div.closebutton a {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
font-size: xx-large;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.message {
|
|
|
|
background-color: aliceblue;
|
|
|
|
border: 5px solid rgb(90, 90, 90);
|
|
|
|
height: auto;
|
2021-05-20 11:40:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
cursor: pointer
|
|
|
|
}
|
|
|
|
|
|
|
|
img.trashicon {
|
|
|
|
width: 0.5cm;
|
2021-07-17 15:03:44 +02:00
|
|
|
user-select: none;
|
2021-06-07 14:00:59 +02:00
|
|
|
}
|
|
|
|
|
2021-06-13 12:58:55 +02:00
|
|
|
.qrdownload {
|
2021-06-07 14:00:59 +02:00
|
|
|
display: flex;
|
2021-06-17 10:13:25 +02:00
|
|
|
align-items: center;
|
|
|
|
justify-content: space-evenly;
|
2021-06-13 12:58:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.languageselector a {
|
|
|
|
height: 70%;
|
|
|
|
padding: 5px;
|
|
|
|
margin: 3px;
|
|
|
|
border-radius: 50%;
|
2021-07-17 14:26:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a.loadmore {
|
|
|
|
display: flex;
|
|
|
|
color: darkgray;
|
|
|
|
margin: auto;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
align-items: center;
|
|
|
|
border: none;
|
|
|
|
border-radius: 15px;
|
2021-05-04 11:29:36 +02:00
|
|
|
}
|