123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- // Code
- //
- // Inline and block-level code snippets. Includes tweaks to syntax highlighted
- // snippets from Pygments/Rouge and Gist embeds.
- code,
- pre {
- font-family: Menlo, Monaco, "Courier New", monospace;
- }
- code {
- padding: .25em .5em;
- font-size: 85%;
- color: #bf616a;
- background-color: #f9f9f9;
- border-radius: 3px;
- }
- pre {
- display: block;
- margin-top: 0;
- margin-bottom: 1rem;
- padding: 1rem;
- font-size: .8rem;
- line-height: 1.4;
- white-space: pre;
- white-space: pre-wrap;
- word-break: break-all;
- // word-wrap: break-word;
- background-color: #f9f9f9;
- }
- pre code {
- padding: 0;
- font-size: 100%;
- color: inherit;
- background-color: transparent;
- }
- // Pygments via Jekyll
- .highlight {
- margin-bottom: 1rem;
- border-radius: 4px;
- }
- .highlight pre {
- margin-bottom: 0;
- }
- // Gist via GitHub Pages
- .gist .gist-file {
- font-family: Menlo, Monaco, "Courier New", monospace !important;
- }
- .gist .markdown-body {
- padding: 15px;
- }
- .gist pre {
- padding: 0;
- background-color: transparent;
- }
- .gist .gist-file .gist-data {
- font-size: .8rem !important;
- line-height: 1.4;
- }
- .gist code {
- padding: 0;
- color: inherit;
- background-color: transparent;
- border-radius: 0;
- }
|