README.md aktualisiert

This commit is contained in:
Bernd Reuther 2024-09-03 09:21:43 +02:00
parent 80bf99d56e
commit 044ddd8ef1

View File

@ -44,11 +44,15 @@ In das Feld "Benutzerdefiniertes CSS" werden folgende Regeln eingetragen:
``` ```
body { body {
background-color: rgba(0, 0, 0, 0.6); background-color: rgba(0, 0, 0, 0.4) !important;
overflow: hidden; overflow: hidden;
height: 200px; height: 200px;
} }
mat-toolbar {
display: none;
}
br { br {
content: ''; content: '';
} }
@ -57,7 +61,11 @@ br:after {
content: ' '; content: ' ';
} }
#verseorder { app-root, mat-sidenav-container, .overlay {
background-color: rgba(0, 0, 0, 0.4) !important;
}
.overlay-content .tags, .toolbar, .nextSlides, .mat-toolbar, footer {
display: none; display: none;
} }
@ -69,16 +77,20 @@ br:after {
display: none; display: none;
} }
#currentslide { .slide {
position: relative; margin: 0;
position: absolute;
top: 50%; top: 50%;
transform: translateY(-50%); left: 50%;
font-size: 28px; transform: translate(-50%, -50%);
font-size: 28px !important;
text-align: center; text-align: center;
color: white; color: white;
padding-bottom: 0px; }
margin-left: 12px;
margin-right: 12px; .overlay .slide {
white-space: revert;
width: 90%;
} }
``` ```