code.css 967 B

123456789101112131415161718192021222324252627282930313233
  1. .post .highlight .code span {
  2. font-family: Inconsolata LGC, monospaced;
  3. }
  4. .post .highlight .code {
  5. line-height: 1em;
  6. padding-top: 2px;
  7. padding-bottom: 2px;
  8. }
  9. .post .highlight {
  10. /* background-color: rgba(50, 50, 50, 0.65); /\*monokai*\/ */
  11. /* border: 2px solid rgba(255, 255, 255, 0.45); /\*monokai*\/ */
  12. /* background-color: rgba(250, 250, 250, 0.45); /\*tomorrow light*\/ */
  13. /* border: 1px dotted rgba(100, 100, 100, 0.45); /\*tomorrow light*\/ */
  14. background-color: rgba(248, 248, 248, 0.45);; /*github style*/
  15. border: 1px dotted rgba(100, 100, 100, 0.45); /*github style*/
  16. border-radius: 3px;
  17. margin-bottom: 1em;
  18. }
  19. .post .highlight .linenodiv pre {
  20. /* color: #f8f8f2; /\*monokai*\/ */
  21. color: #95a5a6; /*tomorrow light*/ /*github style*/
  22. font-size: 0.8em;
  23. }
  24. .post .highlight pre {
  25. font-family: Inconsolata LGC, monospaced;
  26. /* color: #f8f8f2; /\*tomorrow light*\/ */
  27. margin: 4px;
  28. }