Vorlage:Button/styles.css: Unterschied zwischen den Versionen
Aus Ardapedia
Alboin (Diskussion | Beiträge) KKeine Bearbeitungszusammenfassung |
Alboin (Diskussion | Beiträge) K tg zu ardapedia |
||
| (11 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
/* Important is needed because of weird external link rules */ | /* Important is needed because of weird external link rules */ | ||
. | .ardapedia-button > a { | ||
border: 1px solid transparent; | border: 1px solid transparent; | ||
border-radius: 4px; | border-radius: 4px; | ||
| Zeile 16: | Zeile 16: | ||
} | } | ||
. | .ardapedia-button > a:hover { | ||
background-color: | background-color: rgba(0, 0, 0, 0.07) !important; | ||
} | } | ||
. | .ardapedia-button > a:active { | ||
background-color: | background-color: rgba(0, 0, 0, 0.09) !important; | ||
} | } | ||
. | .ardapedia-button.ardapedia-button--framed > a { | ||
border-color: rgba(0, 0, 0, 0.11) !important; | border-color: rgba(0, 0, 0, 0.11) !important; | ||
} | } | ||
. | .ardapedia-button.ardapedia-button--icon > a { | ||
padding-left: 0.5rem !important; | padding-left: 0.5rem !important; | ||
padding-right: 0.5rem !important; | padding-right: 0.5rem !important; | ||
| Zeile 35: | Zeile 35: | ||
} | } | ||
. | .ardapedia-button.ardapedia-button--primary > a { | ||
color: #fff !important; | color: #fff !important; | ||
background-color: # | background-color: #8E4A25 !important; | ||
} | } | ||
. | .ardapedia-button.ardapedia-button--primary > a:hover { | ||
background-color: # | background-color: #8E4A25 !important; | ||
} | } | ||
. | .ardapedia-button.ardapedia-button--primary > a:active { | ||
background-color: # | background-color: #8E4A25 !important; | ||
} | } | ||
. | .ardapedia-button.ardapedia-button--secondary > a { | ||
border-color: # | border-color: #8E4A25 !important; | ||
color: # | color: #8E4A25 !important; | ||
} | } | ||
. | .ardapedia-button.ardapedia-button--secondary > a:hover { | ||
border-color: # | border-color: #8E4A25 !important; | ||
background-color: # | background-color: #8E4A25 !important; | ||
color: #fff !important; | color: #fff !important; | ||
} | } | ||
. | .ardapedia-button.ardapedia-button--secondary > a:active { | ||
border-color: # | border-color: #8E4A25 !important; | ||
background-color: # | background-color: #8E4A25 !important; | ||
color: #fff !important; | color: #fff !important; | ||
} | } | ||
Aktuelle Version vom 6. Dezember 2025, 15:13 Uhr
/* Important is needed because of weird external link rules */
.ardapedia-button > a {
border: 1px solid transparent;
border-radius: 4px;
height: 36px;
padding: 0 1rem !important;
color: #1a1f15 !important;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
line-height: 1;
font-size: 0.875rem;
font-weight: 500;
text-decoration: none;
}
.ardapedia-button > a:hover {
background-color: rgba(0, 0, 0, 0.07) !important;
}
.ardapedia-button > a:active {
background-color: rgba(0, 0, 0, 0.09) !important;
}
.ardapedia-button.ardapedia-button--framed > a {
border-color: rgba(0, 0, 0, 0.11) !important;
}
.ardapedia-button.ardapedia-button--icon > a {
padding-left: 0.5rem !important;
padding-right: 0.5rem !important;
font-size: 0;
gap: 0;
}
.ardapedia-button.ardapedia-button--primary > a {
color: #fff !important;
background-color: #8E4A25 !important;
}
.ardapedia-button.ardapedia-button--primary > a:hover {
background-color: #8E4A25 !important;
}
.ardapedia-button.ardapedia-button--primary > a:active {
background-color: #8E4A25 !important;
}
.ardapedia-button.ardapedia-button--secondary > a {
border-color: #8E4A25 !important;
color: #8E4A25 !important;
}
.ardapedia-button.ardapedia-button--secondary > a:hover {
border-color: #8E4A25 !important;
background-color: #8E4A25 !important;
color: #fff !important;
}
.ardapedia-button.ardapedia-button--secondary > a:active {
border-color: #8E4A25 !important;
background-color: #8E4A25 !important;
color: #fff !important;
}
