Newer
Older
web / menu.css
@OTA Tomohide OTA Tomohide on 21 Dec 2021 345 bytes add
nav ul{
display: table;
margin: 0 auto;
padding: 0 ;
width: 80%;
text-align: center;
}
nav li{
display: table-cell;
min-width: 50px;
}
nav a{
display: block;
width: 100%;
text-decoration: none;
color: #555;
padding-bottom: 5px;
}
nav li.current{
border-bottom: 3px solid #red;
}
nav li:hover{
color: #E7DA66;
border-bottom: 3px solid #FFCC33;
}