elegant.css 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. body,
  2. html {
  3. height: 100%;
  4. }
  5. #content-sans-footer {
  6. min-height: 100%;
  7. }
  8. h1,
  9. h2,
  10. h3,
  11. h4,
  12. h5,
  13. h5 {
  14. font-family: Baskerville,Garamond,Georgia,'DejaVu Serif','Times New Roman',Times,serif;
  15. font-weight: normal;
  16. }
  17. a {
  18. color: #3875d7;
  19. }
  20. /* site title */
  21. .site-name {
  22. font-family: 'Monaco','Inconsolata','Andale Mono','Lucida Console','Bitstream Vera Sans Mono','Courier New',Courier,monospace;
  23. }
  24. /* Top navigation menu */
  25. ul.top-menu li a {
  26. font-weight: bold;
  27. }
  28. /* Footer */
  29. div#footer {
  30. border-top: 1px solid rgba(0,0,0,.2);
  31. font-family: calibri,tahoma,arial,sans-serif;
  32. font-size:.7em;
  33. margin: 15px 0;
  34. padding: 2px 5px 0;
  35. }
  36. ul.footer-content {
  37. list-style: none;
  38. margin: 0;
  39. padding: 0;
  40. }
  41. ul.footer-content li {
  42. padding-left: 5px;
  43. }
  44. ul.footer-content li.elegant-power {
  45. float: right;
  46. }
  47. ul.footer-content li.elegant-license {
  48. float: left;
  49. }
  50. ul.footer-content li.elegant-subtitle {
  51. float: left;
  52. }
  53. /* comment */
  54. #comment-message {
  55. color: #808080;
  56. font-family: 'PT Serif',Georgia,Times,'Times New Roman',serif;
  57. font-size: 1em;
  58. }
  59. a.disqus-comment-count {
  60. font-family: 'Trebuchet MS',Trebuchet,'Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
  61. font-size: .9em;
  62. }
  63. div#disqus_thread {
  64. padding-left: 10px;
  65. padding-right: 10px;
  66. }
  67. /* Syntax Highlight */
  68. .highlight pre {
  69. background-color: #fdf6e3;
  70. border-radius: 3px 3px 3px 3px;
  71. }
  72. td.code .highlight pre {
  73. border-radius: 0 3px 3px 0;
  74. }
  75. td.code {
  76. width: 100%;
  77. }
  78. .linenodiv pre {
  79. background-color: #eee8d5;
  80. border-radius: 3px 0 0 3px;
  81. color: #657b83;
  82. }
  83. /* Tags */
  84. .list-of-tags {
  85. font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
  86. list-style: none;
  87. margin: 0;
  88. overflow: hidden;
  89. }
  90. .list-of-tags li {
  91. float: left;
  92. line-height: 28px;
  93. margin: 0;
  94. }
  95. .list-of-tags a {
  96. background: #EEE;
  97. border-radius: 3px;
  98. color: #222;
  99. margin: 2px;
  100. padding: 3px 6px;
  101. text-decoration: none;
  102. }
  103. .list-of-tags a span {
  104. font-size: .8em;
  105. vertical-align: super;
  106. }
  107. .tags-in-article li {
  108. float: none;
  109. line-height: 28px;
  110. }
  111. h2.tag-title {
  112. font-family: 'Trebuchet MS',Trebuchet,'Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
  113. }
  114. ul.articles-in-tag li {
  115. font-family: 'Trebuchet MS',Trebuchet,'Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
  116. font-size: 1.1em;
  117. }
  118. /* Article */
  119. article p a,
  120. article ol a,
  121. article div.article-content ul:not(.articles_timeline) a {
  122. border-bottom: thin dashed #A9A9A9;
  123. color: #000;
  124. }
  125. article p a:hover,
  126. article ol a:hover,
  127. article div.article-content ul:not(.articles_timeline) a:hover {
  128. border-bottom: none;
  129. text-decoration: none;
  130. text-shadow: none;
  131. }
  132. .article-content {
  133. font-family: 'PT Serif',Georgia,Times,'Times New Roman',serif;
  134. font-size: 1.2em;
  135. max-width: 50em;
  136. text-align: justify;
  137. }
  138. .article-content p {
  139. font-size: inherit;
  140. font-variant: normal;
  141. line-height: 1.6em;
  142. margin: 20px 0;
  143. text-transform: none;
  144. }
  145. .article-content blockquote {
  146. border-left: 0;
  147. margin: 20px 0 0 2em;
  148. padding: 0 0 0 20px;
  149. }
  150. .article-content blockquote:before {
  151. color: #646464;
  152. content: '\f10d';
  153. font-family: FontAwesome;
  154. font-size: 18px;
  155. font-style: normal;
  156. font-weight: normal;
  157. margin-left: -2em;
  158. text-decoration: inherit;
  159. }
  160. .article-content blockquote p {
  161. font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
  162. font-size: inherit;
  163. font-variant: normal;
  164. line-height: 1.7em;
  165. margin-top:-20px;
  166. text-transform: none;
  167. }
  168. .article-content ul {
  169. font-size: inherit;
  170. list-style-type: circle;
  171. }
  172. .article-content ol {
  173. font-size: inherit;
  174. list-style-type: decimal;
  175. }
  176. .article-content li {
  177. line-height: 1.7em;
  178. list-style-position: outside;
  179. margin: 1px 0 1px 20px;
  180. }
  181. .article-content dl {
  182. font-size: inherit;
  183. list-style-position: outside;
  184. list-style-type: decimal;
  185. margin: 20px 0 20px 20px;
  186. }
  187. .article-content dd {
  188. line-height: 1.7em;
  189. margin: 1px 0 1px 20px;
  190. padding: 3px 0;
  191. }
  192. .article-content dt {
  193. font-size: inherit;
  194. }
  195. .page_header h1 {
  196. border-bottom: 1px solid #8f8686;
  197. color: #8B0000;
  198. font-size: 3em;
  199. font-weight: normal;
  200. margin: 20px 0;
  201. padding: 5px 5px 15px;
  202. }
  203. .page_header h1 small {
  204. color: #8f7474;
  205. }
  206. .page_header h1 a {
  207. color: #8B0000;
  208. }
  209. .page_header h1 a:hover {
  210. text-decoration: none;
  211. }
  212. ul.articles_timeline {
  213. list-style: none;
  214. margin: 0;
  215. padding-bottom: 30px;
  216. }
  217. ul.articles_timeline li.next_article {
  218. float: right;
  219. margin: 0;
  220. }
  221. ul.articles_timeline li.previous_article {
  222. float: left;
  223. margin: 0;
  224. }
  225. .sidebar-social-links {
  226. color: #646464;
  227. font-size: 1.2em;
  228. padding-right: 3px;
  229. text-decoration: none;
  230. }
  231. .sidebar-social-links i:hover {
  232. color: #000;
  233. }
  234. .table-of-content .toc {
  235. font-size: .7em;
  236. }
  237. .last-updated a {
  238. color: #333;
  239. }
  240. .last-updated a:hover {
  241. text-decoration: none;
  242. }
  243. .article-content img {
  244. border: 2px solid #EEE;
  245. padding: 5px;
  246. }
  247. /* Perma link in article */
  248. h1:hover > a.headerlink,
  249. h2:hover > a.headerlink,
  250. h3:hover > a.headerlink,
  251. h4:hover > a.headerlink,
  252. h5:hover > a.headerlink,
  253. h6:hover > a.headerlink,
  254. dt:hover > a.headerlink {
  255. text-decoration: none;
  256. visibility: visible;
  257. }
  258. a.headerlink {
  259. color: grey;
  260. padding-left:.5em;
  261. visibility: hidden;
  262. }
  263. /* Categories */
  264. .list-of-categories span {
  265. font-size: .7em;
  266. vertical-align: super;
  267. }
  268. a.list-of-categories {
  269. text-decoration: none;
  270. }
  271. ul.list-articles-category {
  272. list-style: none outside none;
  273. margin: 0 0 0 5px;
  274. }
  275. ul.list-articles-category li span {
  276. color: #AAA;
  277. font-family: 'PT Sans','Helvetica Neue',Arial,sans-serif;
  278. font-size: .9em;
  279. margin-right: 10px;
  280. }
  281. a.category-link {
  282. color: #333;
  283. }
  284. a.category-link:hover {
  285. text-decoration: none;
  286. }
  287. a.list-of-categories {
  288. font-family: 'Trebuchet MS',Trebuchet,'Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
  289. font-size: 1.1em;
  290. }
  291. a.list-of-categories:hover {
  292. background-color: #08c;
  293. border-radius: 4px;
  294. color: #FFF;
  295. }
  296. /* Archives */
  297. ul.list-all-articles {
  298. list-style: none;
  299. margin: 0;
  300. }
  301. ul.list-all-articles li {
  302. border-bottom: 1px dotted #000;
  303. font-family: 'Trebuchet MS',Trebuchet,'Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
  304. font-size: 1.1em;
  305. padding:.3em 0;
  306. }
  307. ul.list-all-articles li time {
  308. color: #AAA;
  309. float: right;
  310. font-family: 'PT Sans','Helvetica Neue',Arial,sans-serif;
  311. font-size: .9em;
  312. }
  313. /* MailChimp */
  314. /* MailChimp Form Embed Code - Slim - 08/17/2011
  315. * http://cdn-images.mailchimp.com/embedcode/slim-081711.css */
  316. #mc_embed_signup form {display:block; position:relative; text-align:left;}
  317. #mc_embed_signup input {border:1px solid #999; -webkit-appearance:none;}
  318. #mc_embed_signup input:focus {border-color:#333;}
  319. #mc_embed_signup .button {clear:both; border-radius:4px; cursor: pointer; display: inline-block; height: 32px; line-height: 32px; margin: 0 5px 10px 0; padding:0; text-align: center; text-decoration: none; vertical-align: top; white-space: nowrap; width: auto;}
  320. #mc_embed_signup .clear {clear:none; display:inline;}
  321. #mc_embed_signup input.email {display:block; padding:8px 0; margin:0 4% 10px 0; text-indent:5px; min-width:130px;}
  322. #mc_embed_signup input.button {display:block; margin:0 0 10px 0; min-width:90px;}
  323. /* end of code copied from Mailchimp provided CSS file */
  324. #mc_embed_signup {
  325. font-family: inherit;
  326. font-size: inherit;
  327. margin: 10px 0;
  328. }
  329. #mc_embed_signup form {
  330. padding: 0;
  331. }
  332. #mc_embed_signup input.button {
  333. width: 100%
  334. }
  335. #mc_embed_signup input.email {
  336. font-size: .9em;
  337. width: 100%;
  338. }
  339. #mc_embed_signup .button {
  340. background-color: #EEE;
  341. border: 1px solid #D3D3D3;
  342. color: #000;
  343. font-size: 1em;
  344. font-weight: normal;
  345. }
  346. #mc_embed_signup .button:hover {
  347. background-color: #DFDFDF;
  348. }
  349. #mc_embed_signup input[type='email'] {
  350. height: 100%;
  351. }
  352. /* Index page */
  353. #allposts {
  354. color: #999;
  355. float: right;
  356. font-size: 75%;
  357. font-weight: normal;
  358. }
  359. .proj_desc {
  360. color: #999;
  361. font-family: 'PT Sans','Helvetica Neue',Arial,sans-serif;
  362. font-size: .9em;
  363. }
  364. /* reST specific rules*/
  365. .literal {
  366. background-color: #f7f7f9;
  367. border: 1px solid #e1e1e8;
  368. color: #d14;
  369. padding: 2px 4px;
  370. white-space: nowrap;
  371. }
  372. .amp {
  373. font-family: 'Warnock Pro','Goudy Old Style','Palatino','Book Antiqua',serif;
  374. font-style: italic;
  375. }