navigation links

PHOTO EMBED

Mon Jun 27 2022 01:08:13 GMT+0000 (Coordinated Universal Time)

Saved by @mbala #css

/* styling elements in the header with the navigation class (ul - unordered list) */
header .navigation
{
    position: relative;
    display: flex;
}

/* styling li(list) elements in the header with the navigation class (ul) */
header .navigation li
{
    list-style: none;
    margin-left: 30px;
}

/* styling links(a) in li(list) elements in the header with the navigation class (ul) */
header .navigation li a
{
    text-decoration: none;
    color: #000;
    font-weight: 300;
}

/* styling links(a) in li(list) elements in the header with the navigation class (ul) after hover action*/
header .navigation li a:hover
{
    color: #ff0157;
}
content_copyCOPY