Newer
Older
pokemon-go-trade / static / html / src / components / menu.css
Simon Lindgren on 12 Feb 2021 376 bytes first commit
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333333;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    font-size: 10em;
}

li a.active {
    background-color: #149b20;
}

li a:hover {
    background-color: #111111;
}