Updated file input, Updated heading spacing globally, Fixed lscom downloads, Updated contact info

Update .gitignore, home.yml, and 13 more files...
This commit is contained in:
2025-09-13 16:19:20 +02:00
parent ed2e56cf96
commit 2eb9d5c7a5
15 changed files with 343 additions and 217 deletions

View File

@@ -1,23 +1,43 @@
/* File inputs with drop thingy */
.np-file-input-drop-container {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
}
.np-file-drop-text {
input.np-file-input-drop {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
input[type=file].np-file-input-drop {
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0;
cursor: pointer;
}
.np-file-drop-text {
text-align: center;
pointer-events: none;
}
.np-file-drop-buttons {
display: flex;
gap: 10px;
z-index: 10;
}
/* Top margin trimmer for heading renderer */
.t-v-center {
vertical-align: middle;
}
/* Copy of the m*-xs classes */
/* Accommodates the paragraph renderer that has a hard-coded .mt-xs */
.content-spacer {
@@ -37,3 +57,7 @@ input[type=file].np-file-input-drop {
.hide-if-first:first-child {
display: none;
}
.mt-0-if-first:first-child {
margin-top: 0;
}