elegant.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  1. /* Solarized Light Theme for code snippets */
  2. .hll { background-color: #ffc }
  3. .c { color: #93a1a1; font-style: italic } /* Comment */
  4. .err { color: #dc322f } /* Error */
  5. .g { color: #657b83 } /* Generic */
  6. .k { color: #859900 } /* Keyword */
  7. .l { color: #657b83 } /* Literal */
  8. .n { color: #586e75 } /* Name */
  9. .o { color: #657b83 } /* Operator */
  10. .x { color: #657b83 } /* Other */
  11. .p { color: #657b83 } /* Punctuation */
  12. .cm { color: #93a1a1; font-style: italic } /* Comment.Multiline */
  13. .cp { color: #93a1a1; font-style: italic } /* Comment.Preproc */
  14. .c1 { color: #93a1a1; font-style: italic } /* Comment.Single */
  15. .cs { color: #93a1a1; font-style: italic } /* Comment.Special */
  16. .gd { color: #657b83 } /* Generic.Deleted */
  17. .ge { color: #657b83 } /* Generic.Emph */
  18. .gr { color: #657b83 } /* Generic.Error */
  19. .gh { color: #657b83 } /* Generic.Heading */
  20. .gi { color: #657b83 } /* Generic.Inserted */
  21. .go { color: #657b83 } /* Generic.Output */
  22. .gp { color: #657b83 } /* Generic.Prompt */
  23. .gs { color: #657b83 } /* Generic.Strong */
  24. .gu { color: #657b83 } /* Generic.Subheading */
  25. .gt { color: #657b83 } /* Generic.Traceback */
  26. .kc { color: #859900 } /* Keyword.Constant */
  27. .kd { color: #859900 } /* Keyword.Declaration */
  28. .kn { color: #cb4b16 } /* Keyword.Namespace */
  29. .kp { color: #cb4b16 } /* Keyword.Pseudo */
  30. .kr { color: #859900 } /* Keyword.Reserved */
  31. .kt { color: #859900 } /* Keyword.Type */
  32. .ld { color: #657b83 } /* Literal.Date */
  33. .m { color: #2aa198 } /* Literal.Number */
  34. .s { color: #2aa198 } /* Literal.String */
  35. .na { color: #657b83 } /* Name.Attribute */
  36. .nb { color: #268bd2 } /* Name.Builtin */
  37. .nc { color: #268bd2 } /* Name.Class */
  38. .no { color: #b58900 } /* Name.Constant */
  39. .nd { color: #cb4b16 } /* Name.Decorator */
  40. .ni { color: #cb4b16 } /* Name.Entity */
  41. .ne { color: #cb4b16 } /* Name.Exception */
  42. .nf { color: #268bd2 } /* Name.Function */
  43. .nl { color: #657b83 } /* Name.Label */
  44. .nn { color: #b58900 } /* Name.Namespace */
  45. .nx { color: #657b83 } /* Name.Other */
  46. .py { color: #268bd2 } /* Name.Property */
  47. .nt { color: #859900 } /* Name.Tag */
  48. .nv { color: #cd4b16 } /* Name.Variable */
  49. .ow { color: #859900 } /* Operator.Word */
  50. .w { color: #fdf6e3 } /* Text.Whitespace */
  51. .mf { color: #2aa198 } /* Literal.Number.Float */
  52. .mh { color: #2aa198 } /* Literal.Number.Hex */
  53. .mi { color: #2aa198 } /* Literal.Number.Integer */
  54. .mo { color: #2aa198 } /* Literal.Number.Oct */
  55. .sb { color: #2aa198 } /* Literal.String.Backtick */
  56. .sc { color: #2aa198 } /* Literal.String.Char */
  57. .sd { color: #2aa198 } /* Literal.String.Doc */
  58. .s2 { color: #2aa198 } /* Literal.String.Double */
  59. .se { color: #cb4b16 } /* Literal.String.Escape */
  60. .sh { color: #2aa198 } /* Literal.String.Heredoc */
  61. .si { color: #cb4b16 } /* Literal.String.Interpol */
  62. .sx { color: #2aa198 } /* Literal.String.Other */
  63. .sr { color: #2aa198 } /* Literal.String.Regex */
  64. .s1 { color: #2aa198 } /* Literal.String.Single */
  65. .ss { color: #2aa198 } /* Literal.String.Symbol */
  66. .bp { color: #268bd2; font-weight: bold } /* Name.Builtin.Pseudo */
  67. .vc { color: #268bd2 } /* Name.Variable.Class */
  68. .vg { color: #268bd2 } /* Name.Variable.Global */
  69. .vi { color: #268bd2 } /* Name.Variable.Instance */
  70. .il { color: #2aa198 } /* Literal.Number.Integer.Long */
  71. /*
  72. Tipue Search 3.0.1
  73. Copyright (c) 2013 Tipue
  74. Tipue Search is released under the MIT License
  75. http://www.tipue.com/search
  76. */
  77. #tipue_search_content
  78. {
  79. clear: left;
  80. margin: 0;
  81. max-width: 650px;
  82. padding: 25px 0 13px 0;
  83. }
  84. #tipue_search_loading
  85. {
  86. background: #fff url('img/loader.gif') no-repeat left;
  87. padding-top: 60px;
  88. }
  89. #tipue_search_warning
  90. {
  91. color: #333;
  92. font: 12px/1.6 'Helvetica Neue', Helvetica, 'Gill Sans', 'Gill Sans MT', Calibri, Arial, Sans-Serif;
  93. margin: 7px 0;
  94. }
  95. #tipue_search_warning a
  96. {
  97. color: #3f72d8;
  98. text-decoration: none;
  99. }
  100. #tipue_search_warning a:hover
  101. {
  102. border-bottom: 1px solid #ccc;
  103. padding-bottom: 1px;
  104. }
  105. #tipue_search_results_count, #tipue_search_warning_head
  106. {
  107. border-bottom: 1px solid rgb(143, 134, 134);
  108. color: darkred;
  109. font-family: Baskerville, Garamond, Georgia, "DejaVu Serif", "Times New Roman", Times, Serif;
  110. font-size: 3em;
  111. font-weight: normal;
  112. margin: 20px 0 20px 0;
  113. padding: 5px 5px 15px 5px;
  114. }
  115. .tipue_search_content_title
  116. {
  117. font: 300 23px/1.6 'Helvetica Neue', Helvetica, 'Gill Sans', 'Gill Sans MT', Calibri, Arial, Sans-Serif;
  118. margin-top: 20px;
  119. }
  120. .tipue_search_content_title a
  121. {
  122. color: #3f72d8;
  123. text-decoration: none;
  124. }
  125. .tipue_search_content_title a:hover
  126. {
  127. border-bottom: 1px solid #ccc;
  128. padding-bottom: 1px;
  129. }
  130. .tipue_search_content_text
  131. {
  132. color: #333;
  133. font-family: Scala, Georgia, "DejaVu Serif", "Times New Roman", Times, Serif;
  134. font-size: 1em;
  135. font-variant: normal;
  136. line-height: 1.6em;
  137. padding: 13px 0;
  138. text-transform: none;
  139. }
  140. .tipue_search_content_text b {
  141. color: #EF1D1D;
  142. font-family: Garamond;
  143. font-size: 1.3em;
  144. }
  145. .tipue_search_content_loc
  146. {
  147. font: 300 13px/1.7 'Helvetica Neue', Helvetica, 'Gill Sans', 'Gill Sans MT', Calibri, Arial, Sans-Serif;
  148. overflow: auto;
  149. }
  150. .tipue_search_content_loc a
  151. {
  152. color: #555;
  153. text-decoration: none;
  154. }
  155. .tipue_search_content_loc a:hover
  156. {
  157. border-bottom: 1px solid #ccc;
  158. padding-bottom: 1px;
  159. }
  160. #tipue_search_foot
  161. {
  162. margin: 51px 0 21px 0;
  163. }
  164. #tipue_search_foot_boxes
  165. {
  166. font: 12px/1 'Helvetica Neue', Helvetica, 'Gill Sans', 'Gill Sans MT', Calibri, Arial, Sans-Serif;
  167. margin: 0;
  168. padding: 0;
  169. }
  170. #tipue_search_foot_boxes li
  171. {
  172. display: inline;
  173. list-style: none;
  174. margin: 0;
  175. padding: 0;
  176. }
  177. #tipue_search_foot_boxes li a
  178. {
  179. background-color: #f1f1f1;
  180. border-radius: 1px;
  181. border: 1px solid #dcdcdc;
  182. color: #333;
  183. margin-right: 7px;
  184. padding: 7px 13px 8px 13px;
  185. text-align: center;
  186. text-decoration: none;
  187. }
  188. #tipue_search_foot_boxes li.current
  189. {
  190. background: #fff;
  191. border-radius: 1px;
  192. border: 1px solid #dcdcdc;
  193. color: #333;
  194. margin-right: 7px;
  195. padding: 7px 13px 8px 13px;
  196. text-align: center;
  197. }
  198. #tipue_search_foot_boxes li a:hover
  199. {
  200. background-color: #f3f3f3;
  201. border: 1px solid #ccc;
  202. }
  203. /* Base */
  204. body,
  205. html {
  206. height: 100%;
  207. }
  208. #content-sans-footer {
  209. min-height: 100%;
  210. }
  211. h1,
  212. h2,
  213. h3,
  214. h4,
  215. h5,
  216. h6 {
  217. font-family: Baskerville, Garamond, Georgia, 'DejaVu Serif', 'Times New Roman', Times, Serif;
  218. font-weight: normal;
  219. }
  220. h1 small,
  221. h2 small,
  222. h3 small,
  223. h4 small,
  224. h5 small,
  225. h6 small {
  226. color: inherit;
  227. }
  228. a {
  229. color: #3875d7;
  230. }
  231. /* site title */
  232. .site-name {
  233. font-family: 'Monaco', 'Inconsolata', 'Andale Mono', 'Lucida Console', 'Bitstream Vera Sans Mono', 'Courier New', Courier, Monospace;
  234. }
  235. /* Top navigation menu */
  236. .top-menu li a {
  237. font-weight: bold;
  238. }
  239. /* Footer */
  240. #footer {
  241. border-top: 1px solid rgba(0, 0, 0, .2);
  242. font: .7em Calibri, Tahoma, Arial, Sans-Serif;
  243. margin: 15px 0;
  244. padding: 2px 5px 0;
  245. }
  246. ul.footer-content {
  247. list-style: none;
  248. margin: 0;
  249. padding: 0;
  250. }
  251. ul.footer-content li {
  252. padding-left: 5px;
  253. }
  254. .elegant-power {
  255. float: right;
  256. }
  257. .elegant-license {
  258. float: left;
  259. }
  260. .elegant-subtitle {
  261. float: left;
  262. }
  263. /* comment */
  264. #comment-message {
  265. color: #808080;
  266. }
  267. .disqus-comment-count {
  268. font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, Sans-Serif;
  269. font-size: .9em;
  270. }
  271. #disqus_thread {
  272. padding-left: 10px;
  273. padding-right: 10px;
  274. }
  275. /* Syntax Highlight */
  276. table {
  277. table-layout: fixed;
  278. width: 100%;
  279. }
  280. td {
  281. vertical-align: top;
  282. }
  283. @media (max-width:979px) {
  284. .linenos {
  285. display:none !important;
  286. }
  287. }
  288. .linenos {
  289. width: 30px;
  290. }
  291. .linenos div pre {
  292. text-align: right;
  293. overflow: hidden;
  294. }
  295. pre {
  296. overflow: auto;
  297. white-space: pre;
  298. word-break: normal;
  299. word-wrap: normal;
  300. }
  301. .highlight pre {
  302. background-color: #fdf6e3;
  303. border-radius: 3px 3px 3px 3px;
  304. }
  305. td.code .highlight pre {
  306. border-radius: 0 3px 3px 0;
  307. }
  308. td.code {
  309. width: 100%;
  310. }
  311. .linenodiv pre {
  312. background-color: #eee8d5;
  313. border-radius: 3px 0 0 3px;
  314. color: #657b83;
  315. }
  316. div.highlight {
  317. margin-bottom: 20px;
  318. }
  319. /* Tags */
  320. .list-of-tags {
  321. font-family: 'Helvetica Neue', Helvetica, Arial, Sans-Serif;
  322. list-style: none;
  323. margin: 0;
  324. overflow: hidden;
  325. }
  326. .list-of-tags li {
  327. float: left;
  328. line-height: 28px;
  329. margin: 0;
  330. }
  331. .list-of-tags a {
  332. background: #EEE;
  333. border-radius: 3px;
  334. color: #222;
  335. margin: 2px;
  336. padding: 3px 6px;
  337. text-decoration: none;
  338. }
  339. .list-of-tags a span {
  340. font-size: .8em;
  341. vertical-align: super;
  342. }
  343. .tags-in-article li {
  344. float: none;
  345. line-height: 28px;
  346. }
  347. .tag-title {
  348. font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, Sans-Serif;
  349. }
  350. .articles-in-tag li {
  351. font: 1.1em/1.6em 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, Sans-Serif;
  352. }
  353. /* Article */
  354. article p a,
  355. article ol a,
  356. article div.article-content ul:not(.articles-timeline) a {
  357. border-bottom: thin dashed #A9A9A9;
  358. color: #000;
  359. }
  360. article p a:hover,
  361. article ol a:hover,
  362. article div.article-content ul:not(.articles-timeline) a:hover {
  363. border-bottom: none;
  364. text-decoration: none;
  365. text-shadow: none;
  366. }
  367. .article-content {
  368. font: 1.2em/1.6em 'PT Serif', Georgia, Times, 'Times New Roman', Serif;
  369. max-width: 50em;
  370. text-align: justify;
  371. }
  372. .article-content p {
  373. font-size: inherit;
  374. font-variant: normal;
  375. line-height: 1.6em;
  376. margin: 20px 0;
  377. text-transform: none;
  378. }
  379. .article-content blockquote {
  380. border-left: 0;
  381. margin: 20px 0 0 2em;
  382. padding: 0 0 0 20px;
  383. }
  384. .article-content blockquote:before {
  385. color: #646464;
  386. content: '\f10d';
  387. font: 18px FontAwesome;
  388. font-style: normal;
  389. font-weight: normal;
  390. margin-left: -2em;
  391. text-decoration: inherit;
  392. position:absolute;
  393. }
  394. .article-content blockquote {
  395. font-family: 'Helvetica Neue', Helvetica, Arial, Sans-Serif;
  396. font-size: inherit;
  397. font-variant: normal;
  398. line-height: 1.7em;
  399. text-transform: none;
  400. font-weight: 300;
  401. position:relative;
  402. }
  403. .article-content ul {
  404. font-size: inherit;
  405. list-style-type: circle;
  406. }
  407. .article-content ol {
  408. font-size: inherit;
  409. list-style-type: decimal;
  410. }
  411. .article-content li {
  412. line-height: 1.7em;
  413. list-style-position: outside;
  414. margin: 1px 0 1px 20px;
  415. }
  416. .article-content dl {
  417. font-size: inherit;
  418. list-style-position: outside;
  419. list-style-type: decimal;
  420. margin: 20px 0 20px 20px;
  421. }
  422. .article-content dd {
  423. line-height: 1.7em;
  424. margin: 1px 0 1px 20px;
  425. padding: 3px 0;
  426. }
  427. .article-content dt {
  428. font-size: inherit;
  429. }
  430. .page-header {
  431. border-bottom: 1px solid #8f8686;
  432. color: #8B0000;
  433. font-size: 3em;
  434. font-weight: normal;
  435. margin: 20px 0;
  436. padding: 5px 5px 15px;
  437. }
  438. .page-header a {
  439. color: #8B0000;
  440. }
  441. .page-header a:hover, .page-header a:focus {
  442. text-decoration: none;
  443. }
  444. ul.articles-timeline {
  445. list-style: none;
  446. margin: 0;
  447. padding-bottom: 30px;
  448. }
  449. ul.articles-timeline .next-article {
  450. float: right;
  451. margin: 0;
  452. }
  453. ul.articles-timeline .previous-article {
  454. float: left;
  455. margin: 0;
  456. }
  457. .sidebar-social-links {
  458. color: #646464;
  459. font-size: 1.2em;
  460. padding-right: 3px;
  461. text-decoration: none;
  462. }
  463. .sidebar-social-links i:hover {
  464. color: #000;
  465. }
  466. .table-of-content .toc {
  467. font-size: .7em;
  468. }
  469. .last-updated a {
  470. color: #333;
  471. }
  472. .last-updated a:hover {
  473. text-decoration: none;
  474. }
  475. .article-content img {
  476. border: 2px solid #EEE;
  477. padding: 5px;
  478. }
  479. /* Perma link in article */
  480. h1:hover > a.headerlink,
  481. h2:hover > a.headerlink,
  482. h3:hover > a.headerlink,
  483. h4:hover > a.headerlink,
  484. h5:hover > a.headerlink,
  485. h6:hover > a.headerlink,
  486. dt:hover > a.headerlink {
  487. text-decoration: none;
  488. visibility: visible;
  489. }
  490. a.headerlink {
  491. color: grey;
  492. padding-left: .5em;
  493. visibility: hidden;
  494. }
  495. /* Categories */
  496. .list-of-categories span {
  497. font-size: .7em;
  498. vertical-align: super;
  499. }
  500. a.list-of-categories {
  501. text-decoration: none;
  502. }
  503. ul.list-articles-category {
  504. list-style: none outside none;
  505. margin: 0 0 0 5px;
  506. }
  507. ul.list-articles-category li span {
  508. color: #AAA;
  509. font: .9em 'PT Sans', 'Helvetica Neue', Arial, Sans-Serif;
  510. margin-right: 10px;
  511. }
  512. a.category-link {
  513. color: #333;
  514. }
  515. a.category-link:hover {
  516. text-decoration: none;
  517. }
  518. a.list-of-categories {
  519. font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, Sans-Serif;
  520. font-size: 1.1em;
  521. }
  522. a.list-of-categories:hover {
  523. background-color: #08c;
  524. border-radius: 4px;
  525. color: #FFF;
  526. }
  527. /* Archives */
  528. ul.list-all-articles {
  529. list-style: none;
  530. margin: 0;
  531. }
  532. ul.list-all-articles li {
  533. border-bottom: 1px dotted #000;
  534. font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, Sans-Serif;
  535. font-size: 1.1em;
  536. padding: .3em 0;
  537. overflow: auto;
  538. }
  539. ul.list-all-articles li time {
  540. color: #AAA;
  541. float: right;
  542. font-family: 'PT Sans', 'Helvetica Neue', Arial, Sans-Serif;
  543. font-size: .9em;
  544. }
  545. div.blog-archives h2 {
  546. float: left;
  547. line-height: 0.6em;
  548. position: relative;
  549. }
  550. div.blog-archives article {
  551. border-bottom: 1px dotted #AAA;
  552. margin-left: 6em;
  553. padding-bottom: 0.7em;
  554. padding-left: 4.5em;
  555. position: relative;
  556. }
  557. div.blog-archives h1 {
  558. font-size: 2em;
  559. margin-bottom: 0;
  560. }
  561. div.blog-archives h1 a {
  562. color: black;
  563. }
  564. div.blog-archives h1 a:focus, div.blog-archives h1 a:hover {
  565. text-decoration:none;
  566. }
  567. div.blog-archives time {
  568. color: #8F8F8F;
  569. float: right;
  570. font-family: 'PT Sans', 'Helvetica Neue', Arial, Sans-Serif;
  571. font-size: 1em;
  572. left: 0;
  573. line-height: .3em;
  574. position: absolute;
  575. text-align: right;
  576. top: 1.8em;
  577. }
  578. div.blog-archives footer {
  579. color: #8F8F8F;
  580. font-size: .9em;
  581. }
  582. div.blog-archives footer a {
  583. color: #8F8F8F;
  584. font-size: .9em;
  585. padding-left: .3em;
  586. }
  587. div.blog-archives footer a:hover {
  588. border-bottom: 1px dashed;
  589. text-decoration:none;
  590. }
  591. @media (max-width: 767px) {
  592. div.blog-archives article {
  593. margin-left: 0;
  594. padding-left: 0;
  595. }
  596. div.blog-archives time {
  597. float: none;
  598. position: static;
  599. }
  600. }
  601. /* MailChimp */
  602. #mc-embed-signup {
  603. font-family: inherit;
  604. font-size: inherit;
  605. margin: 10px 0;
  606. }
  607. #mc-embed-signup form {
  608. display: block;
  609. padding: 0;
  610. position: relative;
  611. text-align: left;
  612. }
  613. #mc-embed-signup input {
  614. -moz-appearance: none;
  615. -webkit-appearance: none;
  616. border: 1px solid #999;
  617. }
  618. #mc-embed-signup input:focus {
  619. border-color: #333;
  620. }
  621. #mc-embed-signup input.email {
  622. display: block;
  623. font-size: .9em;
  624. margin: 0 4% 10px 0;
  625. min-width: 130px;
  626. padding: 8px 0;
  627. text-indent: 5px;
  628. width: 100%;
  629. }
  630. #mc-embed-signup input.button {
  631. display: block;
  632. margin: 0 0 10px 0;
  633. min-width: 130px;
  634. width: 100%;
  635. }
  636. #mc-embed-signup input[type='email'] {
  637. height: 100%;
  638. }
  639. #mc-embed-signup .button {
  640. background-color: #EEE;
  641. border-radius: 4px;
  642. border: 1px solid #D3D3D3;
  643. clear: both;
  644. color: #000;
  645. cursor: pointer;
  646. display: inline-block;
  647. font-size: 1em;
  648. font-weight: normal;
  649. height: 32px;
  650. line-height: 32px;
  651. margin: 0 5px 10px 0;
  652. padding: 0;
  653. text-align: center;
  654. text-decoration: none;
  655. vertical-align: top;
  656. white-space: nowrap;
  657. width: auto;
  658. }
  659. #mc-embed-signup .button: hover {
  660. background-color: #DFDFDF;
  661. }
  662. #mc-embed-signup .clear {
  663. clear: none;
  664. display: inline;
  665. }
  666. /* Index page */
  667. #allposts {
  668. color: #999;
  669. float: right;
  670. font-size: 75%;
  671. font-weight: normal;
  672. }
  673. .proj-desc {
  674. color: #999;
  675. font: .9em 'PT Sans', 'Helvetica Neue', Arial, Sans-Serif;
  676. }
  677. /* reST specific rules*/
  678. .literal {
  679. -moz-border-radius: 3px;
  680. -webkit-border-radius: 3px;
  681. background-color: #f7f7f9;
  682. border-radius: 3px;
  683. border: 1px solid #e1e1e8;
  684. color: #d14;
  685. font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  686. font-size: 12px;
  687. padding: 2px 4px;
  688. white-space: nowrap;
  689. }
  690. /* Helper CSS classes */
  691. .amp {
  692. font-family: 'Warnock Pro', 'Goudy Old Style', 'Palatino', 'Book Antiqua', Serif;
  693. font-style: italic;
  694. }
  695. /* Use following classes to add floating images to your post */
  696. div.figure, .article-content img {
  697. text-align: center;
  698. }
  699. div.figure img {
  700. width: 100%;
  701. }
  702. div.figure p.caption {
  703. color: gray;
  704. font-size: .6em;
  705. margin: 0;
  706. }
  707. div.figure p.caption a {
  708. border: none;
  709. color: gray;
  710. }
  711. div.figure.align-right, .article-content img.align-right {
  712. float: right;
  713. margin: 1.5em 0 1.5em 1.5em;
  714. }
  715. div.figure.align-left, .article-content img.align-left {
  716. float: left;
  717. margin: 1.5em 1.5em 1.5em 0;
  718. }