模板:首页/styles.css:修订间差异
来自高中笔记
更多操作
无编辑摘要 |
无编辑摘要 |
||
| 第82行: | 第82行: | ||
/* 让 info-title 在前面有内容时自动增加上边距 */ | /* 让 info-title 在前面有内容时自动增加上边距 */ | ||
.info-title:not(:first-child) { margin-top: 0.8em; } | .info-title:not(:first-child) { margin-top: 0.8em; } | ||
.homepage-grid { | |||
display: grid; | |||
gap: 1em; | |||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); | |||
align-items: start; | |||
} | |||