nex_docus/frontend/src/pages/ProjectList/ProjectList.css

74 lines
1.2 KiB
CSS
Raw Normal View History

2025-12-20 11:18:59 +00:00
.project-list-container {
padding: 24px;
}
.project-list-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
}
.project-list-header h2 {
margin: 0;
font-size: 24px;
font-weight: 600;
}
.project-card {
text-align: center;
cursor: pointer;
transition: all 0.3s;
2025-12-29 12:53:50 +00:00
position: relative;
overflow: hidden;
2025-12-20 11:18:59 +00:00
}
.project-card:hover {
transform: translateY(-4px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
2025-12-29 12:53:50 +00:00
.project-card-public-badge {
position: absolute;
top: 8px;
right: -28px;
background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%);
color: white;
padding: 2px 32px;
font-size: 11px;
font-weight: 500;
transform: rotate(45deg);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
z-index: 1;
}
2025-12-20 11:18:59 +00:00
.project-card-icon {
margin-bottom: 16px;
}
.project-card h3 {
font-size: 16px;
font-weight: 600;
margin-bottom: 8px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.project-description {
font-size: 14px;
color: #666;
margin-bottom: 12px;
min-height: 40px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.project-meta {
font-size: 12px;
color: #999;
}