Template:少女前线/styles.css
模板页面
更多操作
.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;
}