Umbau zu tailwind + mobile friendly: LandingPage & Footer

This commit is contained in:
2024-07-02 19:17:14 +02:00
parent 3d5b7e3f39
commit 958f0afd9b
32 changed files with 1464 additions and 699 deletions

View File

@@ -1,64 +1,58 @@
.container {
display: flex;
flex-direction: column;
min-height: 100vh;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.content {
flex: 1;
/* Optional: Padding für den Inhalt, um sicherzustellen, dass er nicht direkt am Footer klebt */
// padding-bottom: 20px;
flex: 1;
/* Optional: Padding für den Inhalt, um sicherzustellen, dass er nicht direkt am Footer klebt */
// padding-bottom: 20px;
}
.progress-spinner {
position: fixed;
z-index: 999;
top: 0;
left: 0;
bottom: 0;
right: 0;
display: flex;
flex-direction: column;
align-items: center;
position: fixed;
z-index: 999;
top: 0;
left: 0;
bottom: 0;
right: 0;
display: flex;
flex-direction: column;
align-items: center;
}
.progress-spinner:before {
content: '';
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.3);
content: '';
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.3);
}
.spinner-text {
margin-top: 20px; /* Abstand zwischen Spinner und Text anpassen */
font-size: 20px; /* Schriftgröße nach Bedarf anpassen */
color: #FFF;
text-shadow: 0 0 8px rgba(255, 255, 255, 0.6); /* Hinzufügen eines leichten Glows */
font-weight: bold; /* Macht den Text fett */
margin-top: 20px; /* Abstand zwischen Spinner und Text anpassen */
font-size: 20px; /* Schriftgröße nach Bedarf anpassen */
color: #fff;
text-shadow: 0 0 8px rgba(255, 255, 255, 0.6); /* Hinzufügen eines leichten Glows */
font-weight: bold; /* Macht den Text fett */
}
.spinner-overlay {
display: flex;
justify-content: center;
align-items: center;
position: fixed; /* oder 'absolute', abhängig vom Kontext */
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
z-index: 1000; /* Stellt sicher, dass der Overlay über anderen Elementen liegt */
}
.spinner-container {
display: flex;
flex-direction: column;
align-items: center;
/* Keine Hintergrundfarbe hier, um Transparenz nur im Overlay zu haben */
}
// .spinner-text {
// margin-top: 10px; /* Abstand zwischen Spinner und Text anpassen */
// font-size: 16px; /* Schriftgröße nach Bedarf anpassen */
// color: #FFF; /* Schriftfarbe für bessere Lesbarkeit auf dunklem Hintergrund */
// }
display: flex;
justify-content: center;
align-items: center;
position: fixed; /* oder 'absolute', abhängig vom Kontext */
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
z-index: 1000; /* Stellt sicher, dass der Overlay über anderen Elementen liegt */
}
.spinner-container {
display: flex;
flex-direction: column;
align-items: center;
/* Keine Hintergrundfarbe hier, um Transparenz nur im Overlay zu haben */
}