Skip to content

Instantly share code, notes, and snippets.

@mikestreety
Created March 13, 2014 16:55
Show Gist options
  • Save mikestreety/9532301 to your computer and use it in GitHub Desktop.
Save mikestreety/9532301 to your computer and use it in GitHub Desktop.
Basic CSS
.article {
padding: 10px;
}
.article h1 {
font-size: 24px;
color: #0046ad;
line-height: 1.4;
}
.article p {
font-size: 14px;
line-height: 1.4;
}
.article .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;
}
.article .link:hover {
color: #005be0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment