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

Template:Button/styles.css: Difference between revisions

Template page
Content deleted Content added
Gpe changed the content model of the page Template:Button/styles.css from "wikitext" to "Sanitized CSS"
Tag: content model change
// via Wikitext Extension for VSCode
Line 2: Line 2:
border-radius: var( --border-radius--medium );
border-radius: var( --border-radius--medium );
padding: 0.5em;
padding: 0.5em;
transition: 100ms;
background-color: var( --color-surface-1 );
background-color: var( --color-surface-1 );
border: 1px solid var( --border-color-base );
user-select: none;
}
}



Revision as of 21:13, 22 March 2025

.teriock-button {
    border-radius: var( --border-radius--medium );
    padding: 0.5em;
    transition: 100ms;
    background-color: var( --color-surface-1 );
    border: 1px solid var( --border-color-base );
    user-select: none;
}

.teriock-button:hover {
    box-shadow: var( --box-shadow-card );
}

.teriock-button:active {
    background-color: var( --color-surface-2 );
}