More actions
Content deleted Content added
// via Wikitext Extension for VSCode |
// via Wikitext Extension for VSCode Tag: Manual revert |
||
(13 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
.teriock-button-container { |
|||
padding: 0; |
|||
margin: 0; |
|||
border-radius: var( --border-radius--medium ); |
|||
} |
|||
.teriock-button-container * { |
|||
⚫ | |||
text-decoration: none; |
|||
⚫ | |||
} |
|||
.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; |
||
Line 7: | Line 19: | ||
background-color: var( --color-surface-1 ); |
background-color: var( --color-surface-1 ); |
||
border: 1px solid var( --border-color-base ); |
border: 1px solid var( --border-color-base ); |
||
⚫ | |||
⚫ | |||
} |
} |
||
Latest revision as of 21:32, 22 March 2025
.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 );
}