Common.css: Difference between revisions
From Illustrations in German Translations of Mark Twain's Works
No edit summary |
No edit summary |
||
| Line 76: | Line 76: | ||
.ausklapp-button { | .ausklapp-button { | ||
white-space: nowrap; | white-space: nowrap; | ||
} | |||
.ausklapp-button { | |||
display: flex; | |||
align-items: center; | |||
justify-content: space-between; | |||
gap: 0.5em; | |||
} | |||
.ausklapp-button .link-icon { | |||
text-decoration: none; | |||
font-size: 0.9em; | |||
margin-left: auto; | |||
color: #0059b3; | |||
} | } | ||
Revision as of 14:34, 8 July 2025
/* CSS placed here will be applied to all skins */
.ausklapp-menublock {
border: 1px solid #ccc;
padding: 1em;
background-color: #F4F4F4;
max-width: 500px;
border-radius: 6px;
}
.ausklapp-button {
display: block;
width: 100%;
text-align: left;
margin: 0.5em 0;
padding: 0.5em;
background-color: #FFF2E6;
color: white;
border: none;
border-radius: 4px;
font-weight: bold;
cursor: pointer;
}
/*.ausklapp-button:hover {
background-color: #005a9e;
}
*/
.ausklapp-button.sub {
background-color: #FFF2E6;
margin-left: 1em;
font-size: 90%;
}
.ausklapp-inhalt {
display: none;
margin-left: 1em;
}
.ausklapp-inhalt.sub {
margin-left: 2em;
}
.ausklapp-inhalt a {
display: block;
margin: 0.3em 0;
text-decoration: none;
color: #333333;
}
.ausklapp-inhalt a:hover {
text-decoration: underline;
}
/* Oberste Ebene (Hauptbuttons) */
.ausklapp-button {
color: #333333; /* Dunkelblau */
}
/* Unterpunkte (zweite Ebene) */
.ausklapp-button.sub {
color: #333333; /* etwas heller */
}
/* Links innerhalb der Unter-Unterpunkte */
.ausklapp-inhalt.sub a,
.link-entry {
color: #333333;
}
/* Linkpfeil-Symbole */
.link-icon {
color: #333333;
}
.ausklapp-button {
white-space: nowrap;
}
.ausklapp-button {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.5em;
}
.ausklapp-button .link-icon {
text-decoration: none;
font-size: 0.9em;
margin-left: auto;
color: #0059b3;
}