Template:Button.css: Difference between revisions
Appearance
Dascent-wiki (talk | contribs) Created page with ".button { display: inline-block; padding: 8px 12px; background-color: #007bff; color: #fff; text-decoration: none; border-radius: 4px; border: 1px solid #007bff; } .button:hover { background-color: #0056b3; border-color: #0056b3; }" |
Dascent-wiki (talk | contribs) No edit summary |
||
| (8 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
.button { | /** CSS Buttons **/ | ||
.button a{display: inline-block;padding: 8px 12px;background-color: #007bff;color: #fff;text-decoration: none;border-radius: 4px;border: 1px solid #007bff;} | |||
.button a:hover{background-color: #0056b3;border-color: #0056b3;} | |||
} | |||
.button:hover { | |||
} | |||
Latest revision as of 16:10, 10 August 2025
/** CSS Buttons **/
.button a{display: inline-block;padding: 8px 12px;background-color: #007bff;color: #fff;text-decoration: none;border-radius: 4px;border: 1px solid #007bff;}
.button a:hover{background-color: #0056b3;border-color: #0056b3;}