initial commit

This commit is contained in:
2025-03-31 14:55:32 +02:00
commit 9decf702e3
27 changed files with 3235 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@@ -0,0 +1,3 @@
SPDX-FileCopyrightText: 2025 Max Mehl <https://mehl.mx>
SPDX-License-Identifier: CC0-1.0

View File

@@ -0,0 +1,9 @@
// SPDX-FileCopyrightText: 2025 Max Mehl <https://mehl.mx>
//
// SPDX-License-Identifier: GPL-3.0-only
function copyToClipboard(text, button) {
navigator.clipboard.writeText(text).then(() => {
button.classList.add("secondary");
});
}

5
home_stream/static/pico.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,18 @@
/*
* SPDX-FileCopyrightText: 2025 Max Mehl <https://mehl.mx>
*
* SPDX-License-Identifier: GPL-3.0-only
*/
:root {
--pico-form-element-spacing-vertical: 0.2rem;
--pico-form-element-spacing-horizontal: 0.2rem;
}
ul.files li {
padding: 0.2rem 0;
}
audio, video {
width: 800px;
}