DreamLife_ToolBox/css/toolcard.css

106 lines
2.1 KiB
CSS
Raw Normal View History

2025-03-03 18:59:57 +08:00
/* 为整个工具卡片添加链接样式 */
.tool-card-link {
text-decoration: none; /* 去掉链接的下划线 */
}
/* 保证工具卡片正常排列 */
.tools-grid {
display: grid;
2025-03-27 15:19:47 +08:00
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
2025-03-03 18:59:57 +08:00
gap: 20px;
padding: 20px;
}
/* 保证工具卡片的顺序 */
.tool-card {
display: flex;
2025-03-26 13:52:39 +08:00
flex-direction: column;
align-items: flex-start;
2025-03-03 18:59:57 +08:00
background: white;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
2025-03-26 13:52:39 +08:00
text-align: left;
2025-03-03 18:59:57 +08:00
min-height: 180px;
2025-03-26 13:52:39 +08:00
transition: transform 0.5s ease, box-shadow 0.5s ease;
2025-03-03 18:59:57 +08:00
}
/* 工具卡片动画完成状态 */
.tool-card.animated {
opacity: 1;
transform: translateY(0); /* 恢复到正常位置 */
}
/* 工具卡片悬停效果 */
.tool-card:hover {
transform: scale(1.03);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
/* 工具卡片logo样式 */
.tool-logo {
margin-left: 30px;
margin-top: 10px;
2025-03-26 13:52:39 +08:00
width: 50px;
2025-03-03 18:59:57 +08:00
height: 50px;
2025-03-26 13:52:39 +08:00
margin-bottom: 10px;
border-radius: 8px;
object-fit: cover;
2025-03-03 18:59:57 +08:00
display:block;
}
/* 工具名称的样式 */
.tool-name {
margin-left: 30px;
margin-top: 10px;
font-size: 20px;
font-weight: bold;
color: #333;
text-decoration: none;
2025-03-26 13:52:39 +08:00
position: relative;
display: inline-block;
text-align: left;
2025-03-03 18:59:57 +08:00
}
/* 工具名称的下划线效果 */
.tool-name::after {
content: "";
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: black;
transition: width 0.3s ease;
}
.tool-name:hover::after {
width: 100%; /* 让下划线横跨整个文字 */
}
/* 分类标签样式 */
.tool-category {
2025-03-26 13:52:39 +08:00
display: inline-block;
padding: 4px 16px;
color: #ffffff;
font-size: 10px;
font-weight: bold;
border-radius: 50px;
2025-03-03 18:59:57 +08:00
margin-left: 30px;
2025-03-26 13:52:39 +08:00
margin-top: 10px;
2025-03-03 18:59:57 +08:00
}
/* 工具描述样式 */
.card-description {
font-size: 14px;
color: #777;
margin-left: 30px;
margin-top: 10px; /* 给描述添加上边距 */
}
/* 悬停效果 */
.tool-card:hover {
transform: scale(1.03);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
2025-03-03 20:40:23 +08:00
}