blob: db3a6542e5efaad80f52e73d042983a93ad6d47f [file] [log] [blame]
.forum-page {
color: #fff;
background-color: #5F4437;
min-height: 100vh;
font-family: Arial, sans-serif;
}
.forum-content {
padding: 20px;
}
.post-list {
display: flex;
flex-direction: column;
gap: 20px;
}
.post-card {
text-decoration: none; /* 移除链接的下划线 */
background-color: #5F4437;
padding: 15px;
border-radius: 10px;
position: relative;
}
.post-card-top {
display: flex;
justify-content: space-between;
align-items: center;
}
.user-info {
display: flex;
align-items: center;
}
.avatar {
width: 36px;
height: 36px;
border-radius: 50%;
margin-right: 10px;
}
.nickname {
font-weight: bold;
}
.cover-image {
max-height: 80px;
max-width: 120px;
object-fit: cover;
border-radius: 6px;
}
.post-meta {
font-size: 12px;
margin-top: 5px;
color: #ddd;
}
.post-actions {
display: flex;
gap: 15px;
margin: 10px 0;
}
.icon-btn {
display: flex;
align-items: center;
gap: 5px;
background: none;
border: none;
color: #fff;
cursor: pointer;
}
.btn-secondary {
display: inline-block;
background: #888;
color: #fff;
padding: 6px 12px;
text-decoration: none;
border-radius: 5px;
margin-top: 10px;
}
.pagination {
margin-top: 20px;
display: flex;
justify-content: center;
gap: 10px;
}
.error-text {
color: red;
}
.toolbar {
display: flex;
/* justify-content: space-between;
align-items: center; */
padding: 16px 20px;
}