64 lines
No EOL
1 KiB
CSS
64 lines
No EOL
1 KiB
CSS
body {
|
|
background-color: #D3D3D3;
|
|
}
|
|
|
|
.box {
|
|
padding: 10px 10px 0 10px;
|
|
margin-bottom: 10px;
|
|
background-color: #FFFFFF;
|
|
border: #556B2F 1px solid;
|
|
-webkit-border-radius: 10px;
|
|
-moz-border-radius: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.box h2:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.meta-data .description {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.meta-data .creationDate {
|
|
color: grey;
|
|
}
|
|
|
|
.share-link .link {
|
|
color: #556B2F;
|
|
}
|
|
|
|
.share-link .notice {
|
|
font-size: 90%;
|
|
color: grey;
|
|
}
|
|
|
|
.table-scroll {
|
|
/* übernommen von .table-responsive von bootstrap, aber grundsätzlich */
|
|
width: 100%;
|
|
margin-bottom: 15px;
|
|
overflow-y: hidden;
|
|
overflow-x: scroll;
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
border: 1px solid #ddd;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
.evaluation-header {
|
|
font-weight: bold;
|
|
}
|
|
|
|
tbody td .yes,
|
|
tfoot td option[value="yes"] {
|
|
color: green;
|
|
}
|
|
|
|
tbody td .no,
|
|
tfoot td option[value="no"]{
|
|
color: red;
|
|
}
|
|
|
|
tbody td .maybe,
|
|
tfoot td option[value="maybe"] {
|
|
color: orange;
|
|
} |