MediaWiki:Common.css: Unterschied zwischen den Versionen
Tt (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Tt (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| (2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 1.706: | Zeile 1.706: | ||
display: flex; | display: flex; | ||
justify-content: stretch; | justify-content: stretch; | ||
margin-bottom: 4em; | |||
} | } | ||
.streckenverlauf { | .streckenverlauf { | ||
| Zeile 1.738: | Zeile 1.739: | ||
position: relative; | position: relative; | ||
width: 1em; | width: 1em; | ||
} | } | ||
.perlenschnur .line-item { | .perlenschnur .line-item { | ||
| Zeile 1.809: | Zeile 1.810: | ||
table.table-zielfilm-ziel a:hover { | table.table-zielfilm-ziel a:hover { | ||
text-decoration:none; | text-decoration:none; | ||
} | |||
@media only screen and (max-width: 480px) { | |||
.streckenverlauf { | |||
width: 100%; | |||
} | |||
.streckenverlauf-browser { | |||
width: 100%; | |||
overflow-x: scroll; | |||
-webkit-overflow-scrolling: touch; | |||
} | |||
} | |||
.kennzeichen { | |||
--kennzeichen-height: 110px; | |||
--kennzeichen-width: 520px; | |||
--balken-width: 60px; | |||
position: relative; | |||
display: inline-block; | |||
height: var(--kennzeichen-height); | |||
width: var(--kennzeichen-width); | |||
background: white; | |||
border: 2px solid black; | |||
border-radius: 8px; | |||
font-family: Arial, sans-serif; | |||
font-weight: 700; | |||
font-size: 60px; | |||
color: black; | |||
line-height: var(--kennzeichen-height); | |||
padding-left: calc(var(--balken-width) + 12px); | |||
user-select: none; | |||
box-sizing: border-box; | |||
white-space: nowrap; | |||
text-align: center; | |||
} | |||
/* Blauer Balken links mit D */ | |||
.kennzeichen::before { | |||
content: "D"; | |||
position: absolute; | |||
top: 0; | |||
left: 0; | |||
width: var(--balken-width); | |||
height: 100%; | |||
background: #003399; | |||
color: white; | |||
font-weight: 700; | |||
font-size: 48px; | |||
line-height: var(--kennzeichen-height); | |||
text-align: center; | |||
border-top-left-radius: 6px; | |||
border-bottom-left-radius: 6px; | |||
user-select: none; | |||
font-family: Arial, sans-serif; | |||
letter-spacing: 1px; | |||
} | } | ||