Antwortmöglichkeit
This commit is contained in:
+70
-70
@@ -1,7 +1,7 @@
|
|||||||
/* Container für den gesamten articleikel */
|
/* Container für den gesamten articleikel */
|
||||||
.article-view-container {
|
.article-view-container {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
max-width: 900px; /* Angenehme Lesebreite für längere Texte */
|
max-width: 900px;
|
||||||
margin: 3rem auto;
|
margin: 3rem auto;
|
||||||
padding: 0 2rem;
|
padding: 0 2rem;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
||||||
@@ -105,7 +105,7 @@
|
|||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Responsive Anpassungen unter 760px (für z.B. Smarticlephones) */
|
/* Responsive Anpassungen unter 760px */
|
||||||
@media (max-width: 760px) {
|
@media (max-width: 760px) {
|
||||||
.article-view-container {
|
.article-view-container {
|
||||||
margin: 1.5rem auto;
|
margin: 1.5rem auto;
|
||||||
@@ -117,83 +117,83 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --- KOMMENTARE --- */
|
/* --- KOMMENTARE --- */
|
||||||
|
|
||||||
.article-comments-section {
|
.article-comments-section {
|
||||||
margin-top: 3rem;
|
margin-top: 3rem;
|
||||||
padding-top: 2rem;
|
padding-top: 2rem;
|
||||||
border-top: 1px solid #e2e8f0;
|
border-top: 1px solid #e2e8f0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.article-comments-section h2 {
|
.article-comments-section h2 {
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
margin-bottom: 1.5rem;
|
margin-bottom: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#comments-list {
|
#comments-list {
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.comment-item {
|
.comment-item {
|
||||||
background-color: #f8fafc;
|
background-color: #f8fafc;
|
||||||
border: 1px solid #e2e8f0;
|
border: 1px solid #e2e8f0;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
padding: 1rem 1.25rem;
|
padding: 1rem 1.25rem;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#comment-form {
|
#comment-form {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#comment-content {
|
#comment-content {
|
||||||
width: 100% !important;
|
width: 100%;
|
||||||
min-height: 130px !important;
|
min-height: 130px;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #cbd5e1;
|
border: 1px solid #cbd5e1;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
resize: vertical;
|
resize: vertical;
|
||||||
}
|
}
|
||||||
|
|
||||||
#comment-form .button {
|
#comment-form .button {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
.reply-button {
|
}
|
||||||
display: inline-block;
|
|
||||||
margin-top: 0.75rem;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
color: #2563eb;
|
|
||||||
font-weight: 700;
|
|
||||||
cursor: pointer;
|
|
||||||
padding: 0;
|
|
||||||
font-size: 0.95rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.reply-button:hover {
|
.reply-button {
|
||||||
text-decoration: underline;
|
display: inline-block;
|
||||||
}
|
margin-top: 0.75rem;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
color: #2563eb;
|
||||||
|
font-weight: 700;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 0;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
}
|
||||||
|
|
||||||
.comment-replies {
|
.reply-button:hover {
|
||||||
margin-top: 1rem;
|
text-decoration: underline;
|
||||||
margin-left: 2rem;
|
}
|
||||||
padding-left: 1rem;
|
|
||||||
border-left: 3px solid #cbd5e1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.comment-reply {
|
.comment-replies {
|
||||||
background-color: #eef6ff;
|
margin-top: 1rem;
|
||||||
margin-top: 1rem;
|
margin-left: 2rem;
|
||||||
}
|
padding-left: 1rem;
|
||||||
|
border-left: 3px solid #cbd5e1;
|
||||||
|
}
|
||||||
|
|
||||||
.reply-info {
|
.comment-reply {
|
||||||
margin: 0.5rem 0;
|
background-color: #eef6ff;
|
||||||
color: #475569;
|
margin-top: 1rem;
|
||||||
font-weight: 600;
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
.reply-info {
|
||||||
|
margin: 0.5rem 0;
|
||||||
|
color: #475569;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user