Styling of home

This commit is contained in:
Sebastian Seedorf
2022-08-22 17:04:39 +02:00
parent 537a18fb88
commit d964748a66
55 changed files with 1791 additions and 341 deletions

View File

@@ -0,0 +1,30 @@
.shareGrid {
display: grid;
gap: 3em;
grid-template-columns: repeat(auto-fit, minmax(30ch, 1fr));
}
.downloadBtn {
width: 100%;
}
.uploadInput {
display: inline-block;
width: 100%;
padding: 2em 0.5em;
border: 1px dashed var(--md-sys-color-on-secondary-container);
margin: 1em 0;
background-color: var(--md-sys-color-secondary-container);
border-radius: 4px;
color: var(--md-sys-color-on-secondary-container);
text-align: center;
}
.shareInput {
width: 100%;
}
.uploadInput > input {
width: 0;
visibility: hidden;
}