User:Noeth: Difference between revisions

From The Seven Sages of Rome
No edit summary
Tag: Reverted
Replaced content with "{{#ask:Category:VersionHas Siglum::+}}"
Tag: Replaced
 
(250 intermediate revisions by the same user not shown)
Line 1: Line 1:
<html>
{{#ask:[[Category:Version]][[Has Siglum::+]]}}
<style>
.bento-item {
            height: 200px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            transition: transform 0.3s ease;
        }
 
        .bento-item:hover {
            transform: scale(1.05);
        }
 
        .bento-tall {
            height: 410px;
        }
</style>
<div class="container my-5">
    <h1 class="text-center mb-4">Bento Grid Layout</h1>
    <div class="row g-4">
        <!-- Large item -->
        <div class="col-md-8">
            <div class="bento-item bento-tall bg-primary">
                Large Item
            </div>
        </div>
        <!-- Two small items -->
        <div class="col-md-4">
            <div class="row g-4">
                <div class="col-12">
                    <div class="bento-item bg-success">
                        Small Item 1
                    </div>
                </div>
                <div class="col-12">
                    <div class="bento-item bg-danger">
                        Small Item 2
                    </div>
                </div>
            </div>
        </div>
        <!-- Medium item -->
        <div class="col-md-4">
            <div class="bento-item bg-warning text-dark">
                Medium Item 1
            </div>
        </div>
        <!-- Medium item -->
        <div class="col-md-4">
            <div class="bento-item bg-info text-dark">
                Medium Item 2
            </div>
        </div>
        <!-- Medium item -->
        <div class="col-md-4">
            <div class="bento-item bg-secondary">
                Medium Item 3
            </div>
        </div>
    </div>
</div>
</html>

Latest revision as of 11:27, 12 February 2026