Template:Button/style.css

Template page
Revision as of 12:10, 21 September 2023 by CriticalResist (talk | contribs) (Created page with "→‎Button.css: .tpl-button { display: inline-block; padding: 10px 20px; text-align: center; text-decoration: none; border-radius: 5px; font-weight: bold; cursor: pointer; } .tpl-button-red { background-color: #ff0000; color: #ffffff; } .tpl-button-blue { background-color: #0000ff; color: #ffffff; } .tpl-button-green { background-color: #00ff00; color: #000000; } .tpl-button-yellow { background-color: #ffff00;...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/* Button.css */
.tpl-button {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.tpl-button-red {
    background-color: #ff0000;
    color: #ffffff;
}

.tpl-button-blue {
    background-color: #0000ff;
    color: #ffffff;
}

.tpl-button-green {
    background-color: #00ff00;
    color: #000000;
}

.tpl-button-yellow {
    background-color: #ffff00;
    color: #000000;
}