elegant.css 7.7 KB

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