style.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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. h2.tag-title {
  47. font-family:'Trebuchet MS',Trebuchet,'Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif
  48. }
  49. /* Article */
  50. .article-content {
  51. text-align:justify;
  52. max-width:50em;
  53. }
  54. .article-content p{
  55. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  56. font-variant: normal;
  57. text-transform: none;
  58. font-size: 1.1em;
  59. line-height: 1.6em;
  60. margin:20px 0px 20px 0px;
  61. }
  62. .article-content blockquote {
  63. padding: 0px 0px 0px 20px;
  64. margin: 20px 0px 20px 0px;
  65. border-left: 5px solid rgb(100,100,100);
  66. }
  67. .article-content blockquote p {
  68. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  69. font-variant: normal;
  70. text-transform: none;
  71. font-size: 1.2em;
  72. line-height: 1.7em;
  73. }
  74. .article-content ul {
  75. list-style-type: circle;
  76. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  77. font-size:1em;
  78. list-style-position: inside;
  79. }
  80. .article-content ol {
  81. list-style-type: decimal;
  82. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  83. font-size: 1em;
  84. list-style-position: inside;
  85. }
  86. .article-content li {
  87. margin:1px 0px 1px 20px;
  88. }
  89. .article-content dl {
  90. list-style-type: decimal;
  91. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  92. font-size: 1em;
  93. list-style-position: inside;
  94. margin:20px 0px 20px 20px;
  95. }
  96. .article-content dd {
  97. margin:1px 0px 1px 20px;
  98. padding:3px 0px 3px 0px;
  99. }
  100. .article-content dt {
  101. font-size:1.3em;
  102. }
  103. .page_header h1 {
  104. color:darkred;
  105. padding: 5px 5px 15px 5px;
  106. margin: 20px 0px 20px 0px;
  107. border-bottom: 1px solid rgb(143, 134, 134);
  108. font-size: 3em;
  109. font-family: Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  110. font-weight:normal;
  111. }
  112. .page_header h1 small {
  113. color:rgb(143, 116, 116);
  114. }
  115. .page_header h1 a {
  116. color:darkred;
  117. }
  118. .page_header h1 a:hover {
  119. text-decoration:none;
  120. }
  121. /* Categories */
  122. .list-of-categories span {
  123. vertical-align: super;
  124. font-size: 0.8em;
  125. }
  126. a.list-of-categories {
  127. text-decoration:none;
  128. }
  129. /* Base CSS */
  130. h2 a {
  131. color:rgb(51,51,51);
  132. }
  133. h2 a:hover {
  134. text-decoration:none;
  135. color:rgb(51,51,51);
  136. }
  137. a.category-link {
  138. color:rgb(51,51,51);
  139. }
  140. a.category-link:hover {
  141. text-decoration:none;
  142. }
  143. a {
  144. color:rgb(56, 117, 215);
  145. }
  146. a.list-of-categories {
  147. font-size:1.1em;
  148. font-family: 'Trebuchet MS',Trebuchet,'Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
  149. }
  150. a.list-of-categories:hover {
  151. color:white;
  152. background-color:rgb(0, 136, 204);
  153. border-radius:4px;
  154. }