Pslink/static/admin.css

99 lines
1.4 KiB
CSS
Raw Normal View History

2021-02-04 15:07:55 +01:00
form {
width: 100%;
}
.center {
width: 800px;
height: 600px;
margin-left: -400px;
margin-top: -300px;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: center;
border: 1px solid #ccc;
padding: 10px;
}
table tr:nth-child(even) {
background-color: #eee;
}
table tr:nth-child(odd) {
background-color: #fff;
}
2021-02-04 15:07:55 +01:00
nav ol {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
width:100%;
}
nav li a, nav li div.willkommen {
2021-02-04 15:07:55 +01:00
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav li {
float: left;
}
nav li a:hover {
background-color: #111;
}
nav li {
border-right: 1px solid #bbb;
}
nav li:last-child {
border-right: none;
}
svg {
width: 100px;
2021-02-08 20:44:32 +01:00
height: 100px;
2021-02-07 20:42:00 +01:00
}
2021-02-08 12:39:28 +01:00
div.actions {
margin-left:5px;
2021-02-08 12:39:28 +01:00
display: flex;
width:100%;
2021-02-08 12:39:28 +01:00
align-items: center;
padding: 10px;
2021-02-08 12:39:28 +01:00
color: #333;
flex-flow: row wrap;
justify-content: center;
}
div.danger {
background-color: rgb(235, 127, 77);
font-size: smaller;
border: 2px solid crimson;
}
div.danger h3 {
width:100%;
2021-02-08 12:39:28 +01:00
}
a.button, div.actions input {
2021-02-14 22:28:34 +01:00
width: 250px;
2021-02-08 12:39:28 +01:00
display:block;
padding: 15px;
2021-02-14 22:28:34 +01:00
margin-left: 15px;
2021-02-08 12:39:28 +01:00
text-align: center;
border-radius: 1px;
border: 1px solid rgb(90, 90, 90);
font-family: inherit;
background-color: #eae9ea;
2021-02-04 15:07:55 +01:00
}