Skip to content

Instantly share code, notes, and snippets.

@mikestreety
Created March 13, 2014 16:56
Show Gist options
  • Save mikestreety/9532325 to your computer and use it in GitHub Desktop.
Save mikestreety/9532325 to your computer and use it in GitHub Desktop.
Nested
.article {
padding: 10px;
h1 {
font-size: 24px;
color: #0046ad;
line-height: 1.4;
}
p {
font-size: 14px;
line-height: 1.4;
}
.link {
color: #0046ad;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
&:hover {
color: #005be0;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment