Files
homepage/src/lib/css/christ.css
Alexander Bocken d4564ca973
All checks were successful
CI / update (push) Successful in 9s
scope ul font-size rule to prevent global CSS pollution
The global 'ul' selector was affecting all unordered lists across the app after visiting /glaube/rosenkranz. This caused layout issues with action buttons on recipe pages where the internal symbols would shift to the top instead of being centered.

Fixed by scoping the rule to only apply to ul elements within .gebet containers.
2025-12-27 13:31:40 +01:00

34 lines
403 B
CSS

div.gebet{
text-align: center;
font-size: 1.25em;
}
.gebet ul {
font-size: 120%;
}
.gebet v{
margin:0;
}
.gebet v:lang(la) {
color: var(--nord6);
}
.gebet.bilingue v:lang(de){
color: grey;
}
i{
font-style: normal;
color: var(--nord11);
font-weight: 900;
font-family: 'crosses', sans-serif;
}
i.txt {
font-size: 70%;
font-weight: normal;
}
v{
display: block;
}
.mobile audio{
width:70%;
}