main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[d24f17c] | 1 | /*
|
---|
| 2 |
|
---|
| 3 | Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
|
---|
| 4 |
|
---|
| 5 | */
|
---|
| 6 |
|
---|
| 7 | .hljs {
|
---|
| 8 | display: block;
|
---|
| 9 | overflow-x: auto;
|
---|
| 10 | padding: 0.5em;
|
---|
| 11 | color: #000;
|
---|
| 12 | background: #fff;
|
---|
| 13 | }
|
---|
| 14 |
|
---|
| 15 | .hljs-subst,
|
---|
| 16 | .hljs-title {
|
---|
| 17 | font-weight: normal;
|
---|
| 18 | color: #000;
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | .hljs-comment,
|
---|
| 22 | .hljs-quote {
|
---|
| 23 | color: #808080;
|
---|
| 24 | font-style: italic;
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | .hljs-meta {
|
---|
| 28 | color: #808000;
|
---|
| 29 | }
|
---|
| 30 |
|
---|
| 31 | .hljs-tag {
|
---|
| 32 | background: #efefef;
|
---|
| 33 | }
|
---|
| 34 |
|
---|
| 35 | .hljs-section,
|
---|
| 36 | .hljs-name,
|
---|
| 37 | .hljs-literal,
|
---|
| 38 | .hljs-keyword,
|
---|
| 39 | .hljs-selector-tag,
|
---|
| 40 | .hljs-type,
|
---|
| 41 | .hljs-selector-id,
|
---|
| 42 | .hljs-selector-class {
|
---|
| 43 | font-weight: bold;
|
---|
| 44 | color: #000080;
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 | .hljs-attribute,
|
---|
| 48 | .hljs-number,
|
---|
| 49 | .hljs-regexp,
|
---|
| 50 | .hljs-link {
|
---|
| 51 | font-weight: bold;
|
---|
| 52 | color: #0000ff;
|
---|
| 53 | }
|
---|
| 54 |
|
---|
| 55 | .hljs-number,
|
---|
| 56 | .hljs-regexp,
|
---|
| 57 | .hljs-link {
|
---|
| 58 | font-weight: normal;
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 | .hljs-string {
|
---|
| 62 | color: #008000;
|
---|
| 63 | font-weight: bold;
|
---|
| 64 | }
|
---|
| 65 |
|
---|
| 66 | .hljs-symbol,
|
---|
| 67 | .hljs-bullet,
|
---|
| 68 | .hljs-formula {
|
---|
| 69 | color: #000;
|
---|
| 70 | background: #d0eded;
|
---|
| 71 | font-style: italic;
|
---|
| 72 | }
|
---|
| 73 |
|
---|
| 74 | .hljs-doctag {
|
---|
| 75 | text-decoration: underline;
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | .hljs-variable,
|
---|
| 79 | .hljs-template-variable {
|
---|
| 80 | color: #660e7a;
|
---|
| 81 | }
|
---|
| 82 |
|
---|
| 83 | .hljs-addition {
|
---|
| 84 | background: #baeeba;
|
---|
| 85 | }
|
---|
| 86 |
|
---|
| 87 | .hljs-deletion {
|
---|
| 88 | background: #ffc8bd;
|
---|
| 89 | }
|
---|
| 90 |
|
---|
| 91 | .hljs-emphasis {
|
---|
| 92 | font-style: italic;
|
---|
| 93 | }
|
---|
| 94 |
|
---|
| 95 | .hljs-strong {
|
---|
| 96 | font-weight: bold;
|
---|
| 97 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.