The editors' meeting has been canceled for technical reasons.
直播记录/styles.css:修订间差异
< 直播记录
小无编辑摘要 |
小无编辑摘要 |
||
第1行: | 第1行: | ||
.base_block{ | /* 父容器样式 */ | ||
.base_block { | |||
border: 2px outset #9147ff; | border: 2px outset #9147ff; | ||
background-color: rgba(255, 255, 255, 0.1); | background-color: rgba(255, 255, 255, 0.1); | ||
box-shadow: 0 2px 5px #aaa; | box-shadow: 0 2px 5px #aaa; | ||
display: flex; | display: flex; | ||
justify-content: space- | justify-content: space-between; /* 确保子元素均匀分布 */ | ||
flex-wrap: wrap; | flex-wrap: wrap; /* 允许子元素换行 */ | ||
padding: 15px; | padding: 15px; | ||
gap: 10px; /* 子元素之间的间距 */ | |||
} | } | ||
.item{ | |||
max-width: 360px; | /* 子元素样式 */ | ||
min-width: 200px; | .item { | ||
flex: 1 1 calc((100% - 40px) / 4); /* 每行最多 4 个子元素 */ | |||
max-width: 360px; /* 最大宽度 */ | |||
min-width: 200px; /* 最小宽度 */ | |||
height: 124px; | height: 124px; | ||
padding: 0; | padding: 0; | ||
display: flex; | display: flex; |
2024年12月1日 (日) 22:43的版本
/* 父容器样式 */ .base_block { border: 2px outset #9147ff; background-color: rgba(255, 255, 255, 0.1); box-shadow: 0 2px 5px #aaa; display: flex; justify-content: space-between; /* 确保子元素均匀分布 */ flex-wrap: wrap; /* 允许子元素换行 */ padding: 15px; gap: 10px; /* 子元素之间的间距 */ } /* 子元素样式 */ .item { flex: 1 1 calc((100% - 40px) / 4); /* 每行最多 4 个子元素 */ max-width: 360px; /* 最大宽度 */ min-width: 200px; /* 最小宽度 */ height: 124px; padding: 0; display: flex; box-shadow: 0 2px 5px #aaa; transition: all 0.3s ease-in-out; overflow: hidden; position: relative; margin: 3px; } .item1{ background-color: rgba(145, 71, 255, 0.8); } .item2{ background-color: rgba(255, 50, 80, 0.8); } .item3{ background-color: rgba(50, 100, 255, 0.8); } .item4{ background-color: rgba(255, 220, 50, 0.8); } .item5{ background-color: rgba(50, 255, 150, 0.8); } .item > a{ position: relative; display: flex; width: 100%; height: 100%; justify-content: right; align-items: flex-end; font-size: 42px; color: #ffffff; transition: all 0.3s ease-in-out; padding-right:0; text-decoration: none; } .item:hover > a{ padding-right:26px; text-decoration: none; } a > .long{ max-width:90%; font-size: 24px; } .item:hover{ background-color: rgba(0, 0, 0, 0.6); } .item > .img{ position: absolute; mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); transition: all 1.3s ease-in-out; } .item:hover > .img{ mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }