Pslink/pslink/static/admin.css

211 lines
3.3 KiB
CSS
Raw Normal View History

body {
2021-05-14 18:28:33 +02:00
margin: 0;
padding: 0;
}
form {
2021-05-14 18:28:33 +02:00
width: 100%;
}
2021-05-14 18:28:33 +02:00
.center {
2021-05-14 18:28:33 +02:00
position: absolute;
width: 600px;
max-width: 100%;
height: 400px;
max-height: 100%;
top: 50%;
left: 50%;
margin-left: -300px;
margin-top: -200px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px;
color: #333;
}
2021-05-14 18:28:33 +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-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;
}
table {
2021-05-14 18:28:33 +02:00
border-collapse: collapse;
width: 100%;
margin-bottom: 10px;
}
2021-05-14 18:28:33 +02:00
th,
td {
text-align: center;
border: 1px solid #ccc;
padding: 10px;
}
2021-05-31 06:55:56 +02:00
td.table_qr svg {
max-height: 40px;
}
table tr:nth-child(even) {
2021-05-14 18:28:33 +02:00
background-color: #eee;
}
2021-05-14 18:28:33 +02:00
table tr:nth-child(odd) {
2021-05-14 18:28:33 +02:00
background-color: #fff;
}
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;
}
table tr.filters td {
2021-05-14 18:28:33 +02:00
padding: 5px;
}
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-14 18:28:33 +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-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;
}
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%);
}
nav li {
2021-05-14 18:28:33 +02:00
float: left;
}
2021-05-14 18:28:33 +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%);
}
nav li {
2021-05-14 18:28:33 +02:00
margin: 5px;
}
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;
}
svg {
2021-05-14 18:28:33 +02:00
width: 100px;
height: 100px;
}
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;
}
div.danger {
2021-05-14 18:28:33 +02:00
background-color: rgb(235, 127, 77);
font-size: smaller;
border: 2px solid crimson;
}
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;
}
a {
cursor: pointer
}
img.trashicon {
width: 0.5cm;
}