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

Template:少女前线/styles.css

模板页面
.gfl-nav-compact {
    margin: 1em 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fcfcfc;
    border: 1px solid #ddd;
    line-height: 1.5;
}

.gfl-logo-box {
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ddd;
    background-color: #f8f9fa;
}

.gfl-logo-box img { max-height: 30px; width: auto; }

.gfl-item {
    flex: 1;
    min-width: 80px;
    position: relative;
    outline: none;
}

.gfl-title {
    display: block;
    padding: 10px 4px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: all 0.2s;
}

.gfl-item:hover .gfl-title, .gfl-item:focus .gfl-title {
    color: #E6A23C;
    background-color: #fff;
}

.gfl-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.2s;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: #fff !important;
    border: 1px solid #E6A23C;
    z-index: 1000;
    overflow: hidden;
    visibility: hidden;
}

.gfl-item:hover .gfl-content, .gfl-item:focus .gfl-content {
    grid-template-rows: 1fr;
    visibility: visible;
}

.gfl-links-wrap { display: flex; flex-direction: column; padding: 6px; }
.gfl-links-wrap a {
    display: block; padding: 8px; margin: 2px 0;
    font-size: 12px; text-align: center;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    color: #3366ff !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .gfl-logo-box { display: none; }

    .gfl-nav-compact {
        background-color: #fff;
        border: 1px solid #eee;
    }

    .gfl-item {
        flex: none;
        width: 33.33% !important;
        box-sizing: border-box;
        border-right: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .gfl-item:nth-child(3n), .gfl-item:last-child { border-right: none; }
    .gfl-item:nth-last-child(-n+3) { border-bottom: none; }

    .gfl-title { padding: 14px 2px; font-weight: 500; }

    .gfl-content {
        position: absolute;
        top: 100%;
        left: 0; width: 300%;
        border: 1px solid #E6A23C;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    /* 修正不同位置标题弹出层的对齐 */
    .gfl-item:nth-child(3n-1) .gfl-content { left: -100%; }
    .gfl-item:nth-child(3n) .gfl-content { left: -200%; }

    .gfl-links-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }
    
    .gfl-links-wrap a { text-align: center; padding: 10px 4px; border: 1px solid #eee; background: #fcfcfc; }
}