Skip to content

Instantly share code, notes, and snippets.

@csessig86
Created November 5, 2013 23:10
Show Gist options
  • Save csessig86/7328038 to your computer and use it in GitHub Desktop.
Save csessig86/7328038 to your computer and use it in GitHub Desktop.
Universal styles for news apps
/***** Universal styles *****/
html, body {
padding: 0px;
margin: 0px;
padding-right:1px;;
}
body {
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: normal;
line-height: 18px;
}
p, span, h1, h2, h3, h4, h5, h6 {
padding-left: 5px;
padding-right: 5px;
}
h1, h2, h3 {
line-height: 30px;
font-family: Georgia, serif;
}
h3 {
text-shadow: 0 1px 1px rgba(99, 99, 99, 0.25);
}
h4 {
margin: 0;
padding-bottom: 5px;
padding-top: 5px;
}
p {
font-size: 14px;
}
a {
color: #547c9d;
/* transition: all 0.2s ease-out;
-moz-transition: all 0.2s ease-out; */
-webkit-transition: all 0.2s ease-out;
/* -o-transition: all 0.2s ease-out; */
outline: 0;
}
a:focus {
outline: 0;
}
hr {
margin-top: 0px;
margin-bottom: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment