jekyll-minimal-dark-orange 1.0.0

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.
@@ -0,0 +1,198 @@
1
+ // Colors
2
+ $navy: #001f3f;
3
+ $blue: #0074D9;
4
+ $aqua: #7FDBFF;
5
+ $teal: #39CCCC;
6
+ $olive: #3D9970;
7
+ $green: #2ECC40;
8
+ $lime: #01FF70;
9
+ $yellow: #FFDC00;
10
+ $orange: #FF851B;
11
+ $red: #FF4136;
12
+ $maroon: #85144b;
13
+ $fuchsia: #F012BE;
14
+ $purple: #B10DC9;
15
+ $black: #212121;
16
+ $gray: #AAAAAA;
17
+ $silver: #DDDDDD;
18
+ $white: #FFFFFF;
19
+
20
+ /* CSS Reset */
21
+
22
+ html {
23
+ box-sizing: border-box;
24
+ font-size: 16px;
25
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
26
+ }
27
+
28
+ *, *:before, *:after {
29
+ box-sizing: inherit;
30
+ }
31
+
32
+ body, h1, h2, h3, h4, h5, h6, p, ol, ul {
33
+ margin: 0;
34
+ padding: 0;
35
+ font-weight: normal;
36
+ }
37
+
38
+ /* Lists */
39
+
40
+ ul {
41
+ list-style: circle inside;
42
+ }
43
+
44
+ ol {
45
+ list-style: decimal inside;
46
+ }
47
+
48
+ li {
49
+ margin-bottom: .5rem;
50
+ }
51
+
52
+ li > ul, li > ol {
53
+ margin: 1rem 0 1rem 1rem;
54
+ }
55
+
56
+ img {
57
+ max-width: 100%;
58
+ height: auto;
59
+ }
60
+
61
+ body {
62
+ line-height: 1;
63
+ color: $black;
64
+ }
65
+
66
+ // Headers
67
+ h1 {font-size: 3rem;}
68
+ h2 {font-size: 2.5rem;}
69
+ h3 {font-size: 2rem;}
70
+ h4 {font-size: 1.75rem;}
71
+ h5 {font-size: 1.5rem;}
72
+ h6 {font-size: 1.25rem;}
73
+ h1, h2, h3, h4, h5, h6 {
74
+ line-height: 1.2;
75
+ }
76
+
77
+ /* Forms and buttons */
78
+
79
+ input:not([type=submit]):not([type=reset]):not([type=button]):not([type=checkbox]):not([type=radio]),
80
+ optgroup,
81
+ select,
82
+ textarea {
83
+ font-family: inherit;
84
+ font-size: 100%;
85
+ margin: 0;
86
+ margin-bottom: 1rem;
87
+ background: #FFFFFF;
88
+ padding: .2rem .4rem;
89
+ color: $black;
90
+ border: 1px solid $gray;
91
+ border-radius: .2rem;
92
+ display: block;
93
+ transition: border-color 0.2s ease;
94
+ width: 100%;
95
+
96
+ &:focus {
97
+ border-color: $blue;
98
+ }
99
+
100
+ &:disabled {background-color: $silver}
101
+
102
+ &:invalid {
103
+ border: 1px solid $red;
104
+ box-shadow: none;
105
+ }
106
+ }
107
+
108
+ label, legend {
109
+ display: block;
110
+ margin-bottom: .5rem;
111
+ }
112
+
113
+ input:not([type=radio]):not([type=checkbox]), select, button {
114
+ height: 2rem;
115
+ display: inline-block;
116
+ }
117
+
118
+ input:not([type=radio]):not([type=checkbox]) {
119
+ height: 2rem;
120
+ display: inline-block;
121
+ -webkit-appearance: none;
122
+ }
123
+
124
+ fieldset {
125
+ border: 1px solid $silver;
126
+ border-radius: .2rem;
127
+ }
128
+
129
+ /* Buttons */
130
+
131
+ button, *[type=submit], *[type=reset] {
132
+ background-color: $blue;
133
+ border-radius: .1rem;
134
+ color: $white;
135
+ padding: 0 2rem;
136
+ display: inline-block;
137
+ border: 0;
138
+ transition: background-color .3s ease;
139
+
140
+ &:hover {
141
+ background-color: $aqua;
142
+ }
143
+ }
144
+
145
+ a {
146
+ color: $blue;
147
+ text-decoration: none;
148
+ transition: color .5s ease;
149
+ &:hover {color: $black}
150
+ }
151
+
152
+ /* Tables */
153
+
154
+ table {
155
+ width: 100%;
156
+ border-collapse: collapse;
157
+ table-layout: fixed;
158
+ margin: 10px 0;
159
+
160
+ td, th {
161
+ padding: 5px;
162
+ line-height: 150%;
163
+ border-top: 1px solid $gray;
164
+ border-bottom: 1px solid $gray;
165
+ text-align: left;
166
+ }
167
+ }
168
+
169
+ /* Blockquote and pre */
170
+
171
+ blockquote, pre {
172
+ font-family: monospace;
173
+ background-color: $black;
174
+ color: $gray;
175
+ border-radius: 3px;
176
+ padding: 1rem;
177
+ margin: 0;
178
+ }
179
+
180
+ pre {
181
+ white-space: pre-wrap;
182
+ }
183
+
184
+ ul, ol, p, table, blockquote, form, blockquote, pre, video, audio, fieldset,
185
+ h1, h2, h3, h4, h5, h6 {
186
+ margin-bottom: 1.5rem;
187
+ }
188
+
189
+ video, audio {
190
+ width: 100%;
191
+ max-width: 1280px;
192
+ height: auto;
193
+ display: block;
194
+ }
195
+
196
+ audio {
197
+ max-width: 640px;
198
+ }
@@ -0,0 +1,282 @@
1
+ {
2
+ "name": "",
3
+ "css_prefix_text": "icon-",
4
+ "css_use_suffix": false,
5
+ "hinting": true,
6
+ "units_per_em": 1000,
7
+ "ascent": 850,
8
+ "glyphs": [
9
+ {
10
+ "uid": "0f6a2573a7b6df911ed199bb63717e27",
11
+ "css": "github",
12
+ "code": 61595,
13
+ "src": "fontawesome"
14
+ },
15
+ {
16
+ "uid": "0419da6446cb4f31093e2022793571ca",
17
+ "css": "twitter",
18
+ "code": 62218,
19
+ "src": "entypo"
20
+ },
21
+ {
22
+ "uid": "882d407598d4e60074f5c08b3372811e",
23
+ "css": "spotify",
24
+ "code": 62247,
25
+ "src": "entypo"
26
+ },
27
+ {
28
+ "uid": "ce1d525f3f31024c6a6b38f5e9a88953",
29
+ "css": "facebook",
30
+ "code": 62221,
31
+ "src": "entypo"
32
+ },
33
+ {
34
+ "uid": "2e9c0fdd4d59598cb122801ab80222e7",
35
+ "css": "pinterest",
36
+ "code": 62227,
37
+ "src": "entypo"
38
+ },
39
+ {
40
+ "uid": "21adad41ffebf469b2370d26bcb8a3c4",
41
+ "css": "linkedin",
42
+ "code": 62233,
43
+ "src": "entypo"
44
+ },
45
+ {
46
+ "uid": "0fbfb1cd7a847c88ea4c141d0e1bbdb5",
47
+ "css": "instagram",
48
+ "code": 62253,
49
+ "src": "entypo"
50
+ },
51
+ {
52
+ "uid": "3e617d8049807e128c80d0344ba09e37",
53
+ "css": "rss",
54
+ "code": 59392,
55
+ "src": "entypo"
56
+ },
57
+ {
58
+ "uid": "47a1f80457068fbeab69fdb83d7d0817",
59
+ "css": "youtube",
60
+ "code": 61802,
61
+ "src": "fontawesome"
62
+ },
63
+ {
64
+ "uid": "6569bd1801e232180221ba0f6a4b8b27",
65
+ "css": "vimeo",
66
+ "code": 62215,
67
+ "src": "entypo"
68
+ },
69
+ {
70
+ "uid": "84e3f45161833ef08775ede987c0fe96",
71
+ "css": "telegram",
72
+ "code": 59393,
73
+ "src": "custom_icons",
74
+ "selected": true,
75
+ "svg": {
76
+ "path": "M407.5 777.1L419.2 600.8 739.2 312.5C753.3 299.6 736.3 293.3 717.5 304.6L322.5 554.2 151.7 500C115 489.6 114.6 464.2 160 445.8L825.4 189.2C855.8 175.4 885 196.7 873.3 243.3L760 777.1C752.1 815 729.2 824.2 697.5 806.7L525 679.2 442.1 759.6C432.5 769.2 424.6 777.1 407.5 777.1Z",
77
+ "width": 1000
78
+ },
79
+ "search": [
80
+ "telegram"
81
+ ]
82
+ },
83
+ {
84
+ "uid": "9d3e9faf68fd4e12def853f0d4e1173b",
85
+ "css": "whatsapp",
86
+ "code": 62002,
87
+ "src": "fontawesome"
88
+ },
89
+ {
90
+ "uid": "7cca4643f1e938c673e91c0c78058ddf",
91
+ "css": "gitlab",
92
+ "code": 62102,
93
+ "src": "fontawesome"
94
+ },
95
+ {
96
+ "uid": "5b4b48418155c35459f12171f97c82ff",
97
+ "css": "gittip",
98
+ "code": 61828,
99
+ "src": "fontawesome"
100
+ },
101
+ {
102
+ "uid": "3c2cfcbad5062929d63a249f3858e38b",
103
+ "css": "git",
104
+ "code": 61523,
105
+ "src": "mfglabs"
106
+ },
107
+ {
108
+ "uid": "e70df9acbabaebfbbf9c1dbc3e52ab13",
109
+ "css": "twitch",
110
+ "code": 61928,
111
+ "src": "fontawesome"
112
+ },
113
+ {
114
+ "uid": "7222571caa5c15f83dcfd447c58d68d9",
115
+ "css": "search",
116
+ "code": 59394,
117
+ "src": "entypo"
118
+ },
119
+ {
120
+ "uid": "c709da589c923ba3c2ad48d9fc563e93",
121
+ "css": "cancel",
122
+ "code": 59395,
123
+ "src": "entypo"
124
+ },
125
+ {
126
+ "uid": "2cfb3f2b46b34a1790aec0aa846297b6",
127
+ "css": "menu",
128
+ "code": 59396,
129
+ "src": "entypo"
130
+ },
131
+ {
132
+ "uid": "f08ba9f0e8f9b426a92efcaa59c1e932",
133
+ "css": "reddit",
134
+ "code": 62081,
135
+ "src": "fontawesome"
136
+ },
137
+ {
138
+ "uid": "70370693ada58ef0a60fa0984fe8d52a",
139
+ "css": "plus",
140
+ "code": 59397,
141
+ "src": "entypo"
142
+ },
143
+ {
144
+ "uid": "1256e3054823e304d7e452a589cf8bb8",
145
+ "css": "minus",
146
+ "code": 59398,
147
+ "src": "entypo"
148
+ },
149
+ {
150
+ "uid": "592717bd601645d61517d2a584d04127",
151
+ "css": "prev",
152
+ "code": 59399,
153
+ "src": "entypo"
154
+ },
155
+ {
156
+ "uid": "37f6cfbb4062ed0d01b351ec35c334ff",
157
+ "css": "next",
158
+ "code": 59400,
159
+ "src": "entypo"
160
+ },
161
+ {
162
+ "uid": "4a413ef43c364dafa42766e74c31bbca",
163
+ "css": "cc",
164
+ "code": 59402,
165
+ "src": "entypo"
166
+ },
167
+ {
168
+ "uid": "72681d2825fef7fd83711278f845547b",
169
+ "css": "cc-by",
170
+ "code": 59401,
171
+ "src": "entypo"
172
+ },
173
+ {
174
+ "uid": "2d741e29010c6afbfc3784251fbf4e8b",
175
+ "css": "cc-nc-eu",
176
+ "code": 59403,
177
+ "src": "entypo"
178
+ },
179
+ {
180
+ "uid": "3138d5e10d50279c6d97ad1c99fdb584",
181
+ "css": "cc-nc-jp",
182
+ "code": 59404,
183
+ "src": "entypo"
184
+ },
185
+ {
186
+ "uid": "7540520e12e941839cdb7d76b12e82a8",
187
+ "css": "cc-nc",
188
+ "code": 59405,
189
+ "src": "entypo"
190
+ },
191
+ {
192
+ "uid": "b92e2a918daa2f9a042df1ce942b686f",
193
+ "css": "cc-nd",
194
+ "code": 59406,
195
+ "src": "entypo"
196
+ },
197
+ {
198
+ "uid": "49679f26492c29c7bc277f1de9249229",
199
+ "css": "cc-pd",
200
+ "code": 59407,
201
+ "src": "entypo"
202
+ },
203
+ {
204
+ "uid": "900851106d63af1bc6076ae118dc543d",
205
+ "css": "cc-sa",
206
+ "code": 59408,
207
+ "src": "entypo"
208
+ },
209
+ {
210
+ "uid": "94914cbbfba692ebbc13c179d62355f7",
211
+ "css": "cc-zero",
212
+ "code": 59409,
213
+ "src": "entypo"
214
+ },
215
+ {
216
+ "uid": "915c11e4e2e713cc7d65d32d66f004bf",
217
+ "css": "cc-share",
218
+ "code": 59410,
219
+ "src": "entypo"
220
+ },
221
+ {
222
+ "uid": "0cd7be54280d9ffbe0f48342c011268e",
223
+ "css": "cc-remix",
224
+ "code": 59411,
225
+ "src": "entypo"
226
+ },
227
+ {
228
+ "uid": "4a74a0f87d4089efe7aba1825bff4193",
229
+ "css": "copyright",
230
+ "code": 61945,
231
+ "src": "fontawesome"
232
+ },
233
+ {
234
+ "uid": "c3ec0e8d143190ee85d404bd064bf8f4",
235
+ "css": "trademark",
236
+ "code": 62044,
237
+ "src": "fontawesome"
238
+ },
239
+ {
240
+ "uid": "c3371cca5561d470f45ae0a9c485b7ec",
241
+ "css": "registered",
242
+ "code": 62045,
243
+ "src": "fontawesome"
244
+ },
245
+ {
246
+ "uid": "b6f32db98a3de777f5ae3005191b1831",
247
+ "css": "code",
248
+ "code": 59412,
249
+ "src": "entypo"
250
+ },
251
+ {
252
+ "uid": "44b9e75612c5fad5505edd70d071651f",
253
+ "css": "attach",
254
+ "code": 59413,
255
+ "src": "entypo"
256
+ },
257
+ {
258
+ "uid": "a42b598e4298f3319b25a2702a02e7ff",
259
+ "css": "location",
260
+ "code": 59414,
261
+ "src": "entypo"
262
+ },
263
+ {
264
+ "uid": "413717f5ea649e8d8b93938be277264a",
265
+ "css": "calendar",
266
+ "code": 59415,
267
+ "src": "entypo"
268
+ },
269
+ {
270
+ "uid": "d18071bbf8f0a8cec8d1f556c91c6af0",
271
+ "css": "heart",
272
+ "code": 59416,
273
+ "src": "entypo"
274
+ },
275
+ {
276
+ "uid": "b08cfe8039de2ce815686aced2caef06",
277
+ "css": "download",
278
+ "code": 59417,
279
+ "src": "entypo"
280
+ }
281
+ ]
282
+ }