jekyll-california 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,11 +1,10 @@
1
1
  <!DOCTYPE html>
2
- <html>
3
- <head>
2
+ <html lang="en">
4
3
 
4
+ <head>
5
5
  <meta charset="UTF-8">
6
- <title>{{ page.title }}</title>
7
- <meta name="viewport" content="width=device-width">
8
-
6
+ <meta name="viewport" content="width=device-width, initial-scale=1">
7
+ {% seo %}
9
8
  <!--[if lt IE 9]>
10
9
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
11
10
  <![endif]-->
@@ -14,36 +13,40 @@
14
13
 
15
14
  <body>
16
15
  <header id="header">
17
- <h1><a href="/">{{ site.title }}</a></h1>
18
- <p>{{ site.description }}</p>
16
+ <em><a href="/">{{ site.title }}</a></em>
17
+ <!-- <p>{{ site.description }}</p> -->
18
+ {% assign current = page.url | downcase | split: '/' %}
19
+ <nav>
20
+ <ul>
21
+ <li><a href="/" {% if current.size==0 %}data-current="current item" {% endif %}>home</a></li>
22
+ <li><a href="/blog/" {% if current[1]=='blog' %}data-current="current item" {% endif %}>blog</a></li>
23
+ <li><a href="/archives/" {% if current[1]=='archives' %}data-current="current item" {% endif %}>archive</a></li>
24
+ <li><a href="/feed.xml">rss</a></li>
25
+ </ul>
26
+ </nav>
19
27
  </header>
20
28
 
21
- <div id="page">
22
- <div id="sidebar">
23
- {% assign current = page.url | downcase | split: '/' %}
24
- <nav>
25
- <ul>
26
- <li><a href="/" {% if current.size == 0 %}class='active'{% endif %}>home</a></li>
27
- <li><a href="/blog/" {% if current[1] == 'blog' %}class='active'{% endif %}>blog</a></li>
28
- <li><a href="/work/" {% if current[1] == 'work' %}class='active'{% endif %}>work</a></li>
29
- <li><a href="/archives/" {% if current[1] == 'archives' %}class='active'{% endif %}>archive</a></li>
30
- <li><a href="/feed.xml">rss</a></li>
31
- </ul>
32
- </nav>
33
- </div>
34
- <div id="content">
35
- {{ content }}
36
- </div>
37
- </div>
29
+ <main>
30
+ {{ content }}
31
+ </main>
32
+
38
33
 
39
34
  <footer id="footer">
40
- <p class="copyright">Copyright &copy; {{ site.time | date: '%Y' }} {{ site.name }}. Powered by <a href="http://jekyllrb.com">Jekyll</a>, theme by <a href="http://www.webmaster-source.com">Matt Harzewski</a>.
41
- <br>
42
- The opinions on this site are my own and do not represent those of my employer.
43
- <br>
44
- This page was built on {{site.time}}
45
- </p>
35
+ <small>
36
+ <p class="copyright">Copyright &copy; Chenna Kautilya, 2013 - {{ site.time | date: '%Y' }}. Powered by <a
37
+ href="http://jekyllrb.com">Jekyll</a>,
38
+ <a href="https://github.com/hashb/california">California</a> theme.
39
+ <br>
40
+ The opinions on this site are my own and do not represent those of my employer.
41
+ <br>
42
+ This page was built on {{site.time}}
43
+ </p>
44
+ <noscript>
45
+ hello stranger with no javascript ;)
46
+ </noscript>
47
+ </small>
46
48
  </footer>
47
49
 
48
50
  </body>
49
- </html>
51
+
52
+ </html>
data/_layouts/page.html CHANGED
@@ -1,9 +1,25 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
+ <h1>{{ page.title }}</h1>
4
5
 
5
- {{ content }}
6
+ <article class="post">
7
+ {% include toc.html html=content class="toc" %}
8
+ <div class="post-content">{{ content }}</div>
6
9
 
