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

Template:少女前线/styles.css

模板页面
弃权者留言 | 贡献2026年5月6日 (三) 23:13的版本 (创建页面,内容为“.gfl-nav { border: 1px solid #aaa; background: #f9f9f9; padding: 10px; font-size: 14px; margin-bottom: 1em; } .gfl-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #333; padding-bottom: 5px; margin-bottom: 10px; } .gfl-menu { display: flex; flex-wrap: wrap; gap: 5px; } .gfl-item { position: relative; flex: 1; min-width: 100px; } .gfl-title {…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
.gfl-nav {
    border: 1px solid #aaa;
    background: #f9f9f9;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 1em;
}
.gfl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.gfl-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.gfl-item {
    position: relative;
    flex: 1;
    min-width: 100px;
}
.gfl-title {
    display: block;
    padding: 8px;
    background: #eee;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: 1px solid #ccc;
}
.gfl-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    min-width: 200px;
    background: white;
    border: 1px solid #aaa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 10px;
}
.gfl-item:hover .gfl-content {
    display: block;
}
.gfl-item:hover .gfl-title {
    background: #333;
    color: white;
}
.gfl-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}