qyle's picture
deployment
2d42370 verified
/* Comment area */
.comment-area {
position: relative;
display: flex;
flex-direction: column;
gap: 16px;
background: #141b2f;
padding: 24px;
border-radius: 15px;
border: 1px solid #2c3554;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
width: 90%;
}
.comment-area h2 {
margin: 0 0 8px 0;
font-size: 1.5rem;
color: #f5f5f5;
font-weight: 600;
}
.comment-area textarea {
/* max-width: 425px; */
min-height: 120px;
border-radius: 10px;
border: 1px solid #2c3554;
background: #0d1324;
color: #f5f5f5;
padding: 12px;
resize: vertical;
font-size: 1rem;
font-family: inherit;
transition: border-color 0.2s ease;
}
.comment-area textarea:focus {
outline: none;
border-color: #4a5f8f;
}
.comment-area textarea::placeholder {
color: #6b7280;
}
/* Button container */
.comment-area .button-group {
display: flex;
gap: 12px;
margin: auto;
}