7
- {% if page.date %}
8
- <p class="meta">Posted on <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished"><span class="postdate">{{ page.date | date: "%b %d, %Y" }}</span></time></p>
9
- {% endif %}
10
+ <div class="post-footer">
11
+ <address>By
12
+ {% if page.author %}<a>{{ page.author }}</a>
13
+ {% elsif site.author["name"] %}<a>{{ site.author["name"] }}</a>
14
+ {% elsif site.author %}<a>{{ site.author }}</a>
15
+ {% else %}<a>Jane Doe</a>{% endif %}</address>
16
+ <p class="meta">Posted on <span class="postdate"><time datetime="{{ page.date | date_to_xmlschema }}"
17
+ itemprop="datePublished">{{ page.date | date: "%b %d, %Y" }}</time>{% if page.last_modified_at %}
18
+ (Updated: <time datetime="{{ page.last_modified_at | date_to_xmlschema }}" itemprop="dateModified">{{
19
+ page.last_modified_at | date: "%b %d, %Y" }}</time>){% endif %}</span>
20
+ </p>
21
+ <p>
22
+ {% for tag in page.tags %}<a href="/tags/#{{ tag | slugify }}" rel="tag">{{ tag }}</a>{% endfor %}
23
+ </p>
24
+ </div>
25
+ </article>
data/_layouts/post.html CHANGED
@@ -3,16 +3,29 @@ layout: default
3
3
  ---
4
4
  <article class="post">
5
5
 
6
- {% if page.external-url %}
7
- <h1><a href="{{ page.url }}">{{ page.title }}</a></h1>
6
+ {% if page.mathjax %}
7
+ <script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML' async></script>
8
+ {% endif %}
8
9
 
9
- <p class="meta"><span class="postdate">Link: <a href="{{ page.external-url }}">{{ page.external-url }}</a></span></p>
10
- {% else %}
11
- <h1><a href="{{ page.url }}">{{ page.title }}</a></h1>
10
+ <h1>{{ page.title }}</h1>
11
+ {% if page.external-url %}
12
+ <p class="meta"><span class="postdate">Link: <a href="{{ page.external-url }}">{{ page.external-url }}</a></span></p>
12
13
  {% endif %}
13
14
 
15
+ {% include toc.html html=content class="toc" %}
14
16
  <div class="post-content">{{ content }}</div>
15
17
 
