roundabout,
created on Friday, 6 September 2024, 17:06:32 (1725642392),
received on Friday, 6 September 2024, 19:35:57 (1725651357)
Author identity: vlad <vlad.muntoiu@gmail.com>
ed9471d5025537d8d4eade350592e7880a12d96b
static/style.css
@@ -314,3 +314,17 @@ small {
grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
gap: 16px;
}
.thumbnail-list > li {
transition: transform 0.25s cubic-bezier(0.61, 1, 0.88, 1),
box-shadow 0.25s cubic-bezier(0.61, 1, 0.88, 1);
box-shadow: var(--shadow-card);
background: var(--color-card);
}
.thumbnail-list > li:hover {
position: relative;
transform: scale(1.5);
z-index: 1;
box-shadow: var(--shadow-card), 0 4px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
}
templates/object.html
@@ -11,7 +11,9 @@
<li>
<a href="/picture/{{ resource.id }}">
<img src="/raw/picture/{{ resource.id }}" alt="{{ resource.title }}">
{{ resource.title }}
<div class="list-detail">
{{ resource.title }}
</div>
</a>
</li>
{% endfor %}