情绪面板(卡片布局示例)
:root{ --card-radius:12px; --elev0:0 4px 16px rgba(0,0,0,.06); --elev1:0 12px 28px rgba(0,0,0,.14); --brand: #3B82F6; /* 高亮色,可按主题改 */ } /* 栅格:桌面 3 列;窄屏 1 列 */ .cards { display: grid; grid-template-columns: repeat(3, minmax(280px, 1fr)); gap: 14px; align-items: stretch; } @media (max-width: 960px){ .cards{ grid-template-columns: 1fr; } } /* 卡片基础 */ .card { border: 1px solid rgba(0,0,0,.08); border-radius: var(--card-radius); box-shadow: var(--elev0); background: #f...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment