forest-time-jekyll 0.3.2 → 0.3.3
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/_includes/head.html +4 -1
- data/_sass/_objects.image.scss +2 -2
- data/_sass/_objects.text.scss +8 -7
- data/_sass/contact-form.scss +57 -57
- data/_sass/mailchimp.scss +76 -76
- data/_sass/main.scss +400 -394
- data/_sass/syntax.scss +210 -63
- data/assets/css/core.scss +3 -3
- metadata +2 -2
data/_sass/syntax.scss
CHANGED
@@ -1,68 +1,215 @@
|
|
1
1
|
// Downloaded from http://jwarby.github.io/jekyll-pygments-themes/languages/javascript.html
|
2
2
|
|
3
3
|
code {
|
4
|
-
|
5
|
-
|
4
|
+
background-color: #f9f9f9;
|
5
|
+
color: #444;
|
6
6
|
}
|
7
7
|
|
8
|
-
.highlight .hll {
|
9
|
-
|
10
|
-
|
11
|
-
.highlight .
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
.highlight .
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
.highlight .
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
.highlight .
|
24
|
-
|
25
|
-
|
26
|
-
.highlight .
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
.highlight .
|
31
|
-
|
32
|
-
|
33
|
-
.highlight .
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
.highlight .
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
.highlight .
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
.highlight .
|
47
|
-
|
48
|
-
|
49
|
-
.highlight .
|
50
|
-
|
51
|
-
|
52
|
-
.highlight .
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
.highlight .
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
.highlight .
|
61
|
-
|
62
|
-
|
63
|
-
.highlight .
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
.highlight .
|
68
|
-
|
8
|
+
.highlight .hll {
|
9
|
+
background-color: #ffffcc;
|
10
|
+
}
|
11
|
+
.highlight .c {
|
12
|
+
color: #0099ff;
|
13
|
+
font-style: italic;
|
14
|
+
} /* Comment */
|
15
|
+
.highlight .err {
|
16
|
+
color: #aa0000;
|
17
|
+
background-color: #ffaaaa;
|
18
|
+
} /* Error */
|
19
|
+
.highlight .k {
|
20
|
+
color: #006699;
|
21
|
+
font-weight: bold;
|
22
|
+
} /* Keyword */
|
23
|
+
.highlight .o {
|
24
|
+
color: #555555;
|
25
|
+
} /* Operator */
|
26
|
+
.highlight .cm {
|
27
|
+
color: #0099ff;
|
28
|
+
font-style: italic;
|
29
|
+
} /* Comment.Multiline */
|
30
|
+
.highlight .cp {
|
31
|
+
color: #009999;
|
32
|
+
} /* Comment.Preproc */
|
33
|
+
.highlight .c1 {
|
34
|
+
color: #0099ff;
|
35
|
+
font-style: italic;
|
36
|
+
} /* Comment.Single */
|
37
|
+
.highlight .cs {
|
38
|
+
color: #0099ff;
|
39
|
+
font-weight: bold;
|
40
|
+
font-style: italic;
|
41
|
+
} /* Comment.Special */
|
42
|
+
.highlight .gd {
|
43
|
+
background-color: #ffcccc;
|
44
|
+
border: 1px solid #cc0000;
|
45
|
+
} /* Generic.Deleted */
|
46
|
+
.highlight .ge {
|
47
|
+
font-style: italic;
|
48
|
+
} /* Generic.Emph */
|
49
|
+
.highlight .gr {
|
50
|
+
color: #ff0000;
|
51
|
+
} /* Generic.Error */
|
52
|
+
.highlight .gh {
|
53
|
+
color: #003300;
|
54
|
+
font-weight: bold;
|
55
|
+
} /* Generic.Heading */
|
56
|
+
.highlight .gi {
|
57
|
+
background-color: #ccffcc;
|
58
|
+
border: 1px solid #00cc00;
|
59
|
+
} /* Generic.Inserted */
|
60
|
+
.highlight .go {
|
61
|
+
color: #aaaaaa;
|
62
|
+
} /* Generic.Output */
|
63
|
+
.highlight .gp {
|
64
|
+
color: #000099;
|
65
|
+
font-weight: bold;
|
66
|
+
} /* Generic.Prompt */
|
67
|
+
.highlight .gs {
|
68
|
+
font-weight: bold;
|
69
|
+
} /* Generic.Strong */
|
70
|
+
.highlight .gu {
|
71
|
+
color: #003300;
|
72
|
+
font-weight: bold;
|
73
|
+
} /* Generic.Subheading */
|
74
|
+
.highlight .gt {
|
75
|
+
color: #99cc66;
|
76
|
+
} /* Generic.Traceback */
|
77
|
+
.highlight .kc {
|
78
|
+
color: #006699;
|
79
|
+
font-weight: bold;
|
80
|
+
} /* Keyword.Constant */
|
81
|
+
.highlight .kd {
|
82
|
+
color: #006699;
|
83
|
+
font-weight: bold;
|
84
|
+
} /* Keyword.Declaration */
|
85
|
+
.highlight .kn {
|
86
|
+
color: #006699;
|
87
|
+
font-weight: bold;
|
88
|
+
} /* Keyword.Namespace */
|
89
|
+
.highlight .kp {
|
90
|
+
color: #006699;
|
91
|
+
} /* Keyword.Pseudo */
|
92
|
+
.highlight .kr {
|
93
|
+
color: #006699;
|
94
|
+
font-weight: bold;
|
95
|
+
} /* Keyword.Reserved */
|
96
|
+
.highlight .kt {
|
97
|
+
color: #007788;
|
98
|
+
font-weight: bold;
|
99
|
+
} /* Keyword.Type */
|
100
|
+
.highlight .m {
|
101
|
+
color: #ff6600;
|
102
|
+
} /* Literal.Number */
|
103
|
+
.highlight .s {
|
104
|
+
color: #cc3300;
|
105
|
+
} /* Literal.String */
|
106
|
+
.highlight .na {
|
107
|
+
color: #330099;
|
108
|
+
} /* Name.Attribute */
|
109
|
+
.highlight .nb {
|
110
|
+
color: #336666;
|
111
|
+
} /* Name.Builtin */
|
112
|
+
.highlight .nc {
|
113
|
+
color: #00aa88;
|
114
|
+
font-weight: bold;
|
115
|
+
} /* Name.Class */
|
116
|
+
.highlight .no {
|
117
|
+
color: #336600;
|
118
|
+
} /* Name.Constant */
|
119
|
+
.highlight .nd {
|
120
|
+
color: #9999ff;
|
121
|
+
} /* Name.Decorator */
|
122
|
+
.highlight .ni {
|
123
|
+
color: #999999;
|
124
|
+
font-weight: bold;
|
125
|
+
} /* Name.Entity */
|
126
|
+
.highlight .ne {
|
127
|
+
color: #cc0000;
|
128
|
+
font-weight: bold;
|
129
|
+
} /* Name.Exception */
|
130
|
+
.highlight .nf {
|
131
|
+
color: #cc00ff;
|
132
|
+
} /* Name.Function */
|
133
|
+
.highlight .nl {
|
134
|
+
color: #9999ff;
|
135
|
+
} /* Name.Label */
|
136
|
+
.highlight .nn {
|
137
|
+
color: #00ccff;
|
138
|
+
font-weight: bold;
|
139
|
+
} /* Name.Namespace */
|
140
|
+
.highlight .nt {
|
141
|
+
color: #330099;
|
142
|
+
font-weight: bold;
|
143
|
+
} /* Name.Tag */
|
144
|
+
.highlight .nv {
|
145
|
+
color: #003333;
|
146
|
+
} /* Name.Variable */
|
147
|
+
.highlight .ow {
|
148
|
+
color: #000000;
|
149
|
+
font-weight: bold;
|
150
|
+
} /* Operator.Word */
|
151
|
+
.highlight .w {
|
152
|
+
color: #bbbbbb;
|
153
|
+
} /* Text.Whitespace */
|
154
|
+
.highlight .mf {
|
155
|
+
color: #ff6600;
|
156
|
+
} /* Literal.Number.Float */
|
157
|
+
.highlight .mh {
|
158
|
+
color: #ff6600;
|
159
|
+
} /* Literal.Number.Hex */
|
160
|
+
.highlight .mi {
|
161
|
+
color: #ff6600;
|
162
|
+
} /* Literal.Number.Integer */
|
163
|
+
.highlight .mo {
|
164
|
+
color: #ff6600;
|
165
|
+
} /* Literal.Number.Oct */
|
166
|
+
.highlight .sb {
|
167
|
+
color: #cc3300;
|
168
|
+
} /* Literal.String.Backtick */
|
169
|
+
.highlight .sc {
|
170
|
+
color: #cc3300;
|
171
|
+
} /* Literal.String.Char */
|
172
|
+
.highlight .sd {
|
173
|
+
color: #cc3300;
|
174
|
+
font-style: italic;
|
175
|
+
} /* Literal.String.Doc */
|
176
|
+
.highlight .s2 {
|
177
|
+
color: #cc3300;
|
178
|
+
} /* Literal.String.Double */
|
179
|
+
.highlight .se {
|
180
|
+
color: #cc3300;
|
181
|
+
font-weight: bold;
|
182
|
+
} /* Literal.String.Escape */
|
183
|
+
.highlight .sh {
|
184
|
+
color: #cc3300;
|
185
|
+
} /* Literal.String.Heredoc */
|
186
|
+
.highlight .si {
|
187
|
+
color: #aa0000;
|
188
|
+
} /* Literal.String.Interpol */
|
189
|
+
.highlight .sx {
|
190
|
+
color: #cc3300;
|
191
|
+
} /* Literal.String.Other */
|
192
|
+
.highlight .sr {
|
193
|
+
color: #33aaaa;
|
194
|
+
} /* Literal.String.Regex */
|
195
|
+
.highlight .s1 {
|
196
|
+
color: #cc3300;
|
197
|
+
} /* Literal.String.Single */
|
198
|
+
.highlight .ss {
|
199
|
+
color: #ffcc33;
|
200
|
+
} /* Literal.String.Symbol */
|
201
|
+
.highlight .bp {
|
202
|
+
color: #336666;
|
203
|
+
} /* Name.Builtin.Pseudo */
|
204
|
+
.highlight .vc {
|
205
|
+
color: #003333;
|
206
|
+
} /* Name.Variable.Class */
|
207
|
+
.highlight .vg {
|
208
|
+
color: #003333;
|
209
|
+
} /* Name.Variable.Global */
|
210
|
+
.highlight .vi {
|
211
|
+
color: #003333;
|
212
|
+
} /* Name.Variable.Instance */
|
213
|
+
.highlight .il {
|
214
|
+
color: #ff6600;
|
215
|
+
} /* Literal.Number.Integer.Long */
|
data/assets/css/core.scss
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: forest-time-jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Claudiu Constantin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|