JS und CSS Dateien hinzugefügt, Navbar-Component hinzugefügt, Fonts korrigiert

This commit is contained in:
2025-04-04 20:47:38 +02:00
parent b4dca8e5b0
commit 1b31a84e18
22 changed files with 2172 additions and 6 deletions
+98
View File
@@ -0,0 +1,98 @@
.modal {
margin: auto;
justify-content: center;
text-align: center;
position: fixed;
top: 0;
/* Positioniert das Modal oben im Viewport */
left: 0;
/* Positioniert das Modal links im Viewport */
right: 0;
/* Erweitert das Modal auf die gesamte Breite */
bottom: 0;
/* Erweitert das Modal auf die gesamte Höhe */
/* Bringt das Modal in den Vordergrund */
font-size: medium;
overflow: hidden;
width: 100%;
height: 100%;
align-items: center;
z-index: 1000;
display: none;
background-color: rgba(255,255,255,0.5);
}
.openBtn{
cursor: pointer;
}
.modal-content {
background-color: #ffffff;
/* Hintergrundfarbe des Inhalts */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
/* Schatten */
border: none;
/* Entferne den Rahmen */
/* margin: 15% auto; */
height: 100%;
padding: 20px;
border-radius: 10px;
width: 100%;
height: 70%;
overflow-y: scroll;
margin-top: 5%;
max-width: 800px;
}
.close, .closeBtn {
color: #4CAF50;
font-size: 28px;
font-weight: bold;
text-align: left;
width: 30px;
padding-left: 5px;
}
.close:hover,
.close:focus, .closeBtn:hover, .closeBtn:focus {
color: red;
cursor: pointer;
}
/* @media (max-width: 768px) {
.modal {
max-width: 100vw;
}
.modal-content {
max-width: 100vw;
}
} */
#tippenIframeContainer{
height: 50vh;
display: none;
}
iframe{
height: 100%;
}
.modalNichtScrollbar {
overflow-y: hidden;
}
.modal-content {
z-index: 1500;
}