oclockvn
3/12/2017 - 3:24 AM

responsive-menu.css

html, body {
    font-family: 'segoe ui', Arial, sans-serif;
}

svg {
    display: block;
    width: 24px;
    height: 24px;
}

a {
    color: #2196f3;
    text-decoration: none;
}

.toggle-menu {
    display: none;
}

.brand a {
    font-weight: 600;
}

header {
    max-width: 960px;
    margin: auto;
    display: flex;
    align-items: center;
}

.brand {
    flex: 1;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    display: inline-block;
}

.menu a {
    text-decoration: none;
    padding: 8px 16px;
    display: block;
    font-weight: 600;
    transition: .3s ease-in-out;
    border-top: 4px solid transparent;
}

.menu a:hover {
    border-color: #f42;
    color: #f42;
}