74 lines
1.4 KiB
CSS
74 lines
1.4 KiB
CSS
.beruf-container {
|
|
width: 400px;
|
|
max-width: 100%;
|
|
margin: 0 25px 0px 0;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
.table {
|
|
width: 80%;
|
|
}
|
|
.tnauswahl {
|
|
width: 80%;
|
|
}
|
|
|
|
|
|
.listen-container {
|
|
border: solid 1px rgb(255, 255, 255);
|
|
min-height: 60px;
|
|
background: white;
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
display: block;
|
|
}
|
|
|
|
.daten-box {
|
|
padding: 0px 10px;
|
|
border-bottom: solid 1px rgb(176, 53, 53);
|
|
color: rgba(0, 0, 0, 0.87);
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
cursor: move;
|
|
background: white;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.cdk-drag-preview {
|
|
box-sizing: border-box;
|
|
border-radius: 4px;
|
|
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
|
|
0 8px 10px 1px rgba(0, 0, 0, 0.14),
|
|
0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.cdk-drag-placeholder {
|
|
opacity: 0;
|
|
}
|
|
|
|
.cdk-drag-animating {
|
|
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.daten-box:last-child {
|
|
border: none;
|
|
}
|
|
|
|
.listen-container.cdk-drop-list-dragging .daten-box:not(.cdk-drag-placeholder) {
|
|
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.card {
|
|
|
|
}
|
|
.card-body {
|
|
|
|
border-bottom: solid 1px rgb(176, 53, 53);
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
|
|
|