fixed tenants and eventpurchaseresource, changed lightbox in gallery

This commit is contained in:
2025-09-18 15:27:33 +02:00
parent 60f5e46ea9
commit ef6203c603
15 changed files with 440 additions and 118 deletions

View File

@@ -0,0 +1,44 @@
<svg width="800" height="600" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="light" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#ffffff" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#ffffff" stop-opacity="0"/>
</radialGradient>
</defs>
<rect width="100%" height="100%" fill="url(#gradient)"/>
<g opacity="0.3">
<!-- Soft gradient background -->
<rect width="100%" height="100%" fill="url(#bgGradient)"/>
<!-- Decorative lights -->
<circle cx="100" cy="100" r="3" fill="#ffd700" opacity="0.7">
<animate attributeName="opacity" values="0.5;1;0.5" dur="3s" repeatCount="indefinite"/>
</circle>
<circle cx="200" cy="150" r="2" fill="#ff69b4" opacity="0.6">
<animate attributeName="opacity" values="0.3;0.8;0.3" dur="4s" repeatCount="indefinite"/>
</circle>
<circle cx="300" cy="80" r="4" fill="#87cefa" opacity="0.5">
<animate attributeName="opacity" values="0.4;0.9;0.4" dur="5s" repeatCount="indefinite"/>
</circle>
<circle cx="400" cy="120" r="2.5" fill="#98fb98" opacity="0.7">
<animate attributeName="opacity" values="0.6;1;0.6" dur="3.5s" repeatCount="indefinite"/>
</circle>
<circle cx="500" cy="90" r="3.5" fill="#dda0dd" opacity="0.6">
<animate attributeName="opacity" values="0.4;0.9;0.4" dur="4.5s" repeatCount="indefinite"/>
</circle>
<circle cx="600" cy="140" r="2" fill="#f0e68c" opacity="0.8">
<animate attributeName="opacity" values="0.5;1;0.5" dur="2.5s" repeatCount="indefinite"/>
</circle>
<circle cx="700" cy="110" r="3" fill="#ff6347" opacity="0.7">
<animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/>
</circle>
</g>
<defs>
<linearGradient id="bgGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#fff0f5" />
<stop offset="50%" stop-color="#ffe4e1" />
<stop offset="100%" stop-color="#e6e6fa" />
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB