Guest User

Untitled

a guest
Dec 16th, 2013
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. /*CSS RESET*/
  2. html, body, div, span, applet, object, iframe,
  3. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  4. a, abbr, acronym, address, big, cite, code,
  5. del, dfn, em, font, img, ins, kbd, q, s, samp,
  6. small, strike, strong, sub, sup, tt, var,
  7. dl, dt, dd, ol, ul, li,
  8. fieldset, form, label, legend,
  9. table, caption, tbody, tfoot, thead, tr, th, td {
  10. margin: 0;
  11. padding: 0;
  12. border: 0;
  13. outline: 0;
  14. font-weight: inherit;
  15. font-style: inherit;
  16. font-size: 100%;
  17. vertical-align: baseline;
  18. }
  19. /* remember to define focus styles! */
  20. :focus {
  21. outline: 0;
  22. }
  23. body {
  24. line-height: 1;
  25. color: black;
  26. background: white;
  27. }
  28. ol, ul {
  29. list-style: none;
  30. }
  31. /* tables still need 'cellspacing="0"' in the markup */
  32. table {
  33. border-collapse: separate;
  34. border-spacing: 0;
  35. }
  36. caption, th, td {
  37. text-align: left;
  38. font-weight: normal;
  39. }
  40. blockquote:before, blockquote:after,
  41. q:before, q:after {
  42. content: "";
  43. }
  44. blockquote, q {
  45. quotes: "" "";
  46. }
  47.  
  48. strong {
  49. font-weight:bold;color:#0289ce;
  50. }
  51.  
  52. em {
  53. font-style:oblique;
  54. }
  55.  
  56. p {
  57. margin:15px 0;
  58. }
  59.  
  60. .aligncenter, div.aligncenter {
  61. display: block;
  62. margin-left: auto;
  63. margin-right: auto;
  64. }
  65. .alignleft {
  66. float: left;
  67. }
  68. .alignright {
  69. float: right;
  70. }
  71.  
  72. h1 {font-size:180%;}
  73. h2 {font-size:150%;}
  74. h3 {font-size:125%;}
  75. h4 {font-size:100%;}
  76. h5 {font-size:90%;}
  77. h6 {font-size:80%;}
  78.  
  79. a:link {color:#0289ce;}
  80. a:hover {color:#f64274;}
Advertisement
Add Comment
Please, Sign In to add comment