style.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /* Syntax Highlight */
  2. .codehilite pre {
  3. background-color:rgb(253,246,227);
  4. border-radius:3px 3px 3px 3px;
  5. }
  6. td.code .codehilite pre {
  7. border-radius:0px 3px 3px 0px;
  8. }
  9. td.code {
  10. width:100%;
  11. }
  12. .linenodiv pre {
  13. border-radius:3px 0px 0px 3px;
  14. color:rgb(101,123,131);
  15. background-color:rgb(238,232,213);
  16. }
  17. /* Tags */
  18. .list-of-tags {
  19. list-style:none;
  20. margin:0;
  21. padding:5px 0 ;
  22. overflow:hidden;
  23. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  24. }
  25. .list-of-tags li {
  26. line-height:28px;
  27. float:left;
  28. margin:0px;
  29. }
  30. .list-of-tags a {
  31. padding: 3px 6px;
  32. margin: 2px;
  33. color: #222;
  34. background:#EEE;
  35. border-radius: 3px;
  36. text-decoration:none;
  37. }
  38. .list-of-tags a span {
  39. vertical-align: super;
  40. font-size: 0.8em;
  41. }
  42. .tags-in-article li {
  43. line-height:28px;
  44. float:none;
  45. }
  46. .article-content {
  47. text-align:justify;
  48. max-width:50em;
  49. }
  50. .article-content p{
  51. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  52. font-variant: normal;
  53. text-transform: none;
  54. font-size: 1.1em;
  55. line-height: 1.6em;
  56. margin:20px 0px 20px 0px;
  57. }
  58. .article-content blockquote {
  59. padding: 0px 0px 0px 20px;
  60. margin: 20px 0px 20px 0px;
  61. border-left: 5px solid rgb(100,100,100);
  62. }
  63. .article-content blockquote p {
  64. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  65. font-variant: normal;
  66. text-transform: none;
  67. font-size: 1.2em;
  68. line-height: 1.7em;
  69. }
  70. .list-of-categories span {
  71. vertical-align: super;
  72. font-size: 0.8em;
  73. }
  74. a.list-of-categories {
  75. text-decoration:none;
  76. }
  77. .article-content ul {
  78. list-style-type: circle;
  79. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  80. font-size:1em;
  81. list-style-position: inside;
  82. }
  83. .article-content ol {
  84. list-style-type: decimal;
  85. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  86. font-size: 1em;
  87. list-style-position: inside;
  88. }
  89. .article-content li {
  90. margin:1px 0px 1px 20px;
  91. }
  92. .article-content dl {
  93. list-style-type: decimal;
  94. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  95. font-size: 1em;
  96. list-style-position: inside;
  97. margin:20px 0px 20px 20px;
  98. }
  99. .article-content dd {
  100. margin:1px 0px 1px 20px;
  101. padding:3px 0px 3px 0px;
  102. }
  103. .article-content dt {
  104. font-size:1.3em;
  105. }
  106. .page_header h1 {
  107. color:darkred;
  108. padding: 5px 5px 15px 5px;
  109. margin: 20px 0px 20px 0px;
  110. border-bottom: 1px solid rgb(143, 134, 134);
  111. font-size: 3em;
  112. font-family: Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  113. font-weight:normal;
  114. }
  115. .page_header h1 small {
  116. color:rgb(143, 116, 116);
  117. }
  118. .page_header h1 a {
  119. color:darkred;
  120. }
  121. .page_header h1 a:hover {
  122. text-decoration:none;
  123. }
  124. h2 a {
  125. color:rgb(51,51,51);
  126. }
  127. h2 a:hover {
  128. text-decoration:none;
  129. color:rgb(51,51,51);
  130. }
  131. a.category-link {
  132. color:rgb(51,51,51);
  133. }
  134. a.category-link:hover {
  135. text-decoration:none;
  136. }
  137. a {
  138. color:rgb(56, 117, 215);
  139. }
  140. a.list-of-categories {
  141. font-size:1.1em;
  142. font-family: 'Trebuchet MS',Trebuchet,'Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
  143. }
  144. a.list-of-categories:hover {
  145. color:white;
  146. background-color:rgb(0, 136, 204);
  147. border-radius:4px;
  148. }