Created
November 5, 2013 23:10
-
-
Save csessig86/7328038 to your computer and use it in GitHub Desktop.
Universal styles for news apps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/***** 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