Layout Datenabfrage angepasst

This commit is contained in:
Alexander Müller 2024-12-27 22:19:17 +01:00
parent ccf913140c
commit 9f79d15a91
3 changed files with 13 additions and 7 deletions

View file

@ -8,7 +8,7 @@ export function createPopup({ title, body, closeCallback = null, customClass = '
<div class="popup-content ${customClass}">
<button class="close-popup">&times;</button>
<div class="popup-header">
<h3>${title}</h3>
<h2>${title}</h2>
</div>
<div class="popup-body">
${body}

View file

@ -30,10 +30,8 @@
}
/* Header-Styling */
.popup-content h3 {
margin: 0;
font-size: 1.5rem;
color: var(--primary-color, #333);
.popup-content h2 {
margin: 0 0 10px 0;
}
/* Body-Text */
@ -54,7 +52,6 @@
.popup-header {
padding-top: 20px;
font-size: 1.5rem;
color: var(--primary-color, #333);
text-align: center;
}

View file

@ -9,13 +9,22 @@ body {
margin: 0;
padding: 0;
background-color: var(--background-color);
color: #ffffff;
color: #fff;
line-height: 1.6;
}
a {
color: var(--link-color);
text-decoration: none;
}
h2 {
font-size: 1.5rem;
}
h3 {
font-size: 1.2rem;
}
.container {
position:relative;
width: 100%;