72 lines
1005 B
CSS
72 lines
1005 B
CSS
|
|
.baustein-list {
|
||
|
|
padding-left: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.baustein-item {
|
||
|
|
margin-bottom: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.baustein-row {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.baustein-name {
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
|
||
|
|
.baustein-buttons {
|
||
|
|
display: flex;
|
||
|
|
gap: 0.5rem;
|
||
|
|
padding-right: 80rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-control {
|
||
|
|
border: 1px solid #ccc;
|
||
|
|
background-color: #f9f9f9;
|
||
|
|
cursor: pointer;
|
||
|
|
padding: 0.25rem 0.5rem;
|
||
|
|
border-radius: 4px;
|
||
|
|
transition: background-color 0.2s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-control:hover:not(:disabled) {
|
||
|
|
background-color: #eee;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-control:disabled {
|
||
|
|
opacity: 0.5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.baustein-name.notIncluded {
|
||
|
|
color: darkgray;
|
||
|
|
font-style: italic;
|
||
|
|
}
|
||
|
|
|
||
|
|
table {
|
||
|
|
table-layout: auto;
|
||
|
|
border-collapse: collapse;
|
||
|
|
width: 500px;
|
||
|
|
margin-right: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
td, th {
|
||
|
|
border: 1px solid #ddd;
|
||
|
|
padding: 8px;
|
||
|
|
font-size: 1rem;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
tr:hover {background-color: #ddd;}
|
||
|
|
|
||
|
|
th {
|
||
|
|
padding-top: 12px;
|
||
|
|
padding-bottom: 12px;
|
||
|
|
text-align: left;
|
||
|
|
background-color: #2244AA;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
|