16
- <p class="meta">Posted on <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished"><span class="postdate">{{ page.date | date: "%b %d, %Y" }}</span></time></p>
17
-
18
- </article>
18
+ <div class="post-footer">
19
+ <address>By
20
+ {% if page.author %}<a>{{ page.author }}</a>
21
+ {% elsif site.author["name"] %}<a>{{ site.author["name"] }}</a>
22
+ {% elsif site.author %}<a>{{ site.author }}</a>
23
+ {% else %}<a>Jane Doe</a>{% endif %}</address>
24
+ <p class="meta">Posted on <span class="postdate"><time datetime="{{ page.date | date_to_xmlschema }}"
25
+ itemprop="datePublished">{{ page.date | date: "%b %d, %Y" }}</time>{% if page.last_modified_at %}
26
+ (Updated: <time datetime="{{ page.last_modified_at | date_to_xmlschema }}" itemprop="dateModified">{{
27
+ page.last_modified_at | date: "%b %d, %Y" }}</time>){% endif %}</span>
28
+ </p>
29
+ <p>{% for tag in page.tags %}<a href="/tags/#{{ tag | slugify }}" rel="tag">{{ tag }}</a>{% endfor %}</p>
30
+ </div>
31
+ </article>
@@ -0,0 +1,45 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <h1>Tags</h1>
6
+
7
+ {{ content }}
8
+
9
+ {% assign rawtags = "" %}
10
+ {% for post in site.posts %}
11
+ {% assign ttags = post.tags | join:'|' | append:'|' %}
12
+ {% assign rawtags = rawtags | append:ttags %}
13
+ {% endfor %}
14
+ {% assign rawtags = rawtags | split:'|' | sort %}
15
+
16
+ {% assign tags = "" %}
17
+ {% for tag in rawtags %}
18
+ {% if tag != "" %}
19
+ {% if tags == "" %}
20
+ {% assign tags = tag | split:'|' %}
21
+ {% endif %}
22
+ {% unless tags contains tag %}
23
+ {% assign tags = tags | join:'|' | append:'|' | append:tag | split:'|' %}
24
+ {% endunless %}
25
+ {% endif %}
26
+ {% endfor %}
27
+
28
+
29
+ {% for tag in tags %}
30
+ <div class="archive-item">
31
+ <h2 id="{{ tag | slugify }}">{{ tag }}</h2>
32
+ <ul>
33
+ {% for post in site.posts %}
34
+ {% if post.tags contains tag %}
35
+ <li>
36
+ <p>
37
+ <time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: "%d %b %Y" }}</time>&nbsp;&nbsp;
38
+ <a href="{{ post.url | relative_url }}" title="{{ post.excerpt | strip_html | strip }}">{{ post.title }}</a>
39
+ </p>
40
+ </li>
41
+ {% endif %}
42
+ {% endfor %}
43
+ </ul>
44
+ </div>
45
+ {% endfor %}
@@ -1,58 +1,268 @@
1
- html, body {
2
- background-color: #fdf6e3;
3
- color: #839496;
1
+ html,
2
+ body {
3
+ background-color: #fdf6e3;
4
+ color: #839496;
4
5
  }
5
6
 
6
- a, a:visited, a:active {
7
- color: #2aa198;
8
- border-color: #eee8d5;
7
+ a,
8
+ a:visited,
9
+ a:active {
10
+ color: #2aa198;
11
+ border-color: #eee8d5;
9
12
  }
10
13
 
11
14
  a:hover {
12
- background-color: #eee8d5;
13
- border-color: #eee8d5;
14
- color: #2aa198;
15
+ background-color: #eee8d5;
16
+ border-color: #eee8d5;
17
+ color: #2aa198;
15
18
  }
16
19
 
17
- h1, h2, h3 {
18
- color: #cb4b16;
20
+ h1,
21
+ h2,
22
+ h3 {
23
+ color: #cb4b16;
19
24
  }
20
25
 
21
- h1 a, h1 a:visited, h1 a:active {
22
- color: #cb4b16;
26
+ h1 a,
27
+ h1 a:visited,
28
+ h1 a:active {
29
+ color: #cb4b16;
23
30
  }
24
31
 
25
32
  h1 a:hover {
26
- background-color: #eee8d5;
27
- border-color: #eee8d5;
33
+ background-color: #eee8d5;
34
+ border-color: #eee8d5;
28
35
  }
29
36
 
30
37
  article h1 a.anchor {
31
- color: #2aa198;
38
+ color: #2aa198;
32
39
  }
33
40
 
34
41
  blockquote {
35
- border-color: #cb4b16;
42
+ border-color: #cb4b16;
36
43
  }
37
44
 
38
45
  #sidebar a:hover {
39
- color: #2aa198;
40
- background-color: #eee8d5;
46
+ color: #2aa198;
47
+ background-color: #eee8d5;
41
48
  }
42
49
 
43
50
  #footer {
44
- border-color: #eee8d5;
51
+ border-color: #eee8d5;
45
52
  }
46
53
 
47
-
48
-
49
54
  /*** Pygments ***/
50
- .highlight{
51
- background-color: #eee8d5;
52
- color: #657b83;
53
- border: 1px solid #d6ceb6;
55
+ .highlight {
56
+ background-color: #eee8d5;
57
+ color: #657b83;
58
+ border: 1px solid #d6ceb6;
54
59
  border-radius: 3px 3px 3px 3px;
55
60
  overflow: auto;
56
61
  padding: 6px 10px;
57
62
  }
58
- .highlight .c { color: #586E75 } .highlight .err { color: #93A1A1 } .highlight .g { color: #93A1A1 } .highlight .k { color: #859900 } .highlight .l { color: #93A1A1 } .highlight .n { color: #93A1A1 } .highlight .o { color: #859900 } .highlight .x { color: #CB4B16 } .highlight .p { color: #93A1A1 } .highlight .cm { color: #586E75 } .highlight .cp { color: #859900 } .highlight .c1 { color: #586E75 } .highlight .cs { color: #859900 } .highlight .gd { color: #2AA198 } .highlight .ge { color: #93A1A1; font-style: italic } .highlight .gr { color: #DC322F } .highlight .gh { color: #CB4B16 } .highlight .gi { color: #859900 } .highlight .go { color: #93A1A1 } .highlight .gp { color: #93A1A1 } .highlight .gs { color: #93A1A1; font-weight: bold } .highlight .gu { color: #CB4B16 } .highlight .gt { color: #93A1A1 } .highlight .kc { color: #CB4B16 } .highlight .kd { color: #268BD2 } .highlight .kn { color: #859900 } .highlight .kp { color: #859900 } .highlight .kr { color: #268BD2 } .highlight .kt { color: #DC322F } .highlight .ld { color: #93A1A1 } .highlight .m { color: #2AA198 } .highlight .s { color: #2AA198 } .highlight .na { color: #93A1A1 } .highlight .nb { color: #B58900 } .highlight .nc { color: #268BD2 } .highlight .no { color: #CB4B16 } .highlight .nd { color: #268BD2 } .highlight .ni { color: #CB4B16 } .highlight .ne { color: #CB4B16 } .highlight .nf { color: #268BD2 } .highlight .nl { color: #93A1A1 } .highlight .nn { color: #93A1A1 } .highlight .nx { color: #93A1A1 } .highlight .py { color: #93A1A1 } .highlight .nt { color: #268BD2 } .highlight .nv { color: #268BD2 } .highlight .ow { color: #859900 } .highlight .w { color: #93A1A1 } .highlight .mf { color: #2AA198 } .highlight .mh { color: #2AA198 } .highlight .mi { color: #2AA198 } .highlight .mo { color: #2AA198 } .highlight .sb { color: #586E75 } .highlight .sc { color: #2AA198 } .highlight .sd { color: #93A1A1 } .highlight .s2 { color: #2AA198 } .highlight .se { color: #CB4B16 } .highlight .sh { color: #93A1A1 } .highlight .si { color: #2AA198 } .highlight .sx { color: #2AA198 } .highlight .sr { color: #DC322F } .highlight .s1 { color: #2AA198 } .highlight .ss { color: #2AA198 } .highlight .bp { color: #268BD2 } .highlight .vc { color: #268BD2 } .highlight .vg { color: #268BD2 } .highlight .vi { color: #268BD2 } .highlight .il { color: #2AA198 }
63
+ .highlight .c {
64
+ color: #586e75;
65
+ }
66
+ .highlight .err {
67
+ color: #93a1a1;
68
+ }
69
+ .highlight .g {
70
+ color: #93a1a1;
71
+ }
72
+ .highlight .k {
73
+ color: #859900;
74
+ }
75
+ .highlight .l {
76
+ color: #93a1a1;
77
+ }
78
+ .highlight .n {
79
+ color: #93a1a1;
80
+ }
81
+ .highlight .o {
82
+ color: #859900;
83
+ }
84
+ .highlight .x {
85
+ color: #cb4b16;
86
+ }
87
+ .highlight .p {
88
+ color: #93a1a1;
89
+ }
90
+ .highlight .cm {
91
+ color: #586e75;
92
+ }
93
+ .highlight .cp {
94
+ color: #859900;
95
+ }
96
+ .highlight .c1 {
97
+ color: #586e75;
98
+ }
99
+ .highlight .cs {
100
+ color: #859900;
101
+ }
102
+ .highlight .gd {
103
+ color: #2aa198;
104
+ }
105
+ .highlight .ge {
106
+ color: #93a1a1;
107
+ font-style: italic;
108
+ }
109
+ .highlight .gr {
110
+ color: #dc322f;
111
+ }
112
+ .highlight .gh {
113
+ color: #cb4b16;
114
+ }
115
+ .highlight .gi {
116
+ color: #859900;
117
+ }
118
+ .highlight .go {
119
+ color: #93a1a1;
120
+ }
121
+ .highlight .gp {
122
+ color: #93a1a1;
123
+ }
124
+ .highlight .gs {
125
+ color: #93a1a1;
126
+ font-weight: bold;
127
+ }
128
+ .highlight .gu {
129
+ color: #cb4b16;
130
+ }
131
+ .highlight .gt {
132
+ color: #93a1a1;
133
+ }
134
+ .highlight .kc {
135
+ color: #cb4b16;
136
+ }
137
+ .highlight .kd {
138
+ color: #268bd2;
139
+ }
140
+ .highlight .kn {
141
+ color: #859900;
142
+ }
143
+ .highlight .kp {
144
+ color: #859900;
145
+ }
146
+ .highlight .kr {
147
+ color: #268bd2;
148
+ }
149
+ .highlight .kt {
150
+ color: #dc322f;
151
+ }
152
+ .highlight .ld {
153
+ color: #93a1a1;
154
+ }
155
+ .highlight .m {
156
+ color: #2aa198;
157
+ }
158
+ .highlight .s {
159
+ color: #2aa198;
160
+ }
161
+ .highlight .na {
162
+ color: #93a1a1;
163
+ }
164
+ .highlight .nb {
165
+ color: #b58900;
166
+ }
167
+ .highlight .nc {
168
+ color: #268bd2;
169
+ }
170
+ .highlight .no {
171
+ color: #cb4b16;
172
+ }
173
+ .highlight .nd {
174
+ color: #268bd2;
175
+ }
176
+ .highlight .ni {
177
+ color: #cb4b16;
178
+ }
179
+ .highlight .ne {
180
+ color: #cb4b16;
181
+ }
182
+ .highlight .nf {
183
+ color: #268bd2;
184
+ }
185
+ .highlight .nl {
186
+ color: #93a1a1;
187
+ }
188
+ .highlight .nn {
189
+ color: #93a1a1;
190
+ }
191
+ .highlight .nx {
192
+ color: #93a1a1;
193
+ }
194
+ .highlight .py {
195
+ color: #93a1a1;
196
+ }
197
+ .highlight .nt {
198
+ color: #268bd2;
199
+ }
200
+ .highlight .nv {
201
+ color: #268bd2;
202
+ }
203
+ .highlight .ow {
204
+ color: #859900;
205
+ }
206
+ .highlight .w {
207
+ color: #93a1a1;
208
+ }
209
+ .highlight .mf {
210
+ color: #2aa198;
211
+ }
212
+ .highlight .mh {
213
+ color: #2aa198;
214
+ }
215
+ .highlight .mi {
216
+ color: #2aa198;
217
+ }
218
+ .highlight .mo {
219
+ color: #2aa198;
220
+ }
221
+ .highlight .sb {
222
+ color: #586e75;
223
+ }
224
+ .highlight .sc {
225
+ color: #2aa198;
226
+ }
227
+ .highlight .sd {
228
+ color: #93a1a1;
229
+ }
230
+ .highlight .s2 {
231
+ color: #2aa198;
232
+ }
233
+ .highlight .se {
234
+ color: #cb4b16;
235
+ }
236
+ .highlight .sh {
237
+ color: #93a1a1;
238
+ }
239
+ .highlight .si {
240
+ color: #2aa198;
241
+ }
242
+ .highlight .sx {
243
+ color: #2aa198;
244
+ }
245
+ .highlight .sr {
246
+ color: #dc322f;
247
+ }
248
+ .highlight .s1 {
249
+ color: #2aa198;
250
+ }
251
+ .highlight .ss {
252
+ color: #2aa198;
253
+ }
254
+ .highlight .bp {
255
+ color: #268bd2;
256
+ }
257
+ .highlight .vc {
258
+ color: #268bd2;
259
+ }
260
+ .highlight .vg {
261
+ color: #268bd2;
262
+ }
263
+ .highlight .vi {
264
+ color: #268bd2;
265
+ }
266
+ .highlight .il {
267
+ color: #2aa198;
268
+ }
@@ -1,179 +1,49 @@
1
- html, body {
2
- background-color: #fffff8;
3
- color: #111111;
1
+ html,
2
+ body {
3
+ background-color: #fffff8;
4
+ color: #111111;
4
5
  }
5
6
 
6
- a, a:visited, a:active {
7
- color: $royal-blue;
7
+ a,
8
+ a:visited,
9
+ a:active {
10
+ color: $royal-blue;
8
11
  }
9
12
 
10
13
  a:hover {
11
- background-color: $a-background;
12
- color: $utah-red;
14
+ background-color: $a-background;
15
+ color: $utah-red;
13
16
  }
14
17
 
15
- h1, h2, h3 {
16
- color: $headings;
17
- font-weight:bold;
18
+ h1,
19
+ h2,
20
+ h3 {
21
+ color: $headings;
22
+ font-weight: bold;
18
23
  }
19
24
 
20
- h1 a, h1 a:visited, h1 a:active {
21
- color: $utah-red;
25
+ h1 a,
26
+ h1 a:visited,
27
+ h1 a:active {
28
+ color: $utah-red;
22
29
  }
23
30
 
24
31
  h1 a:hover {
25
- background-color: $a-background;
32
+ background-color: $a-background;
26
33
  }
27
34
 
28
35
  article.post h1 a {
29
- color: $cerulean-blue;
36
+ color: $cerulean-blue;
30
37
  }
31
38
 
32
39
  #sidebar a:hover {
33
- color: $utah-red;
40
+ color: $utah-red;
34
41
  }
35
42
 
36
43
  p code {
37
- background-color: #fff8ff;
44
+ background-color: #fff8ff;
38
45
  }
39
46
 
40
-
41
- /*** Pygments ***/
42
- .highlight{
43
- margin-bottom: 15px;
47
+ li code {
48
+ background-color: #fff8ff;
44
49
  }
45
- .highlight {
46
- background: #fffff8; }
47
- .highlight .c {
48
- color: #998;
49
- font-style: italic; }
50
- .highlight .err {
51
- color: #a61717;
52
- background-color: #e3d2d2; }
53
- .highlight .k {
54
- font-weight: bold; }
55
- .highlight .o {
56
- font-weight: bold; }
57
- .highlight .cm {
58
- color: #998;
59
- font-style: italic; }
60
- .highlight .cp {
61
- color: #999;
62
- font-weight: bold; }
63
- .highlight .c1 {
64
- color: #998;
65
- font-style: italic; }
66
- .highlight .cs {
67
- color: #999;
68
- font-weight: bold;
69
- font-style: italic; }
70
- .highlight .gd {
71
- color: #000;
72
- background-color: #fdd; }
73
- .highlight .gd .x {
74
- color: #000;
75
- background-color: #faa; }
76
- .highlight .ge {
77
- font-style: italic; }
78
- .highlight .gr {
79
- color: #a00; }
80
- .highlight .gh {
81
- color: #999; }
82
- .highlight .gi {
83
- color: #000;
84
- background-color: #dfd; }
85
- .highlight .gi .x {
86
- color: #000;
87
- background-color: #afa; }
88
- .highlight .go {
89
- color: #888; }
90
- .highlight .gp {
91
- color: #555; }
92
- .highlight .gs {
93
- font-weight: bold; }
94
- .highlight .gu {
95
- color: #aaa; }
96
- .highlight .gt {
97
- color: #a00; }
98
- .highlight .kc {
99
- font-weight: bold; }
100
- .highlight .kd {
101
- font-weight: bold; }
102
- .highlight .kp {
103
- font-weight: bold; }
104
- .highlight .kr {
105
- font-weight: bold; }
106
- .highlight .kt {
107
- color: #458;
108
- font-weight: bold; }
109
- .highlight .m {
110
- color: #099; }
111
- .highlight .s {
112
- color: #d14; }
113
- .highlight .na {
114
- color: #008080; }
115
- .highlight .nb {
116
- color: #0086B3; }
117
- .highlight .nc {
118
- color: #458;
119
- font-weight: bold; }
120
- .highlight .no {
121
- color: #008080; }
122
- .highlight .ni {
123
- color: #800080; }
124
- .highlight .ne {
125
- color: #900;
126
- font-weight: bold; }
127
- .highlight .nf {
128
- color: #900;
129
- font-weight: bold; }
130
- .highlight .nn {
131
- color: #555; }
132
- .highlight .nt {
133
- color: #000080; }
134
- .highlight .nv {
135
- color: #008080; }
136
- .highlight .ow {
137
- font-weight: bold; }
138
- .highlight .w {
139
- color: #bbb; }
140
- .highlight .mf {
141
- color: #099; }
142
- .highlight .mh {
143
- color: #099; }
144
- .highlight .mi {
145
- color: #099; }
146
- .highlight .mo {
147
- color: #099; }
148
- .highlight .sb {
149
- color: #d14; }
150
- .highlight .sc {
151
- color: #d14; }
152
- .highlight .sd {
153
- color: #d14; }
154
- .highlight .s2 {
155
- color: #d14; }
156
- .highlight .se {
157
- color: #d14; }
158
- .highlight .sh {
159
- color: #d14; }
160
- .highlight .si {
161
- color: #d14; }
162
- .highlight .sx {
163
- color: #d14; }
164
- .highlight .sr {
165
- color: #009926; }
166
- .highlight .s1 {
167
- color: #d14; }
168
- .highlight .ss {
169
- color: #990073; }
170
- .highlight .bp {
171
- color: #999; }
172
- .highlight .vc {
173
- color: #008080; }
174
- .highlight .vg {
175
- color: #008080; }
176
- .highlight .vi {
177
- color: #008080; }
178
- .highlight .il {
179
- color: #099; }