_code.scss 326 B

12345678910111213141516
  1. // Code (inline and block)
  2. // Inline code within headings retain the heading's background-color
  3. h2 code,
  4. h3 code,
  5. h4 code {
  6. background-color: inherit;
  7. }
  8. // Modify Bootstrap's styles for blocks of code
  9. pre.prettyprint {
  10. padding: 9px 14px;
  11. margin-bottom: 14px;
  12. background-color: #f7f7f9;
  13. border: 1px solid #e1e1e8;
  14. }