This commit is contained in:
2026-02-11 23:24:30 +01:00
parent 1e3ff291ce
commit 11e4d607c9
4 changed files with 102 additions and 71 deletions

View File

@@ -100,7 +100,68 @@ h1 {
.results-container {
display: flex;
flex-direction: column;
gap: 20px;
gap: 15px;
}
.post-row {
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
display: flex;
animation: slideIn 0.3s ease-out;
min-height: 100px;
border: 1px solid #f0f0f0;
}
.row-author {
background: #f5f5f5;
color: #333;
padding: 15px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 130px;
flex-shrink: 0;
gap: 8px;
border-right: 1px solid #e0e0e0;
}
.row-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #ddd;
}
.row-author-info {
text-align: center;
width: 100%;
}
.row-author-info strong {
display: block;
font-size: 0.85rem;
margin-bottom: 3px;
word-break: break-word;
color: #333;
font-weight: 600;
}
.row-author-info small {
font-size: 0.7rem;
color: #999;
word-break: break-word;
}
.row-post {
flex: 1;
padding: 15px;
display: flex;
flex-direction: column;
justify-content: center;
}
.author-section {