Template:Button/styles.css: Difference between revisions
Template page
More actions
// via Wikitext Extension for VSCode Tag: Manual revert |
No edit summary |
||
| Line 2: | Line 2: | ||
padding: 0; | padding: 0; | ||
margin: 0; | margin: 0; | ||
border-radius: var( --border-radius | border-radius: var( --border-radius-medium ); | ||
} | } | ||
| Line 12: | Line 12: | ||
.teriock-button { | .teriock-button { | ||
border-radius: var( --border-radius | border-radius: var( --border-radius-medium ); | ||
padding: 0.5em; | padding: 0.5em; | ||
padding-left: 1em; | padding-left: 1em; | ||
Latest revision as of 21:06, 5 August 2026
.teriock-button-container {
padding: 0;
margin: 0;
border-radius: var( --border-radius-medium );
}
.teriock-button-container * {
user-select: none;
text-decoration: none;
color: var( --color-emphasized );
}
.teriock-button {
border-radius: var( --border-radius-medium );
padding: 0.5em;
padding-left: 1em;
padding-right: 1em;
transition: 100ms;
background-color: var( --color-surface-1 );
border: 1px solid var( --border-color-base );
}
.teriock-button:hover {
box-shadow: var( --box-shadow-card );
}
.teriock-button:active {
background-color: var( --color-surface-2 );
}