graphql-docs 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/README.md +75 -15
- data/Rakefile +28 -0
- data/graphql-docs.gemspec +3 -3
- data/lib/graphql-docs.rb +3 -2
- data/lib/graphql-docs/configuration.rb +6 -2
- data/lib/graphql-docs/generator.rb +10 -35
- data/lib/graphql-docs/helpers.rb +74 -0
- data/lib/graphql-docs/layouts/default.html +39 -0
- data/lib/graphql-docs/layouts/includes/sidebar.html +127 -0
- data/lib/graphql-docs/parser.rb +3 -0
- data/lib/graphql-docs/renderer.rb +13 -4
- data/lib/graphql-docs/version.rb +1 -1
- data/sample_assets/_sass/_api-box.scss +75 -0
- data/sample_assets/_sass/_content.scss +497 -0
- data/sample_assets/_sass/_fonts.scss +21 -0
- data/sample_assets/_sass/_header.scss +59 -0
- data/sample_assets/_sass/_mobile.scss +92 -0
- data/sample_assets/_sass/_normalize.scss +127 -0
- data/sample_assets/_sass/_search.scss +34 -0
- data/sample_assets/_sass/_sidebar.scss +81 -0
- data/sample_assets/_sass/_syntax.scss +291 -0
- data/sample_assets/_sass/_types.scss +0 -0
- data/sample_assets/_sass/screen.scss +647 -0
- data/sample_assets/css/screen.scss +48 -0
- metadata +39 -25
- data/lib/graphql-docs/generator/helpers.rb +0 -46
@@ -0,0 +1,21 @@
|
|
1
|
+
@import "//hello.myfonts.net/count/2c4b9d";
|
2
|
+
@font-face {
|
3
|
+
font-family: 'ProximaNova-Light';
|
4
|
+
src: url("/assets/webfonts/2C4B9D_B_0.eot");
|
5
|
+
src: url("/assets/webfonts/2C4B9D_B_0.eot?#iefix") format('embedded-opentype'), url("/assets/webfonts/2C4B9D_B_0.woff2") format('woff2'), url("/assets/webfonts/2C4B9D_B_0.woff") format('woff'), url("/assets/webfonts/2C4B9D_B_0.ttf") format('truetype');
|
6
|
+
}
|
7
|
+
@font-face {
|
8
|
+
font-family: 'ProximaNova-Semibold';
|
9
|
+
src: url("/assets/webfonts/2C4B9D_C_0.eot");
|
10
|
+
src: url("/assets/webfonts/2C4B9D_C_0.eot?#iefix") format('embedded-opentype'), url("/assets/webfonts/2C4B9D_C_0.woff2") format('woff2'), url("/assets/webfonts/2C4B9D_C_0.woff") format('woff'), url("/assets/webfonts/2C4B9D_C_0.ttf") format('truetype');
|
11
|
+
}
|
12
|
+
@font-face {
|
13
|
+
font-family: 'ProximaNova-Regular';
|
14
|
+
src: url("/assets/webfonts/2C4B9D_D_0.eot");
|
15
|
+
src: url("/assets/webfonts/2C4B9D_D_0.eot?#iefix") format('embedded-opentype'), url("/assets/webfonts/2C4B9D_D_0.woff2") format('woff2'), url("/assets/webfonts/2C4B9D_D_0.woff") format('woff'), url("/assets/webfonts/2C4B9D_D_0.ttf") format('truetype');
|
16
|
+
}
|
17
|
+
@font-face {
|
18
|
+
font-family: 'ProximaNova-Bold';
|
19
|
+
src: url("/assets/webfonts/2C4B9D_E_0.eot");
|
20
|
+
src: url("/assets/webfonts/2C4B9D_E_0.eot?#iefix") format('embedded-opentype'), url("/assets/webfonts/2C4B9D_E_0.woff2") format('woff2'), url("/assets/webfonts/2C4B9D_E_0.woff") format('woff'), url("/assets/webfonts/2C4B9D_E_0.ttf") format('truetype');
|
21
|
+
}
|
@@ -0,0 +1,59 @@
|
|
1
|
+
#top-nav {
|
2
|
+
height: 30px;
|
3
|
+
line-height: 30px;
|
4
|
+
background-color: #27272b;
|
5
|
+
a {
|
6
|
+
text-decoration: none;
|
7
|
+
}
|
8
|
+
}
|
9
|
+
#top-nav-links {
|
10
|
+
list-style-type: none;
|
11
|
+
position: absolute;
|
12
|
+
top: 0;
|
13
|
+
right: 30px;
|
14
|
+
li {
|
15
|
+
float: left;
|
16
|
+
margin-left: 20px;
|
17
|
+
}
|
18
|
+
a {
|
19
|
+
display: inline-block;
|
20
|
+
height: 30px;
|
21
|
+
padding: 0 5px;
|
22
|
+
color: #fff;
|
23
|
+
font-size: 10px;
|
24
|
+
letter-spacing: 1.5px;
|
25
|
+
text-transform: uppercase;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
#site-nav {
|
29
|
+
position: relative;
|
30
|
+
height: 70px;
|
31
|
+
background-color: #fff;
|
32
|
+
border-bottom: 1px solid #eee;
|
33
|
+
padding: 14px 30px;
|
34
|
+
a {
|
35
|
+
vertical-align: bottom;
|
36
|
+
}
|
37
|
+
span {
|
38
|
+
vertical-align: bottom;
|
39
|
+
}
|
40
|
+
select {
|
41
|
+
vertical-align: bottom;
|
42
|
+
}
|
43
|
+
.sub-title {
|
44
|
+
margin: 0 8px;
|
45
|
+
position: relative;
|
46
|
+
top: 1px;
|
47
|
+
}
|
48
|
+
.logo {
|
49
|
+
img {
|
50
|
+
height: 50px;
|
51
|
+
margin-bottom: -20px;
|
52
|
+
}
|
53
|
+
}
|
54
|
+
.search-box {
|
55
|
+
position: absolute;
|
56
|
+
right: 30px;
|
57
|
+
top: 20px;
|
58
|
+
}
|
59
|
+
}
|
@@ -0,0 +1,92 @@
|
|
1
|
+
#mobile-header {
|
2
|
+
z-index: 3;
|
3
|
+
position: fixed;
|
4
|
+
top: 0;
|
5
|
+
left: 0;
|
6
|
+
width: 100%;
|
7
|
+
height: 40px;
|
8
|
+
background-color: #fff;
|
9
|
+
display: none;
|
10
|
+
box-shadow: 0 0 4px rgba(0,0,0,0.25);
|
11
|
+
.menu-button {
|
12
|
+
position: absolute;
|
13
|
+
width: 24px;
|
14
|
+
height: 24px;
|
15
|
+
top: 8px;
|
16
|
+
left: 12px;
|
17
|
+
background: url("../images/menu.png") center center no-repeat;
|
18
|
+
background-size: 24px;
|
19
|
+
opacity: 0.5;
|
20
|
+
}
|
21
|
+
.logo {
|
22
|
+
position: absolute;
|
23
|
+
top: 5px;
|
24
|
+
left: 50%;
|
25
|
+
margin-left: -15px;
|
26
|
+
background-size: 30px;
|
27
|
+
img {
|
28
|
+
width: 30px;
|
29
|
+
height: 30px;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
#mobile-shade {
|
34
|
+
z-index: 1;
|
35
|
+
display: none;
|
36
|
+
pointer-events: none;
|
37
|
+
opacity: 0;
|
38
|
+
transition: opacity 0.3s ease;
|
39
|
+
position: fixed;
|
40
|
+
top: 0;
|
41
|
+
left: 0;
|
42
|
+
right: 0;
|
43
|
+
bottom: 0;
|
44
|
+
background-color: rgba(0,0,0,0.4);
|
45
|
+
}
|
46
|
+
|
47
|
+
@media screen and (max-width: 560px) {
|
48
|
+
body {
|
49
|
+
font-size: 14px;
|
50
|
+
}
|
51
|
+
body.sidebar-open {
|
52
|
+
#sidebar {
|
53
|
+
transform: translate3d(0, 0, 0);
|
54
|
+
}
|
55
|
+
#mobile-shade {
|
56
|
+
opacity: 1;
|
57
|
+
pointer-events: auto;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
#header {
|
61
|
+
height: 40px;
|
62
|
+
}
|
63
|
+
#top-nav {
|
64
|
+
display: none;
|
65
|
+
}
|
66
|
+
#site-nav {
|
67
|
+
display: none;
|
68
|
+
}
|
69
|
+
#mobile-header {
|
70
|
+
display: block;
|
71
|
+
}
|
72
|
+
#mobile-shade {
|
73
|
+
display: block;
|
74
|
+
}
|
75
|
+
#sidebar-mobile {
|
76
|
+
display: block;
|
77
|
+
}
|
78
|
+
#wrap {
|
79
|
+
padding-top: 40px;
|
80
|
+
padding-left: 0;
|
81
|
+
}
|
82
|
+
#sidebar {
|
83
|
+
top: 0;
|
84
|
+
left: 0;
|
85
|
+
padding-top: 60px;
|
86
|
+
border-right: none;
|
87
|
+
box-shadow: 0 0 4px rgba(0,0,0,0.25);
|
88
|
+
transition: transform 0.3s ease;
|
89
|
+
transform: translate3d(-120%, 0, 0);
|
90
|
+
display: block;
|
91
|
+
}
|
92
|
+
}
|
@@ -0,0 +1,127 @@
|
|
1
|
+
* {
|
2
|
+
box-sizing: border-box;
|
3
|
+
}
|
4
|
+
html,
|
5
|
+
body,
|
6
|
+
div,
|
7
|
+
span,
|
8
|
+
applet,
|
9
|
+
object,
|
10
|
+
iframe,
|
11
|
+
h1,
|
12
|
+
h2,
|
13
|
+
h3,
|
14
|
+
h4,
|
15
|
+
h5,
|
16
|
+
h6,
|
17
|
+
p,
|
18
|
+
blockquote,
|
19
|
+
pre,
|
20
|
+
a,
|
21
|
+
abbr,
|
22
|
+
acronym,
|
23
|
+
address,
|
24
|
+
big,
|
25
|
+
cite,
|
26
|
+
code,
|
27
|
+
del,
|
28
|
+
dfn,
|
29
|
+
em,
|
30
|
+
img,
|
31
|
+
ins,
|
32
|
+
kbd,
|
33
|
+
q,
|
34
|
+
s,
|
35
|
+
samp,
|
36
|
+
small,
|
37
|
+
strike,
|
38
|
+
strong,
|
39
|
+
sub,
|
40
|
+
sup,
|
41
|
+
tt,
|
42
|
+
var,
|
43
|
+
b,
|
44
|
+
u,
|
45
|
+
i,
|
46
|
+
center,
|
47
|
+
dl,
|
48
|
+
dt,
|
49
|
+
dd,
|
50
|
+
ol,
|
51
|
+
ul,
|
52
|
+
li,
|
53
|
+
fieldset,
|
54
|
+
form,
|
55
|
+
label,
|
56
|
+
legend,
|
57
|
+
table,
|
58
|
+
caption,
|
59
|
+
tbody,
|
60
|
+
tfoot,
|
61
|
+
thead,
|
62
|
+
tr,
|
63
|
+
th,
|
64
|
+
td,
|
65
|
+
article,
|
66
|
+
aside,
|
67
|
+
canvas,
|
68
|
+
details,
|
69
|
+
embed,
|
70
|
+
figure,
|
71
|
+
figcaption,
|
72
|
+
footer,
|
73
|
+
header,
|
74
|
+
hgroup,
|
75
|
+
menu,
|
76
|
+
nav,
|
77
|
+
output,
|
78
|
+
ruby,
|
79
|
+
section,
|
80
|
+
summary,
|
81
|
+
time,
|
82
|
+
mark,
|
83
|
+
audio,
|
84
|
+
video {
|
85
|
+
margin: 0;
|
86
|
+
padding: 0;
|
87
|
+
border: 0;
|
88
|
+
font-size: 100%;
|
89
|
+
font: inherit;
|
90
|
+
vertical-align: baseline;
|
91
|
+
}
|
92
|
+
/* HTML5 display-role reset for older browsers */
|
93
|
+
article,
|
94
|
+
aside,
|
95
|
+
details,
|
96
|
+
figcaption,
|
97
|
+
figure,
|
98
|
+
footer,
|
99
|
+
header,
|
100
|
+
hgroup,
|
101
|
+
menu,
|
102
|
+
nav,
|
103
|
+
section {
|
104
|
+
display: block;
|
105
|
+
}
|
106
|
+
body {
|
107
|
+
line-height: 1;
|
108
|
+
}
|
109
|
+
ol,
|
110
|
+
ul {
|
111
|
+
list-style: none;
|
112
|
+
}
|
113
|
+
blockquote,
|
114
|
+
q {
|
115
|
+
quotes: none;
|
116
|
+
}
|
117
|
+
blockquote:before,
|
118
|
+
blockquote:after,
|
119
|
+
q:before,
|
120
|
+
q:after {
|
121
|
+
content: '';
|
122
|
+
content: none;
|
123
|
+
}
|
124
|
+
table {
|
125
|
+
border-collapse: collapse;
|
126
|
+
border-spacing: 0;
|
127
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
.search-box {
|
2
|
+
input {
|
3
|
+
width: 200px;
|
4
|
+
background-color: #fff;
|
5
|
+
outline: none;
|
6
|
+
font-family: 'ProximaNova-Regular';
|
7
|
+
font-size: 14px;
|
8
|
+
padding: 7px 12px 6px 32px;
|
9
|
+
border-radius: 20px;
|
10
|
+
border: 1px solid #ddd;
|
11
|
+
background: url("../images/search.png") 8px 6px no-repeat;
|
12
|
+
background-size: 20px;
|
13
|
+
transition: border-color 0.25s ease;
|
14
|
+
&:focus {
|
15
|
+
border-color: #de4f4f;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
}
|
19
|
+
.search-box.st-default-search-input {
|
20
|
+
width: 200px;
|
21
|
+
background-color: #fff;
|
22
|
+
outline: none;
|
23
|
+
font-family: 'ProximaNova-Regular';
|
24
|
+
font-size: 14px;
|
25
|
+
padding: 7px 12px 6px 32px;
|
26
|
+
border-radius: 20px;
|
27
|
+
border: 1px solid #ddd;
|
28
|
+
background: url("../images/search.png") 8px 6px no-repeat;
|
29
|
+
background-size: 20px;
|
30
|
+
transition: border-color 0.25s ease;
|
31
|
+
&:focus {
|
32
|
+
border-color: #de4f4f;
|
33
|
+
}
|
34
|
+
}
|
@@ -0,0 +1,81 @@
|
|
1
|
+
#sidebar {
|
2
|
+
background-color: #fff;
|
3
|
+
position: fixed;
|
4
|
+
z-index: 2;
|
5
|
+
top: 30px;
|
6
|
+
left: 0;
|
7
|
+
bottom: 0;
|
8
|
+
width: 300px;
|
9
|
+
padding: 20px 30px;
|
10
|
+
overflow-x: hidden;
|
11
|
+
overflow-y: scroll;
|
12
|
+
-webkit-overflow-scrolling: touch;
|
13
|
+
-ms-overflow-style: none;
|
14
|
+
font-family: 'ProximaNova-Semibold';
|
15
|
+
border-right: 1px solid #eee;
|
16
|
+
font-size: 16px;
|
17
|
+
line-height: 1.1em;
|
18
|
+
&::-webkit-scrollbar {
|
19
|
+
width: 0 !important;
|
20
|
+
}
|
21
|
+
li {
|
22
|
+
margin-bottom: 0.6em;
|
23
|
+
}
|
24
|
+
a {
|
25
|
+
color: #444;
|
26
|
+
text-decoration: none;
|
27
|
+
&:hover {
|
28
|
+
color: #de4f4f;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
a.current {
|
32
|
+
color: #de4f4f;
|
33
|
+
}
|
34
|
+
a.H2 {
|
35
|
+
font-weight: bold;
|
36
|
+
}
|
37
|
+
.categories {
|
38
|
+
>li {
|
39
|
+
>p {
|
40
|
+
margin-top: 1.5em;
|
41
|
+
border-top: 1px solid #eee;
|
42
|
+
text-transform: uppercase;
|
43
|
+
padding-top: 1.2em;
|
44
|
+
margin-bottom: 1em;
|
45
|
+
color: #999;
|
46
|
+
font-size: 0.8em;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
50
|
+
.sub-menu {
|
51
|
+
font-family: 'ProximaNova-Regular';
|
52
|
+
padding-left: 20px;
|
53
|
+
margin: 0.6em 0;
|
54
|
+
font-size: 14px;
|
55
|
+
.active {
|
56
|
+
position: relative;
|
57
|
+
color: #de4f4f;
|
58
|
+
&:before {
|
59
|
+
content: "";
|
60
|
+
position: absolute;
|
61
|
+
top: 2px;
|
62
|
+
left: -15px;
|
63
|
+
display: inline-block;
|
64
|
+
width: 0;
|
65
|
+
height: 0;
|
66
|
+
border-top: 4px solid transparent;
|
67
|
+
border-bottom: 4px solid transparent;
|
68
|
+
border-left: 6px solid #de4f4f;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
#sidebar-mobile {
|
75
|
+
display: none;
|
76
|
+
margin-bottom: 20px;
|
77
|
+
.search-box {
|
78
|
+
width: 200px;
|
79
|
+
margin-bottom: 20px;
|
80
|
+
}
|
81
|
+
}
|
@@ -0,0 +1,291 @@
|
|
1
|
+
.gutter {
|
2
|
+
pre {
|
3
|
+
color: #999;
|
4
|
+
}
|
5
|
+
}
|
6
|
+
pre {
|
7
|
+
color: #525252;
|
8
|
+
.function {
|
9
|
+
.keyword {
|
10
|
+
color: #0092db;
|
11
|
+
}
|
12
|
+
}
|
13
|
+
.constant {
|
14
|
+
color: #0092db;
|
15
|
+
}
|
16
|
+
.keyword {
|
17
|
+
color: #e96900;
|
18
|
+
}
|
19
|
+
.attribute {
|
20
|
+
color: #e96900;
|
21
|
+
}
|
22
|
+
.number {
|
23
|
+
color: #ae81ff;
|
24
|
+
}
|
25
|
+
.literal {
|
26
|
+
color: #ae81ff;
|
27
|
+
}
|
28
|
+
.tag {
|
29
|
+
color: #2973b7;
|
30
|
+
.title {
|
31
|
+
color: #2973b7;
|
32
|
+
}
|
33
|
+
.value {
|
34
|
+
color: #90a959;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
.change {
|
38
|
+
color: #2973b7;
|
39
|
+
}
|
40
|
+
.winutils {
|
41
|
+
color: #2973b7;
|
42
|
+
}
|
43
|
+
.flow {
|
44
|
+
color: #2973b7;
|
45
|
+
}
|
46
|
+
.lisp {
|
47
|
+
.title {
|
48
|
+
color: #2973b7;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
.clojure {
|
52
|
+
.built_in {
|
53
|
+
color: #2973b7;
|
54
|
+
}
|
55
|
+
}
|
56
|
+
.nginx {
|
57
|
+
.title {
|
58
|
+
color: #2973b7;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
.tex {
|
62
|
+
.special {
|
63
|
+
color: #2973b7;
|
64
|
+
}
|
65
|
+
.command {
|
66
|
+
color: #90a959;
|
67
|
+
}
|
68
|
+
.formula {
|
69
|
+
color: #b3b3b3;
|
70
|
+
opacity: 0.5;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
.class {
|
74
|
+
.title {
|
75
|
+
color: #4077bf;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
.symbol {
|
79
|
+
color: #90a959;
|
80
|
+
.string {
|
81
|
+
color: #90a959;
|
82
|
+
}
|
83
|
+
}
|
84
|
+
.value {
|
85
|
+
color: #90a959;
|
86
|
+
}
|
87
|
+
.regexp {
|
88
|
+
color: #90a959;
|
89
|
+
}
|
90
|
+
.title {
|
91
|
+
color: #a6e22e;
|
92
|
+
}
|
93
|
+
.string {
|
94
|
+
color: #90a959;
|
95
|
+
}
|
96
|
+
.subst {
|
97
|
+
color: #90a959;
|
98
|
+
}
|
99
|
+
.haskell {
|
100
|
+
.type {
|
101
|
+
color: #90a959;
|
102
|
+
}
|
103
|
+
}
|
104
|
+
.preprocessor {
|
105
|
+
color: #90a959;
|
106
|
+
}
|
107
|
+
.ruby {
|
108
|
+
.class {
|
109
|
+
.parent {
|
110
|
+
color: #90a959;
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
.built_in {
|
115
|
+
color: #90a959;
|
116
|
+
}
|
117
|
+
.sql {
|
118
|
+
.aggregate {
|
119
|
+
color: #90a959;
|
120
|
+
}
|
121
|
+
}
|
122
|
+
.django {
|
123
|
+
.template_tag {
|
124
|
+
color: #90a959;
|
125
|
+
}
|
126
|
+
.variable {
|
127
|
+
color: #90a959;
|
128
|
+
}
|
129
|
+
.filter {
|
130
|
+
.argument {
|
131
|
+
color: #90a959;
|
132
|
+
}
|
133
|
+
}
|
134
|
+
}
|
135
|
+
.smalltalk {
|
136
|
+
.class {
|
137
|
+
color: #90a959;
|
138
|
+
}
|
139
|
+
.localvars {
|
140
|
+
color: #90a959;
|
141
|
+
}
|
142
|
+
.array {
|
143
|
+
color: #90a959;
|
144
|
+
}
|
145
|
+
}
|
146
|
+
.javadoc {
|
147
|
+
color: #90a959;
|
148
|
+
}
|
149
|
+
.attr_selector {
|
150
|
+
color: #90a959;
|
151
|
+
}
|
152
|
+
.pseudo {
|
153
|
+
color: #90a959;
|
154
|
+
}
|
155
|
+
.addition {
|
156
|
+
color: #90a959;
|
157
|
+
}
|
158
|
+
.stream {
|
159
|
+
color: #90a959;
|
160
|
+
}
|
161
|
+
.envvar {
|
162
|
+
color: #90a959;
|
163
|
+
}
|
164
|
+
.apache {
|
165
|
+
.tag {
|
166
|
+
color: #90a959;
|
167
|
+
}
|
168
|
+
.cbracket {
|
169
|
+
color: #90a959;
|
170
|
+
}
|
171
|
+
.sqbracket {
|
172
|
+
color: #b3b3b3;
|
173
|
+
}
|
174
|
+
}
|
175
|
+
.prompt {
|
176
|
+
color: #90a959;
|
177
|
+
}
|
178
|
+
.comment {
|
179
|
+
color: #b3b3b3;
|
180
|
+
}
|
181
|
+
.java {
|
182
|
+
.annotation {
|
183
|
+
color: #b3b3b3;
|
184
|
+
}
|
185
|
+
}
|
186
|
+
.python {
|
187
|
+
.decorator {
|
188
|
+
color: #b3b3b3;
|
189
|
+
}
|
190
|
+
}
|
191
|
+
.template_comment {
|
192
|
+
color: #b3b3b3;
|
193
|
+
}
|
194
|
+
.pi {
|
195
|
+
color: #b3b3b3;
|
196
|
+
}
|
197
|
+
.doctype {
|
198
|
+
color: #b3b3b3;
|
199
|
+
}
|
200
|
+
.deletion {
|
201
|
+
color: #b3b3b3;
|
202
|
+
}
|
203
|
+
.shebang {
|
204
|
+
color: #b3b3b3;
|
205
|
+
}
|
206
|
+
.coffeescript {
|
207
|
+
.javascript {
|
208
|
+
opacity: 0.5;
|
209
|
+
}
|
210
|
+
}
|
211
|
+
.javascript {
|
212
|
+
.xml {
|
213
|
+
opacity: 0.5;
|
214
|
+
}
|
215
|
+
}
|
216
|
+
.xml {
|
217
|
+
.javascript {
|
218
|
+
opacity: 0.5;
|
219
|
+
}
|
220
|
+
.vbscript {
|
221
|
+
opacity: 0.5;
|
222
|
+
}
|
223
|
+
.css {
|
224
|
+
opacity: 0.5;
|
225
|
+
}
|
226
|
+
.cdata {
|
227
|
+
opacity: 0.5;
|
228
|
+
}
|
229
|
+
}
|
230
|
+
}
|
231
|
+
|
232
|
+
.highlight .hll { background-color: #49483e }
|
233
|
+
pre { background: #272822; color: #f8f8f2 }
|
234
|
+
.highlight .c { color: #75715e } /* Comment */
|
235
|
+
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
|
236
|
+
.highlight .k { color: #66d9ef } /* Keyword */
|
237
|
+
.highlight .l { color: #ae81ff } /* Literal */
|
238
|
+
.highlight .n { color: #f8f8f2 } /* Name */
|
239
|
+
.highlight .o { color: #f92672 } /* Operator */
|
240
|
+
.highlight .p { color: #f8f8f2 } /* Punctuation */
|
241
|
+
.highlight .cm { color: #75715e } /* Comment.Multiline */
|
242
|
+
.highlight .cp { color: #75715e } /* Comment.Preproc */
|
243
|
+
.highlight .c1 { color: #75715e } /* Comment.Single */
|
244
|
+
.highlight .cs { color: #75715e } /* Comment.Special */
|
245
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
246
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
247
|
+
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
|
248
|
+
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
|
249
|
+
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
|
250
|
+
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
|
251
|
+
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
|
252
|
+
.highlight .kt { color: #66d9ef } /* Keyword.Type */
|
253
|
+
.highlight .ld { color: #e6db74 } /* Literal.Date */
|
254
|
+
.highlight .m { color: #ae81ff } /* Literal.Number */
|
255
|
+
.highlight .s { color: #e6db74 } /* Literal.String */
|
256
|
+
.highlight .na { color: #a6e22e } /* Name.Attribute */
|
257
|
+
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
|
258
|
+
.highlight .nc { color: #a6e22e } /* Name.Class */
|
259
|
+
.highlight .no { color: #66d9ef } /* Name.Constant */
|
260
|
+
.highlight .nd { color: #a6e22e } /* Name.Decorator */
|
261
|
+
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
|
262
|
+
.highlight .ne { color: #a6e22e } /* Name.Exception */
|
263
|
+
.highlight .nf { color: #a6e22e } /* Name.Function */
|
264
|
+
.highlight .nl { color: #f8f8f2 } /* Name.Label */
|
265
|
+
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
|
266
|
+
.highlight .nx { color: #a6e22e } /* Name.Other */
|
267
|
+
.highlight .py { color: #f8f8f2 } /* Name.Property */
|
268
|
+
.highlight .nt { color: #f92672 } /* Name.Tag */
|
269
|
+
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
|
270
|
+
.highlight .ow { color: #f92672 } /* Operator.Word */
|
271
|
+
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
|
272
|
+
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
|
273
|
+
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
|
274
|
+
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
|
275
|
+
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
|
276
|
+
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
|
277
|
+
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
|
278
|
+
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
|
279
|
+
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
|
280
|
+
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
|
281
|
+
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
|
282
|
+
.highlight .si { color: #e6db74 } /* Literal.String.Interpol */
|
283
|
+
.highlight .sx { color: #e6db74 } /* Literal.String.Other */
|
284
|
+
.highlight .sr { color: #e6db74 } /* Literal.String.Regex */
|
285
|
+
.highlight .s1 { color: #e6db74 } /* Literal.String.Single */
|
286
|
+
.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
|
287
|
+
.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
288
|
+
.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
289
|
+
.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
290
|
+
.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
291
|
+
.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|