neige-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/_sass/syntax.scss ADDED
@@ -0,0 +1,256 @@
1
+ .highlight {
2
+ background: $color-grey-70;
3
+ border-radius: 5px;
4
+
5
+ .c {
6
+ color: #998;
7
+ font-style: italic;
8
+ }
9
+
10
+ .err {
11
+ color: #a61717;
12
+ background-color: #e3d2d2;
13
+ }
14
+
15
+ .k {
16
+ font-weight: bold;
17
+ }
18
+
19
+ .o {
20
+ font-weight: bold;
21
+ }
22
+
23
+ .cm {
24
+ color: #998;
25
+ font-style: italic;
26
+ }
27
+
28
+ .cp {
29
+ color: #999;
30
+ font-weight: bold;
31
+ }
32
+
33
+ .c1 {
34
+ color: #998;
35
+ font-style: italic;
36
+ }
37
+
38
+ .cs {
39
+ color: #999;
40
+ font-weight: bold;
41
+ font-style: italic;
42
+ }
43
+
44
+ .gd {
45
+ color: #000;
46
+ background-color: #fdd;
47
+ }
48
+
49
+ .gd .x {
50
+ color: #000;
51
+ background-color: #faa;
52
+ }
53
+
54
+ .ge {
55
+ font-style: italic;
56
+ }
57
+
58
+ .gr {
59
+ color: #a00;
60
+ }
61
+
62
+ .gh {
63
+ color: #999;
64
+ }
65
+
66
+ .gi {
67
+ color: #000;
68
+ background-color: #dfd;
69
+ }
70
+
71
+ .gi .x {
72
+ color: #000;
73
+ background-color: #afa;
74
+ }
75
+
76
+ .go {
77
+ color: #888;
78
+ }
79
+
80
+ .gp {
81
+ color: #555;
82
+ }
83
+
84
+ .gs {
85
+ font-weight: bold;
86
+ }
87
+
88
+ .gu {
89
+ color: #aaa;
90
+ }
91
+
92
+ .gt {
93
+ color: #a00;
94
+ }
95
+
96
+ .kc {
97
+ font-weight: bold;
98
+ }
99
+
100
+ .kd {
101
+ font-weight: bold;
102
+ }
103
+
104
+ .kp {
105
+ font-weight: bold;
106
+ }
107
+
108
+ .kr {
109
+ font-weight: bold;
110
+ }
111
+
112
+ .kt {
113
+ color: #458;
114
+ font-weight: bold;
115
+ }
116
+
117
+ .m {
118
+ color: #099;
119
+ }
120
+
121
+ .s {
122
+ color: #d14;
123
+ }
124
+
125
+ .na {
126
+ color: #008080;
127
+ }
128
+
129
+ .nb {
130
+ color: #0086b3;
131
+ }
132
+
133
+ .nc {
134
+ color: #458;
135
+ font-weight: bold;
136
+ }
137
+
138
+ .no {
139
+ color: #008080;
140
+ }
141
+
142
+ .ni {
143
+ color: #800080;
144
+ }
145
+
146
+ .ne {
147
+ color: #900;
148
+ font-weight: bold;
149
+ }
150
+
151
+ .nf {
152
+ color: #900;
153
+ font-weight: bold;
154
+ }
155
+
156
+ .nn {
157
+ color: #555;
158
+ }
159
+
160
+ .nt {
161
+ color: #000080;
162
+ }
163
+
164
+ .nv {
165
+ color: #008080;
166
+ }
167
+
168
+ .ow {
169
+ font-weight: bold;
170
+ }
171
+
172
+ .w {
173
+ color: #bbb;
174
+ }
175
+
176
+ .mf {
177
+ color: #099;
178
+ }
179
+
180
+ .mh {
181
+ color: #099;
182
+ }
183
+
184
+ .mi {
185
+ color: #099;
186
+ }
187
+
188
+ .mo {
189
+ color: #099;
190
+ }
191
+
192
+ .sb {
193
+ color: #d14;
194
+ }
195
+
196
+ .sc {
197
+ color: #d14;
198
+ }
199
+
200
+ .sd {
201
+ color: #d14;
202
+ }
203
+
204
+ .s2 {
205
+ color: #d14;
206
+ }
207
+
208
+ .se {
209
+ color: #d14;
210
+ }
211
+
212
+ .sh {
213
+ color: #d14;
214
+ }
215
+
216
+ .si {
217
+ color: #d14;
218
+ }
219
+
220
+ .sx {
221
+ color: #d14;
222
+ }
223
+
224
+ .sr {
225
+ color: #009926;
226
+ }
227
+
228
+ .s1 {
229
+ color: #d14;
230
+ }
231
+
232
+ .ss {
233
+ color: #990073;
234
+ }
235
+
236
+ .bp {
237
+ color: #999;
238
+ }
239
+
240
+ .vc {
241
+ color: #008080;
242
+ }
243
+
244
+ .vg {
245
+ color: #008080;
246
+ }
247
+
248
+ .vi {
249
+ color: #008080;
250
+ }
251
+
252
+ .il {
253
+ color: #099;
254
+ }
255
+
256
+ }
data/_sass/vars.scss ADDED
@@ -0,0 +1,10 @@
1
+ // COLORS
2
+ $color-grey: #333;
3
+ $color-grey-30: lighten($color-grey, 30%);
4
+ $color-grey-50: lighten($color-grey, 50%);
5
+ $color-grey-70: lighten($color-grey, 70%);
6
+ $color-white: #fdfdfd;
7
+
8
+ // FONTS
9
+ $font-serif: 'Times New Roman', serif;
10
+ $font-sans-serif: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
@@ -0,0 +1,31 @@
1
+ ---
2
+ ---
3
+
4
+ @import 'normalize';
5
+ @import 'vars';
6
+ @import 'elements';
7
+ @import 'syntax';
8
+ @import 'header';
9
+ @import 'footer';
10
+ @import 'index';
11
+ @import 'layout';
12
+ @import 'posts';
13
+ @import 'info';
14
+ @import 'share';
15
+ @import 'pagination';
16
+
17
+ body {
18
+ background: $color-white;
19
+ color: $color-grey;
20
+ font-family: $font-sans-serif;
21
+ }
22
+
23
+ ::-moz-selection {
24
+ background: $color-grey-30;
25
+ color: $color-white;
26
+ }
27
+
28
+ ::selection {
29
+ background: $color-grey-30;
30
+ color: $color-white;
31
+ }
Binary file
Binary file
data/assets/img/og.jpg ADDED
Binary file
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: neige-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Quentin Bellanger
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-06-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.16'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.16'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '12.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '12.0'
55
+ description:
56
+ email:
57
+ - hello@quentin-bellanger.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.txt
63
+ - README.md
64
+ - _includes/footer.html
65
+ - _includes/head.html
66
+ - _includes/header.html
67
+ - _includes/info.html
68
+ - _includes/pagination.html
69
+ - _includes/share.html
70
+ - _layouts/default.html
71
+ - _layouts/page.html
72
+ - _layouts/post.html
73
+ - _sass/elements.scss
74
+ - _sass/footer.scss
75
+ - _sass/header.scss
76
+ - _sass/index.scss
77
+ - _sass/info.scss
78
+ - _sass/layout.scss
79
+ - _sass/normalize.scss
80
+ - _sass/pagination.scss
81
+ - _sass/posts.scss
82
+ - _sass/share.scss
83
+ - _sass/syntax.scss
84
+ - _sass/vars.scss
85
+ - assets/css/style.scss
86
+ - assets/img/favicon.png
87
+ - assets/img/icon.png
88
+ - assets/img/og.jpg
89
+ homepage: https://neige-theme.com
90
+ licenses:
91
+ - MIT
92
+ metadata: {}
93
+ post_install_message:
94
+ rdoc_options: []
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubyforge_project:
109
+ rubygems_version: 2.6.14
110
+ signing_key:
111
+ specification_version: 4
112
+ summary: A minimalist and lightweight Jekyll blog theme
113
+ test_files: []