Basis of rails-driven app for local business
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

54 lines
1.0 KiB

  1. /* http://meyerweb.com/eric/tools/css/reset/ */
  2. /* v1.0 | 20080212 */
  3. html, body, div, span, applet, object,
  4. iframe, h1, h2, h3, h4, h5, h6, p,
  5. blockquote, pre, a, abbr, acronym,
  6. address, big, cite, code, del, dfn, em,
  7. font, img, ins, kbd, q, s, samp, small,
  8. strike, strong, sub, sup, tt, var, b, u,
  9. i, center, dl, dt, dd, ol, ul, li,
  10. fieldset, form, label, legend, table,
  11. caption, tbody, tfoot, thead, tr, th,
  12. td {
  13. margin: 0;
  14. padding: 0;
  15. border: 0;
  16. outline: 0;
  17. font-size: 100%;
  18. vertical-align: baseline;
  19. background: transparent;
  20. }
  21. body {
  22. line-height: 1;
  23. }
  24. ol, ul {
  25. list-style: none;
  26. }
  27. blockquote, q {
  28. quotes: none;
  29. }
  30. blockquote:before, blockquote:after,
  31. q:before, q:after {
  32. content: '';
  33. content: none;
  34. }
  35. /* remember to define focus styles! */
  36. :focus {
  37. outline: 0;
  38. }
  39. /* remember to highlight inserts somehow! */
  40. ins {
  41. text-decoration: none;
  42. }
  43. del {
  44. text-decoration: line-through;
  45. }
  46. /* tables still need 'cellspacing="0"' in the markup */
  47. table {
  48. border-collapse: collapse;
  49. border-spacing: 0;
  50. }