打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

模板:首页/维护信息/styles.css

让世界变得更有趣吧!
#home-maintain {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 追加以下内容来实现两列布局 */
#home-maintain .home-link {
    display: grid !important;            /* 确保启用网格布局 */
    grid-template-columns: 1fr 1fr;      /* 核心:划分为两列 */
    grid-gap: 8px;                       /* 按钮之间的间距 */
    margin-top: 10px;                    /* 与上方标签的间距 */
}

/* 可选:让按钮里的文字水平垂直居中 */
#home-maintain .home-link__button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}