45 lines
552 B
CSS
45 lines
552 B
CSS
.custom-file-control:lang(de)::after {
|
|
content: "Datei wählen...";
|
|
}
|
|
|
|
.custom-file-control:lang(de)::before {
|
|
content: "Durchsuchen";
|
|
}
|
|
|
|
#drop {
|
|
padding: 3em;
|
|
outline: 2px dashed black;
|
|
outline-offset: -10px;
|
|
}
|
|
|
|
.edit {
|
|
display: none;
|
|
}
|
|
|
|
footer {
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
.click-me {
|
|
cursor: pointer;
|
|
}
|
|
|
|
#body {
|
|
display: flex;
|
|
min-height: calc(100vh - 64px);
|
|
flex-direction: column;
|
|
padding-top: 56px;
|
|
}
|
|
|
|
main {
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.deleteMe {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.modal {
|
|
max-height: 70%;
|
|
}
|