Template:少女前线/styles.css:修订间差异
模板页面
更多操作
无编辑摘要 |
无编辑摘要 |
||
| 第6行: | 第6行: | ||
background-color: var(--background-color-neutral-subtle, #f8f9fa); | background-color: var(--background-color-neutral-subtle, #f8f9fa); | ||
border: 1px solid var(--border-color-base, #ccc); | border: 1px solid var(--border-color-base, #ccc); | ||
} | } | ||
| 第48行: | 第47行: | ||
.gfl-content { | .gfl-content { | ||
position: absolute; | position: absolute; | ||
top: 100%; | top: 100%; | ||
| 第60行: | 第56行: | ||
z-index: 1000; | z-index: 1000; | ||
overflow: hidden; | overflow: hidden; | ||
/* 核心隐藏逻辑 */ | |||
max-height: 0; | |||
opacity: 0; | |||
transition: max-height 0.3s ease, opacity 0.2s; | |||
pointer-events: none; | |||
} | } | ||
.gfl-item:hover .gfl-content, | .gfl-item:hover .gfl-content, | ||
.gfl-item:focus .gfl-content { | .gfl-item:focus .gfl-content { | ||
max-height: 500px; | |||
opacity: 1; | |||
pointer-events: auto; | |||
} | } | ||
| 第71行: | 第74行: | ||
flex-direction: column; | flex-direction: column; | ||
padding: 6px; | padding: 6px; | ||
} | } | ||
| 第103行: | 第105行: | ||
} | } | ||
/* 移除最后三个项目的底边框,消除橙色粗条感 */ | |||
.gfl-item:nth-last-child(-n+3) { | .gfl-item:nth-last-child(-n+3) { | ||
border-bottom: none; | border-bottom: none; | ||
| 第109行: | 第112行: | ||
.gfl-title { | .gfl-title { | ||
padding: 14px 2px; | padding: 14px 2px; | ||
} | } | ||
.gfl-content { | .gfl-content { | ||
width: 300%; | width: 300%; | ||
} | } | ||
| 第120行: | 第121行: | ||
.gfl-item:nth-child(3n) .gfl-content { left: -200%; } | .gfl-item:nth-child(3n) .gfl-content { left: -200%; } | ||
/* 恢复单列显示 */ | |||
.gfl-links-wrap { | .gfl-links-wrap { | ||
display: | display: flex; | ||
flex-direction: column; | |||
} | |||
.gfl-links-wrap a { | |||
text-align: left; | |||
padding-left: 20px; | |||
} | } | ||
} | } | ||
2026年5月7日 (四) 08:49的版本
.gfl-nav-compact {
margin: 1em 0;
display: flex;
flex-wrap: wrap;
position: relative;
background-color: var(--background-color-neutral-subtle, #f8f9fa);
border: 1px solid var(--border-color-base, #ccc);
}
.gfl-logo-box {
width: 50px;
display: flex;
align-items: center;
justify-content: center;
border-right: 1px solid var(--border-color-base, #ccc);
}
.gfl-logo-box img {
max-height: 28px;
width: auto;
}
.gfl-item {
flex: 1;
min-width: 60px;
position: relative;
outline: none;
}
.gfl-title {
display: block;
padding: 10px 4px;
text-align: center;
cursor: pointer;
font-size: 13px;
color: var(--color-base, #202122);
border-bottom: 2px solid transparent;
transition: all 0.2s;
}
.gfl-item:hover .gfl-title,
.gfl-item:focus .gfl-title {
color: #E6A23C;
border-bottom-color: #E6A23C !important;
background-color: var(--background-color-interactive-subtle, #eee);
}
.gfl-content {
position: absolute;
top: 100%;
left: 0;
width: 100%;
background-color: var(--background-color-base, #fff) !important;
border: 1px solid #E6A23C;
border-top: none;
z-index: 1000;
overflow: hidden;
/* 核心隐藏逻辑 */
max-height: 0;
opacity: 0;
transition: max-height 0.3s ease, opacity 0.2s;
pointer-events: none;
}
.gfl-item:hover .gfl-content,
.gfl-item:focus .gfl-content {
max-height: 500px;
opacity: 1;
pointer-events: auto;
}
.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: var(--background-color-neutral-subtle, #f8f9fa);
border: 1px solid var(--border-color-base, #ccc);
color: var(--color-progressive, #3366ff) !important;
text-decoration: none !important;
}
@media (max-width: 768px) {
.gfl-logo-box {
display: none;
}
.gfl-item {
flex: none;
width: 33.33% !important;
box-sizing: border-box;
border-right: 1px solid var(--border-color-base, #ccc);
border-bottom: 1px solid var(--border-color-base, #ccc);
}
.gfl-item:nth-child(3n) {
border-right: none;
}
/* 移除最后三个项目的底边框,消除橙色粗条感 */
.gfl-item:nth-last-child(-n+3) {
border-bottom: none;
}
.gfl-title {
padding: 14px 2px;
}
.gfl-content {
width: 300%;
}
.gfl-item:nth-child(3n-1) .gfl-content { left: -100%; }
.gfl-item:nth-child(3n) .gfl-content { left: -200%; }
/* 恢复单列显示 */
.gfl-links-wrap {
display: flex;
flex-direction: column;
}
.gfl-links-wrap a {
text-align: left;
padding-left: 20px;
}
}