style.css 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. body,html{
  2. height:100%;
  3. }
  4. #content-sans-footer{
  5. min-height:100%;
  6. }
  7. /* site title */
  8. .site-name {
  9. font-family: "Monaco","Inconsolata","Andale Mono","Lucida Console","Bitstream Vera Sans Mono","Courier New",Courier,monospace;
  10. }
  11. /* footer */
  12. div#footer {
  13. margin:15px 0px;
  14. border-top:1px solid rgba(0,0,0,0.2);
  15. padding:2px 5px 0px 5px;
  16. font-size:0.7em;
  17. font-family:calibri,tahoma,arial,sans-serif;
  18. }
  19. ul.footer-content{
  20. list-style:none;
  21. padding:0px;
  22. margin:0px;
  23. }
  24. ul.footer-content li {
  25. padding-left:5px;
  26. }
  27. ul.footer-content li.elegant-power {
  28. float:right;
  29. }
  30. ul.footer-content li.elegant-license {
  31. float:left;
  32. }
  33. ul.footer-content li.elegant-subtitle{
  34. float:left;
  35. }
  36. /* comment */
  37. #comment-message {
  38. font-family:Scala,Georgia,"DejaVu Serif","Times New Roman",Times,serif;
  39. font-size: 1em;
  40. color:gray;
  41. }
  42. a.disqus-comment-count {
  43. font-family:'Trebuchet MS',Trebuchet,'Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
  44. font-size: 0.9em;
  45. }
  46. div#disqus_thread {
  47. padding-left:10px;
  48. padding-right:10px;
  49. }
  50. /* Syntax Highlight */
  51. .highlight pre {
  52. background-color:rgb(253,246,227);
  53. border-radius:3px 3px 3px 3px;
  54. }
  55. td.code .highlight pre {
  56. border-radius:0px 3px 3px 0px;
  57. }
  58. td.code {
  59. width:100%;
  60. }
  61. .linenodiv pre {
  62. border-radius:3px 0px 0px 3px;
  63. color:rgb(101,123,131);
  64. background-color:rgb(238,232,213);
  65. }
  66. /* Tags */
  67. .list-of-tags {
  68. list-style:none;
  69. margin:0;
  70. padding:5px 0 ;
  71. overflow:hidden;
  72. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  73. }
  74. .list-of-tags li {
  75. line-height:28px;
  76. float:left;
  77. margin:0px;
  78. }
  79. .list-of-tags a {
  80. padding: 3px 6px;
  81. margin: 2px;
  82. color: #222;
  83. background:#EEE;
  84. border-radius: 3px;
  85. text-decoration:none;
  86. }
  87. .list-of-tags a span {
  88. vertical-align: super;
  89. font-size: 0.8em;
  90. }
  91. .tags-in-article li {
  92. line-height:28px;
  93. float:none;
  94. }
  95. h2.tag-title {
  96. font-family:'Trebuchet MS',Trebuchet,'Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
  97. }
  98. ul.articles-in-tag li {
  99. font-family:'Trebuchet MS',Trebuchet,'Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
  100. font-size:1.1em;
  101. }
  102. /* Article */
  103. article p a {
  104. color:black;
  105. border-bottom:0.5px dashed darkblue;
  106. }
  107. article p a:hover {
  108. text-shadow:none;
  109. text-decoration:none;
  110. border-bottom:none;
  111. }
  112. .article-content {
  113. text-align:justify;
  114. max-width:50em;
  115. }
  116. .article-content p{
  117. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  118. font-variant: normal;
  119. text-transform: none;
  120. font-size: 1.1em;
  121. line-height: 1.6em;
  122. margin:20px 0px 20px 0px;
  123. }
  124. .article-content blockquote {
  125. padding: 0px 0px 0px 20px;
  126. margin: 20px 0px 20px 0px;
  127. border-left: 5px solid rgb(100,100,100);
  128. }
  129. .article-content blockquote p {
  130. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  131. font-variant: normal;
  132. text-transform: none;
  133. font-size: 1.2em;
  134. line-height: 1.7em;
  135. }
  136. .article-content ul {
  137. list-style-type: circle;
  138. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  139. font-size:1em;
  140. list-style-position: inside;
  141. }
  142. .article-content ol {
  143. list-style-type: decimal;
  144. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  145. font-size: 1em;
  146. list-style-position: inside;
  147. }
  148. .article-content li {
  149. margin:1px 0px 1px 20px;
  150. }
  151. .article-content dl {
  152. list-style-type: decimal;
  153. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  154. font-size: 1em;
  155. list-style-position: inside;
  156. margin:20px 0px 20px 20px;
  157. }
  158. .article-content dd {
  159. margin:1px 0px 1px 20px;
  160. padding:3px 0px 3px 0px;
  161. }
  162. .article-content dt {
  163. font-size:1.3em;
  164. }
  165. .page_header h1 {
  166. color:darkred;
  167. padding: 5px 5px 15px 5px;
  168. margin: 20px 0px 20px 0px;
  169. border-bottom: 1px solid rgb(143, 134, 134);
  170. font-size: 3em;
  171. font-family: Georgia, "DejaVu Serif", "Times New Roman", Times, serif;
  172. font-weight:normal;
  173. }
  174. .page_header h1 small {
  175. color:rgb(143, 116, 116);
  176. }
  177. .page_header h1 a {
  178. color:darkred;
  179. }
  180. .page_header h1 a:hover {
  181. text-decoration:none;
  182. }
  183. ul.articles_timeline {
  184. list-style:none;
  185. margin:0px;
  186. padding-bottom:30px;
  187. }
  188. ul.articles_timeline li.next_article {
  189. float:right;
  190. margin:0px;
  191. }
  192. ul.articles_timeline li.previous_article {
  193. float:left;
  194. margin:0px;
  195. }
  196. /* Categories */
  197. .list-of-categories span {
  198. vertical-align: super;
  199. font-size: 0.7em;
  200. }
  201. a.list-of-categories {
  202. text-decoration:none;
  203. }
  204. ul.list-articles-category {
  205. list-style:none outside none;
  206. margin:0px 0px 0px 5px;
  207. }
  208. ul.list-articles-category li span{
  209. margin-right:10px;
  210. color:#AAAAAA;
  211. font-family:"PT Sans","Helvetica Neue",Arial,sans-serif;
  212. font-size: 0.9em;
  213. }
  214. a.category-link {
  215. color:rgb(51,51,51);
  216. }
  217. a.category-link:hover {
  218. text-decoration:none;
  219. }
  220. a.list-of-categories {
  221. font-size:1.1em;
  222. font-family: 'Trebuchet MS',Trebuchet,'Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
  223. }
  224. a.list-of-categories:hover {
  225. color:white;
  226. background-color:rgb(0, 136, 204);
  227. border-radius:4px;
  228. }
  229. /* Base CSS */
  230. h2 a {
  231. color:rgb(51,51,51);
  232. }
  233. h2 a:hover {
  234. text-decoration:none;
  235. color:rgb(51,51,51);
  236. }
  237. a {
  238. color:rgb(56, 117, 215);
  239. }
  240. /* archives */
  241. ul.list-all-articles {
  242. list-style:none;
  243. margin:0px;
  244. }
  245. ul.list-all-articles li {
  246. border-bottom:1px dotted black;
  247. padding:0.3em 0em;
  248. font-size:1.1em;
  249. font-family: 'Trebuchet MS',Trebuchet,'Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
  250. }
  251. ul.list-all-articles li time {
  252. float:right;
  253. color:#AAAAAA;
  254. font-family:"PT Sans","Helvetica Neue",Arial,sans-serif;
  255. font-size: 0.9em;
  256. }
  257. /* top menu */
  258. ul.top-menu li a {
  259. font-weight: bold;
  260. }
  261. /* MailChimp */
  262. #mc_embed_signup {
  263. font-size:inherit;
  264. font-family:inherit;
  265. margin:10px 0px;
  266. }
  267. #mc_embed_signup form {
  268. padding:0px;
  269. }
  270. #mc_embed_signup input.button {
  271. width: 100%
  272. }
  273. #mc_embed_signup input.email {
  274. width:100%;
  275. }