style.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. .list-of-tags {
  2. list-style:none;
  3. margin:0;
  4. padding:5px 0 ;
  5. overflow:hidden;
  6. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  7. }
  8. .list-of-tags li {
  9. line-height:28px;
  10. float:left;
  11. margin:0px;
  12. }
  13. .list-of-tags a {
  14. padding: 3px 6px;
  15. margin: 2px;
  16. color: #222;
  17. background:#EEE;
  18. border-radius: 3px;
  19. text-decoration:none;
  20. }
  21. .list-of-tags a span {
  22. vertical-align: super;
  23. font-size: 0.8em;
  24. }
  25. .tags-in-article li {
  26. line-height:28px;
  27. float:none;
  28. }
  29. .article-content {
  30. text-align:justify;
  31. max-width:50em;
  32. }
  33. .article-content p{
  34. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  35. font-variant: normal;
  36. text-transform: none;
  37. font-size: 1.1em;
  38. line-height: 1.6em;
  39. margin:20px 0px 20px 0px;
  40. }
  41. .article-content blockquote {
  42. padding: 0px 0px 0px 20px;
  43. margin: 20px 0px 20px 0px;
  44. border-left: 5px solid rgb(100,100,100);
  45. }
  46. .article-content blockquote p {
  47. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  48. font-variant: normal;
  49. text-transform: none;
  50. font-size: 1.2em;
  51. line-height: 1.7em;
  52. }
  53. .list-of-categories span {
  54. vertical-align: super;
  55. font-size: 0.8em;
  56. }
  57. a.list-of-categories {
  58. text-decoration:none;
  59. }
  60. h1 {
  61. padding: 5px 5px 15px 5px;
  62. margin: 20px 0px 20px 0px;
  63. border-bottom: 1px solid rgb(204, 204, 204);
  64. font-size: 3em;
  65. }
  66. ul {
  67. list-style-type: circle;
  68. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  69. font-size:1em;
  70. list-style-position: inside;
  71. }
  72. ol {
  73. list-style-type: decimal;
  74. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  75. font-size: 1em;
  76. list-style-position: inside;
  77. }
  78. li {
  79. margin:1px 0px 1px 20px;
  80. }
  81. dl {
  82. list-style-type: decimal;
  83. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  84. font-size: 1em;
  85. list-style-position: inside;
  86. margin:20px 0px 20px 20px;
  87. }
  88. dd {
  89. margin:1px 0px 1px 20px;
  90. padding:3px 0px 3px 0px;
  91. }
  92. dt {
  93. font-size:1.3em;
  94. }