Template:少女前线/styles.css:修订间差异
模板页面
更多操作
无编辑摘要 |
无编辑摘要 |
||
| 第4行: | 第4行: | ||
flex-wrap: wrap; | flex-wrap: wrap; | ||
position: relative; | position: relative; | ||
background-color: # | background-color: var(--background-color-neutral-subtle, #f8f9fa); | ||
border: 1px solid # | border: 1px solid var(--border-color-base, #ccc); | ||
line-height: 1.5; | line-height: 1.5; | ||
} | } | ||
| 第14行: | 第14行: | ||
align-items: center; | align-items: center; | ||
justify-content: center; | justify-content: center; | ||
border-right: 1px solid | border-right: 1px solid var(--border-color-base, #ccc); | ||
} | } | ||
.gfl-logo-box img { max-height: 30px; width: auto; } | .gfl-logo-box img { | ||
max-height: 30px; | |||
width: auto; | |||
} | |||
.gfl-item { | .gfl-item { | ||
| 第33行: | 第35行: | ||
cursor: pointer; | cursor: pointer; | ||
font-size: 13px; | font-size: 13px; | ||
color: # | color: var(--color-base, #202122); | ||
transition: all 0.2s; | transition: all 0.2s; | ||
} | } | ||
.gfl-item:hover .gfl-title, .gfl-item:focus .gfl-title { | .gfl-item:hover .gfl-title, | ||
.gfl-item:focus .gfl-title { | |||
color: #E6A23C; | color: #E6A23C; | ||
background-color: # | background-color: var(--background-color-interactive-subtle, #eee); | ||
} | } | ||
| 第47行: | 第50行: | ||
transition: grid-template-rows 0.2s; | transition: grid-template-rows 0.2s; | ||
position: absolute; | position: absolute; | ||
top: 100%; left: 0; width: 100%; | top: 100%; | ||
background: #fff !important; | left: 0; | ||
width: 100%; | |||
background-color: var(--background-color-base, #fff) !important; | |||
border: 1px solid #E6A23C; | border: 1px solid #E6A23C; | ||
z-index: 1000; | z-index: 1000; | ||
| 第55行: | 第60行: | ||
} | } | ||
.gfl-item:hover .gfl-content, .gfl-item:focus .gfl-content { | .gfl-item:hover .gfl-content, | ||
.gfl-item:focus .gfl-content { | |||
grid-template-rows: 1fr; | grid-template-rows: 1fr; | ||
visibility: visible; | visibility: visible; | ||
} | } | ||
.gfl-links-wrap { display: flex; flex-direction: column; padding: 6px; } | .gfl-links-wrap { | ||
display: flex; | |||
flex-direction: column; | |||
padding: 6px; | |||
} | |||
.gfl-links-wrap a { | .gfl-links-wrap a { | ||
display: block; padding: 8px; margin: 2px 0; | display: block; | ||
font-size: 12px; text-align: center; | padding: 8px; | ||
background-color: # | margin: 2px 0; | ||
border: 1px solid # | font-size: 12px; | ||
color: #3366ff !important; | 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; | text-decoration: none !important; | ||
} | } | ||
@media (max-width: 768px) { | @media (max-width: 768px) { | ||
.gfl-logo-box { display: none; } | .gfl-logo-box { | ||
display: none; | |||
} | |||
.gfl-nav-compact { | .gfl-nav-compact { | ||
border: 1px solid var(--border-color-base, #ccc); | |||
background-color: transparent; | |||
} | } | ||
| 第82行: | 第98行: | ||
width: 33.33% !important; | width: 33.33% !important; | ||
box-sizing: border-box; | box-sizing: border-box; | ||
border-right: 1px solid # | border-right: 1px solid var(--border-color-base, #ccc); | ||
border-bottom: 1px solid # | border-bottom: 1px solid var(--border-color-base, #ccc); | ||
} | |||
.gfl-item:nth-child(3n), | |||
.gfl-item:last-child { | |||
border-right: none; | |||
} | } | ||
.gfl-item:nth-last-child(-n+3) { | |||
.gfl-item:nth-last-child(-n+3) { border-bottom: none; } | border-bottom: none; | ||
} | |||
.gfl-title { padding: 14px 2px; font-weight: 500; } | .gfl-title { | ||
padding: 14px 2px; | |||
font-weight: 500; | |||
} | |||
.gfl-content { | .gfl-content { | ||
position: absolute; | position: absolute; | ||
top: 100%; | top: 100%; | ||
left: 0; width: 300% | left: 0; | ||
width: 300%; | |||
box-shadow: 0 4px 12px rgba(0,0,0,0. | box-shadow: 0 4px 12px rgba(0,0,0,0.2); | ||
} | } | ||
.gfl-item:nth-child(3n-1) .gfl-content { left: -100%; } | .gfl-item:nth-child(3n-1) .gfl-content { left: -100%; } | ||
.gfl-item:nth-child(3n) .gfl-content { left: -200%; } | .gfl-item:nth-child(3n) .gfl-content { left: -200%; } | ||
| 第109行: | 第133行: | ||
} | } | ||
.gfl-links-wrap a { | .gfl-links-wrap a { | ||
background-color: var(--background-color-neutral-subtle, #f8f9fa); | |||
border: 1px solid var(--border-color-base, #ccc); | |||
} | |||
} | } | ||
2026年5月7日 (四) 08:43的版本
.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);
line-height: 1.5;
}
.gfl-logo-box {
width: 54px;
display: flex;
align-items: center;
justify-content: center;
border-right: 1px solid var(--border-color-base, #ccc);
}
.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: var(--color-base, #202122);
transition: all 0.2s;
}
.gfl-item:hover .gfl-title,
.gfl-item:focus .gfl-title {
color: #E6A23C;
background-color: var(--background-color-interactive-subtle, #eee);
}
.gfl-content {
display: grid;
grid-template-rows: 0fr;
transition: grid-template-rows 0.2s;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background-color: var(--background-color-base, #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: 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-nav-compact {
border: 1px solid var(--border-color-base, #ccc);
background-color: transparent;
}
.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),
.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%;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.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 {
background-color: var(--background-color-neutral-subtle, #f8f9fa);
border: 1px solid var(--border-color-base, #ccc);
}
}