On October 23rd, 2014, we updated our
Privacy Policy
and
User Agreement.
By continuing to use LinkedIn’s SlideShare service, you agree to the revised terms, so please take a few minutes to review them.
38.
ul {
margin-top: 10px;
li {
font-size: 12px;
a { text-decoration: none;
&:hover { color: red; }
}
Nested Rules
}
} ul {
Sass
margin-top: 10px;
}
ul li {
font-size: 12px;
}
ul li a {
text-decoration: none;
}
ul li a:hover {
color: red;
}