text.css 996 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. 960 Grid System ~ Text CSS.
  3. Learn more ~ http://960.gs/
  4. Licensed under GPL and MIT.
  5. */
  6. /* `Basic HTML
  7. ----------------------------------------------------------------------------------------------------*/
  8. body {
  9. font: 13px/1.5 Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif;
  10. }
  11. a:focus {
  12. outline: 1px dotted invert;
  13. }
  14. hr {
  15. border: 0 #ccc solid;
  16. border-top-width: 1px;
  17. clear: both;
  18. height: 0;
  19. }
  20. /* `Headings
  21. ----------------------------------------------------------------------------------------------------*/
  22. h1 {
  23. font-size: 25px;
  24. }
  25. h2 {
  26. font-size: 23px;
  27. }
  28. h3 {
  29. font-size: 21px;
  30. }
  31. h4 {
  32. font-size: 19px;
  33. }
  34. h5 {
  35. font-size: 17px;
  36. }
  37. h6 {
  38. font-size: 15px;
  39. }
  40. /* `Spacing
  41. ----------------------------------------------------------------------------------------------------*/
  42. ol {
  43. list-style: decimal;
  44. }
  45. ul {
  46. list-style: square;
  47. }
  48. li {
  49. margin-left: 30px;
  50. }
  51. p,
  52. dl,
  53. hr,
  54. h1,
  55. h2,
  56. h3,
  57. h4,
  58. h5,
  59. h6,
  60. ol,
  61. ul,
  62. pre,
  63. table,
  64. address,
  65. fieldset {
  66. margin-bottom: 20px;
  67. }