Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:LinkTile/styles.css

Template page
Revision as of 15:28, 11 March 2026 by JacksonTheMaster (talk | contribs) (Created page with "Template:Small-portal-tile/styles.css: .small-portal-tile { background: var(--color-surface-2); border: 3px solid var(--accent-color-base); border-radius: var(--border-radius-medium); overflow: hidden; transition: all 0.15s ease; text-align: center; height: 100%; makes grid rows even: } .small-portal-tile:hover { transform: translateY(-3px); box-shadow: var(--box-shadow-small); } .small-portal-tile a { display: block...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/* Template:Small-portal-tile/styles.css */



.small-portal-tile {
    background: var(--color-surface-2);
    border: 3px solid var(--accent-color-base);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    transition: all 0.15s ease;
    text-align: center;
    height: 100%; /* makes grid rows even */
}

.small-portal-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-small);
}

.small-portal-tile a {
    display: block;
    padding: var(--space-sm) var(--space-xs);
    text-decoration: none;
    color: inherit;
    height: 100%;
}