mirror of
https://codeberg.org/kirche-im-netz/Startodon-Hub.git
synced 2025-08-04 18:24:37 +02:00
Layout Datenabfrage angepasst
This commit is contained in:
parent
ccf913140c
commit
9f79d15a91
3 changed files with 13 additions and 7 deletions
|
@ -8,7 +8,7 @@ export function createPopup({ title, body, closeCallback = null, customClass = '
|
|||
<div class="popup-content ${customClass}">
|
||||
<button class="close-popup">×</button>
|
||||
<div class="popup-header">
|
||||
<h3>${title}</h3>
|
||||
<h2>${title}</h2>
|
||||
</div>
|
||||
<div class="popup-body">
|
||||
${body}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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%;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue