HTML:
Code:
<nav id="horizontal">
....
CSS:
Code:
#horizontal ul {
font-family: 'Century Gothic';
font-size: 14px;
font-weight: bold;
letter-spacing: 3px;
line-height: 20px;
list-style-type: none;
}
#horizontal li a {
color:hsl(212, 100%, 70%);
text-decoration:none;
}
#horizontal li a:hover {
color: hsl(212, 100%, 29%);
}
Or
Code:
#horizontal ul {
font-family: 'Century Gothic';
font-size: 14px;
font-weight: bold;
letter-spacing: 3px;
line-height: 20px;
list-style-type: none;
}
#horizontal ul li a {
color:hsl(212, 100%, 70%);
text-decoration:none;
}
#horizontal ul li a:hover {
color: hsl(212, 100%, 29%);
}
Both seem to work...
