This commit is contained in:
Julieñ
2024-05-21 09:28:29 +02:00
parent 3062e2f85a
commit 16583abcb4
1716 changed files with 1435 additions and 1 deletions

28
assets/css/styles.css Normal file
View File

@@ -0,0 +1,28 @@
html,
body {
height: 100%;
margin: 0;
padding: 0;
background-color: #101010;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 14px;
}
.logo {
position: fixed;
top: 1rem;
left: 1rem;
z-index: 2;
color: #fff;
text-shadow: 2px 2px;
}
.gd-modal-loaded .logo {
display: none;
}
.logo:hover {
cursor: pointer;
color: #ffe0c9;
}

BIN
assets/images/camera.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

10
assets/jsconfig.json Normal file
View File

@@ -0,0 +1,10 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": [
"../themes/gallerydeluxe/assets/*"
]
}
}
}