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.2 KB
|
Rev | Line | |
---|
[d24f17c] | 1 | /*
|
---|
| 2 |
|
---|
| 3 | Railscasts-like style (c) Visoft, Inc. (Damien White)
|
---|
| 4 |
|
---|
| 5 | */
|
---|
| 6 |
|
---|
| 7 | .hljs {
|
---|
| 8 | display: block;
|
---|
| 9 | overflow-x: auto;
|
---|
| 10 | padding: 0.5em;
|
---|
| 11 | background: #232323;
|
---|
| 12 | color: #e6e1dc;
|
---|
| 13 | }
|
---|
| 14 |
|
---|
| 15 | .hljs-comment,
|
---|
| 16 | .hljs-quote {
|
---|
| 17 | color: #bc9458;
|
---|
| 18 | font-style: italic;
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | .hljs-keyword,
|
---|
| 22 | .hljs-selector-tag {
|
---|
| 23 | color: #c26230;
|
---|
| 24 | }
|
---|
| 25 |
|
---|
| 26 | .hljs-string,
|
---|
| 27 | .hljs-number,
|
---|
| 28 | .hljs-regexp,
|
---|
| 29 | .hljs-variable,
|
---|
| 30 | .hljs-template-variable {
|
---|
| 31 | color: #a5c261;
|
---|
| 32 | }
|
---|
| 33 |
|
---|
| 34 | .hljs-subst {
|
---|
| 35 | color: #519f50;
|
---|
| 36 | }
|
---|
| 37 |
|
---|
| 38 | .hljs-tag,
|
---|
| 39 | .hljs-name {
|
---|
| 40 | color: #e8bf6a;
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | .hljs-type {
|
---|
| 44 | color: #da4939;
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 |
|
---|
| 48 | .hljs-symbol,
|
---|
| 49 | .hljs-bullet,
|
---|
| 50 | .hljs-built_in,
|
---|
| 51 | .hljs-builtin-name,
|
---|
| 52 | .hljs-attr,
|
---|
| 53 | .hljs-link {
|
---|
| 54 | color: #6d9cbe;
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | .hljs-params {
|
---|
| 58 | color: #d0d0ff;
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 | .hljs-attribute {
|
---|
| 62 | color: #cda869;
|
---|
| 63 | }
|
---|
| 64 |
|
---|
| 65 | .hljs-meta {
|
---|
| 66 | color: #9b859d;
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | .hljs-title,
|
---|
| 70 | .hljs-section {
|
---|
| 71 | color: #ffc66d;
|
---|
| 72 | }
|
---|
| 73 |
|
---|
| 74 | .hljs-addition {
|
---|
| 75 | background-color: #144212;
|
---|
| 76 | color: #e6e1dc;
|
---|
| 77 | display: inline-block;
|
---|
| 78 | width: 100%;
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | .hljs-deletion {
|
---|
| 82 | background-color: #600;
|
---|
| 83 | color: #e6e1dc;
|
---|
| 84 | display: inline-block;
|
---|
| 85 | width: 100%;
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 | .hljs-selector-class {
|
---|
| 89 | color: #9b703f;
|
---|
| 90 | }
|
---|
| 91 |
|
---|
| 92 | .hljs-selector-id {
|
---|
| 93 | color: #8b98ab;
|
---|
| 94 | }
|
---|
| 95 |
|
---|
| 96 | .hljs-emphasis {
|
---|
| 97 | font-style: italic;
|
---|
| 98 | }
|
---|
| 99 |
|
---|
| 100 | .hljs-strong {
|
---|
| 101 | font-weight: bold;
|
---|
| 102 | }
|
---|
| 103 |
|
---|
| 104 | .hljs-link {
|
---|
| 105 | text-decoration: underline;
|
---|
| 106 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.