phantom-blergh 0.1.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.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +78 -0
  4. data/_includes/collection-index.html +19 -0
  5. data/_includes/disqus_comments.html +19 -0
  6. data/_includes/footer.html +68 -0
  7. data/_includes/google-analytics.html +11 -0
  8. data/_includes/head.html +38 -0
  9. data/_includes/header.html +52 -0
  10. data/_includes/index.html +23 -0
  11. data/_includes/read-time.html +6 -0
  12. data/_layouts/default.html +26 -0
  13. data/_layouts/home.html +29 -0
  14. data/_layouts/page.html +16 -0
  15. data/_layouts/post.html +41 -0
  16. data/_sass/phantom-blergh.scss +68 -0
  17. data/_sass/phantom-blergh/base/_page.scss +40 -0
  18. data/_sass/phantom-blergh/base/_typography.scss +203 -0
  19. data/_sass/phantom-blergh/components/_box.scss +26 -0
  20. data/_sass/phantom-blergh/components/_button.scss +88 -0
  21. data/_sass/phantom-blergh/components/_form.scss +206 -0
  22. data/_sass/phantom-blergh/components/_icon.scss +50 -0
  23. data/_sass/phantom-blergh/components/_image.scss +64 -0
  24. data/_sass/phantom-blergh/components/_list.scss +177 -0
  25. data/_sass/phantom-blergh/components/_section.scss +26 -0
  26. data/_sass/phantom-blergh/components/_syntax_highlighting.scss +320 -0
  27. data/_sass/phantom-blergh/components/_table.scss +81 -0
  28. data/_sass/phantom-blergh/components/_tiles.scss +258 -0
  29. data/_sass/phantom-blergh/ie8.scss +92 -0
  30. data/_sass/phantom-blergh/ie9.scss +52 -0
  31. data/_sass/phantom-blergh/layout/_articles.scss +19 -0
  32. data/_sass/phantom-blergh/layout/_footer.scss +139 -0
  33. data/_sass/phantom-blergh/layout/_header.scss +136 -0
  34. data/_sass/phantom-blergh/layout/_main.scss +15 -0
  35. data/_sass/phantom-blergh/layout/_menu.scss +164 -0
  36. data/_sass/phantom-blergh/layout/_wrapper.scss +26 -0
  37. data/_sass/phantom-blergh/libs/_functions.scss +34 -0
  38. data/_sass/phantom-blergh/libs/_mixins.scss +51 -0
  39. data/_sass/phantom-blergh/libs/_skel.scss +537 -0
  40. data/_sass/phantom-blergh/libs/_vars.scss +50 -0
  41. data/assets/css/font-awesome.min.css +4 -0
  42. data/assets/css/ie9.scss +6 -0
  43. data/assets/css/main.scss +5 -0
  44. data/assets/favicon.png +0 -0
  45. data/assets/fonts/FontAwesome.otf +0 -0
  46. data/assets/fonts/fontawesome-webfont.eot +0 -0
  47. data/assets/fonts/fontawesome-webfont.svg +685 -0
  48. data/assets/fonts/fontawesome-webfont.ttf +0 -0
  49. data/assets/fonts/fontawesome-webfont.woff +0 -0
  50. data/assets/fonts/fontawesome-webfont.woff2 +0 -0
  51. data/assets/images/stock01.jpg +0 -0
  52. data/assets/images/stock02.jpg +0 -0
  53. data/assets/images/stock03.jpg +0 -0
  54. data/assets/images/stock04.jpg +0 -0
  55. data/assets/images/stock05.jpg +0 -0
  56. data/assets/images/stock06.jpg +0 -0
  57. data/assets/images/stock07.jpg +0 -0
  58. data/assets/images/stock08.jpg +0 -0
  59. data/assets/images/stock09.jpg +0 -0
  60. data/assets/images/stock10.jpg +0 -0
  61. data/assets/images/stock11.jpg +0 -0
  62. data/assets/images/stock12.jpg +0 -0
  63. data/assets/images/stock13.jpg +0 -0
  64. data/assets/images/stock14.jpg +0 -0
  65. data/assets/images/stock15.jpg +0 -0
  66. data/assets/js/email.js +18 -0
  67. data/assets/js/https.js +11 -0
  68. data/assets/js/ie/html5shiv.js +8 -0
  69. data/assets/js/ie/respond.min.js +6 -0
  70. data/assets/js/jquery.min.js +5 -0
  71. data/assets/js/main.js +200 -0
  72. data/assets/js/skel.min.js +2 -0
  73. data/assets/js/util.js +587 -0
  74. data/assets/logo.svg +14 -0
  75. metadata +161 -0
@@ -0,0 +1,50 @@
1
+ ///
2
+ /// Phantom by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Icon */
8
+
9
+ .icon {
10
+ @include icon;
11
+ border-bottom: none;
12
+ position: relative;
13
+
14
+ > .label {
15
+ display: none;
16
+ }
17
+
18
+ &.style1 {
19
+ }
20
+
21
+ &.style2 {
22
+ @include vendor('transition', (
23
+ 'background-color #{_duration(transition)} ease-in-out',
24
+ 'color #{_duration(transition)} ease-in-out',
25
+ 'border-color #{_duration(transition)} ease-in-out'
26
+ ));
27
+ background-color: transparent;
28
+ border: solid 1px _palette(border);
29
+ border-radius: _size(border-radius);
30
+ width: 2.65em;
31
+ height: 2.65em;
32
+ display: inline-block;
33
+ text-align: center;
34
+ line-height: 2.65em;
35
+ color: inherit;
36
+
37
+ &:before {
38
+ font-size: 1.1em;
39
+ }
40
+
41
+ &:hover {
42
+ color: _palette(accent1);
43
+ border-color: _palette(accent1);
44
+ }
45
+
46
+ &:active {
47
+ background-color: transparentize(_palette(accent1), 0.9);
48
+ }
49
+ }
50
+ }
@@ -0,0 +1,64 @@
1
+ ///
2
+ /// Phantom by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Image */
8
+
9
+ .image {
10
+ border-radius: _size(border-radius);
11
+ border: 0;
12
+ display: inline-block;
13
+ position: relative;
14
+
15
+ img {
16
+ border-radius: _size(border-radius);
17
+ display: block;
18
+ }
19
+
20
+ &.left,
21
+ &.right {
22
+ max-width: 40%;
23
+
24
+ img {
25
+ width: 100%;
26
+ }
27
+ }
28
+
29
+ &.left {
30
+ float: left;
31
+ padding: 0 1.5em 1em 0;
32
+ top: 0.25em;
33
+ }
34
+
35
+ &.right {
36
+ float: right;
37
+ padding: 0 0 1em 1.5em;
38
+ top: 0.25em;
39
+ }
40
+
41
+ &.fit {
42
+ display: block;
43
+ margin: 0 0 _size(element-margin) 0;
44
+ width: 100%;
45
+
46
+ img {
47
+ width: 100%;
48
+ }
49
+ }
50
+
51
+ &.main {
52
+ display: block;
53
+ margin: 0 0 (_size(element-margin) * 1.5) 0;
54
+ width: 100%;
55
+
56
+ img {
57
+ width: 100%;
58
+ }
59
+
60
+ @include breakpoint(small) {
61
+ margin: 0 0 _size(element-margin) 0;
62
+ }
63
+ }
64
+ }
@@ -0,0 +1,177 @@
1
+ ///
2
+ /// Phantom by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* List */
8
+
9
+ ol {
10
+ list-style: decimal;
11
+ margin: 0 0 _size(element-margin) 0;
12
+ padding-left: 1.25em;
13
+
14
+ li {
15
+ padding-left: 0.25em;
16
+ }
17
+ }
18
+
19
+ ul {
20
+ list-style: disc;
21
+ margin: 0 0 _size(element-margin) 0;
22
+ padding-left: 1em;
23
+
24
+ li {
25
+ padding-left: 0.5em;
26
+ }
27
+
28
+ &.alt {
29
+ list-style: none;
30
+ padding-left: 0;
31
+
32
+ li {
33
+ border-top: solid _size(border-width) _palette(border);
34
+ padding: 0.5em 0;
35
+
36
+ &:first-child {
37
+ border-top: 0;
38
+ padding-top: 0;
39
+ }
40
+ }
41
+ }
42
+
43
+ &.icons {
44
+ cursor: default;
45
+ list-style: none;
46
+ padding-left: 0;
47
+ margin: -1em 0 _size(element-margin) -1em;
48
+
49
+ li {
50
+ display: inline-block;
51
+ padding: 1em 0 0 1em;
52
+ }
53
+ }
54
+
55
+ &.actions {
56
+ cursor: default;
57
+ list-style: none;
58
+ padding-left: 0;
59
+
60
+ li {
61
+ display: inline-block;
62
+ padding: 0 (_size(element-margin) * 0.5) 0 0;
63
+ vertical-align: middle;
64
+
65
+ &:last-child {
66
+ padding-right: 0;
67
+ }
68
+ }
69
+
70
+ &.small {
71
+ li {
72
+ padding: 0 (_size(element-margin) * 0.25) 0 0;
73
+ }
74
+ }
75
+
76
+ &.vertical {
77
+ li {
78
+ display: block;
79
+ padding: (_size(element-margin) * 0.5) 0 0 0;
80
+
81
+ &:first-child {
82
+ padding-top: 0;
83
+ }
84
+
85
+ > * {
86
+ margin-bottom: 0;
87
+ }
88
+ }
89
+
90
+ &.small {
91
+ li {
92
+ padding: (_size(element-margin) * 0.25) 0 0 0;
93
+
94
+ &:first-child {
95
+ padding-top: 0;
96
+ }
97
+ }
98
+ }
99
+ }
100
+
101
+ &.fit {
102
+ display: table;
103
+ margin-left: (_size(element-margin) * -0.5);
104
+ padding: 0;
105
+ table-layout: fixed;
106
+ width: calc(100% + #{(_size(element-margin) * 0.5)});
107
+
108
+ li {
109
+ display: table-cell;
110
+ padding: 0 0 0 (_size(element-margin) * 0.5);
111
+
112
+ > * {
113
+ margin-bottom: 0;
114
+ }
115
+ }
116
+
117
+ &.small {
118
+ margin-left: (_size(element-margin) * -0.25);
119
+ width: calc(100% + #{(_size(element-margin) * 0.25)});
120
+
121
+ li {
122
+ padding: 0 0 0 (_size(element-margin) * 0.25);
123
+ }
124
+ }
125
+ }
126
+
127
+ @include breakpoint(xsmall) {
128
+ margin: 0 0 _size(element-margin) 0;
129
+
130
+ li {
131
+ padding: (_size(element-margin) * 0.5) 0 0 0;
132
+ display: block;
133
+ text-align: center;
134
+ width: 100%;
135
+
136
+ &:first-child {
137
+ padding-top: 0;
138
+ }
139
+
140
+ > * {
141
+ width: 100%;
142
+ margin: 0 !important;
143
+
144
+ &.icon {
145
+ &:before {
146
+ margin-left: -2em;
147
+ }
148
+ }
149
+ }
150
+ }
151
+
152
+ &.small {
153
+ li {
154
+ padding: (_size(element-margin) * 0.25) 0 0 0;
155
+
156
+ &:first-child {
157
+ padding-top: 0;
158
+ }
159
+ }
160
+ }
161
+ }
162
+ }
163
+ }
164
+
165
+ dl {
166
+ margin: 0 0 _size(element-margin) 0;
167
+
168
+ dt {
169
+ display: block;
170
+ font-weight: _font(weight-bold);
171
+ margin: 0 0 (_size(element-margin) * 0.5) 0;
172
+ }
173
+
174
+ dd {
175
+ margin-left: _size(element-margin);
176
+ }
177
+ }
@@ -0,0 +1,26 @@
1
+ ///
2
+ /// Phantom by HTML5 UP
3
+ /// html5up.net | @ajlkn
4
+ /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ ///
6
+
7
+ /* Section/Article */
8
+
9
+ section,
10
+ article {
11
+ &.special {
12
+ text-align: center;
13
+ }
14
+ }
15
+
16
+ header {
17
+ p {
18
+ margin-top: _size(element-margin) * -0.5;
19
+ }
20
+
21
+ @include breakpoint(small) {
22
+ p {
23
+ margin-top: 0;
24
+ }
25
+ }
26
+ }
@@ -0,0 +1,320 @@
1
+ /**
2
+ * Syntax highlighting styles
3
+ */
4
+ .highlight {
5
+ background: #fff;
6
+
7
+ .highlighter-rouge & {
8
+ background: #eef;
9
+ }
10
+
11
+ // Comment
12
+ .c {
13
+ color: #998;
14
+ font-style: italic;
15
+ }
16
+
17
+ // Error
18
+ .err {
19
+ color: #a61717;
20
+ background-color: #e3d2d2;
21
+ }
22
+
23
+ // Keyword
24
+ .k {
25
+ font-weight: bold;
26
+ }
27
+
28
+ // Operator
29
+ .o {
30
+ font-weight: bold;
31
+ }
32
+
33
+ // Comment.Multiline
34
+ .cm {
35
+ color: #998;
36
+ font-style: italic;
37
+ }
38
+
39
+ // Comment.Preproc
40
+ .cp {
41
+ color: #999;
42
+ font-weight: bold;
43
+ }
44
+
45
+ // Comment.Single
46
+ .c1 {
47
+ color: #998;
48
+ font-style: italic;
49
+ }
50
+
51
+ // Comment.Special
52
+ .cs {
53
+ color: #999;
54
+ font-weight: bold;
55
+ font-style: italic;
56
+ }
57
+
58
+ // Generic.Deleted
59
+ .gd {
60
+ color: #000;
61
+ background-color: #fdd;
62
+
63
+ // Generic.Deleted.Specific
64
+ .x {
65
+ color: #000;
66
+ background-color: #faa;
67
+ }
68
+ }
69
+
70
+ // Generic.Emph
71
+ .ge {
72
+ font-style: italic;
73
+ }
74
+
75
+ // Generic.Error
76
+ .gr {
77
+ color: #a00;
78
+ }
79
+
80
+ // Generic.Heading
81
+ .gh {
82
+ color: #999;
83
+ }
84
+
85
+ // Generic.Inserted
86
+ .gi {
87
+ color: #000;
88
+ background-color: #dfd;
89
+
90
+ // Generic.Inserted.Specific
91
+ .x {
92
+ color: #000;
93
+ background-color: #afa;
94
+ }
95
+ }
96
+
97
+ // Generic.Output
98
+ .go {
99
+ color: #888;
100
+ }
101
+
102
+ // Generic.Prompt
103
+ .gp {
104
+ color: #555;
105
+ }
106
+
107
+ // Generic.Strong
108
+ .gs {
109
+ font-weight: bold;
110
+ }
111
+
112
+ // Generic.Subheading
113
+ .gu {
114
+ color: #aaa;
115
+ }
116
+
117
+ // Generic.Traceback
118
+ .gt {
119
+ color: #a00;
120
+ }
121
+
122
+ // Keyword.Constant
123
+ .kc {
124
+ font-weight: bold;
125
+ }
126
+
127
+ // Keyword.Declaration
128
+ .kd {
129
+ font-weight: bold;
130
+ }
131
+
132
+ // Keyword.Pseudo
133
+ .kp {
134
+ font-weight: bold;
135
+ }
136
+
137
+ // Keyword.Reserved
138
+ .kr {
139
+ font-weight: bold;
140
+ }
141
+
142
+ // Keyword.Type
143
+ .kt {
144
+ color: #458;
145
+ font-weight: bold;
146
+ }
147
+
148
+ // Literal.Number
149
+ .m {
150
+ color: #099;
151
+ }
152
+
153
+ // Literal.String
154
+ .s {
155
+ color: #d14;
156
+ }
157
+
158
+ // Name.Attribute
159
+ .na {
160
+ color: #008080;
161
+ }
162
+
163
+ // Name.Builtin
164
+ .nb {
165
+ color: #0086B3;
166
+ }
167
+
168
+ // Name.Class
169
+ .nc {
170
+ color: #458;
171
+ font-weight: bold;
172
+ }
173
+
174
+ // Name.Constant
175
+ .no {
176
+ color: #008080;
177
+ }
178
+
179
+ // Name.Entity
180
+ .ni {
181
+ color: #800080;
182
+ }
183
+
184
+ // Name.Exception
185
+ .ne {
186
+ color: #900;
187
+ font-weight: bold;
188
+ }
189
+
190
+ // Name.Function
191
+ .nf {
192
+ color: #900;
193
+ font-weight: bold;
194
+ }
195
+
196
+ // Name.Namespace
197
+ .nn {
198
+ color: #555;
199
+ }
200
+
201
+ // Name.Tag
202
+ .nt {
203
+ color: #000080;
204
+ }
205
+
206
+ // Name.Variable
207
+ .nv {
208
+ color: #008080;
209
+ }
210
+
211
+ // Operator.Word
212
+ .ow {
213
+ font-weight: bold;
214
+ }
215
+
216
+ // Text.Whitespace
217
+ .w {
218
+ color: #bbb;
219
+ }
220
+
221
+ // Literal.Number.Float
222
+ .mf {
223
+ color: #099;
224
+ }
225
+
226
+ // Literal.Number.Hex
227
+ .mh {
228
+ color: #099;
229
+ }
230
+
231
+ // Literal.Number.Integer
232
+ .mi {
233
+ color: #099;
234
+ }
235
+
236
+ // Literal.Number.Oct
237
+ .mo {
238
+ color: #099;
239
+ }
240
+
241
+ // Literal.String.Backtick
242
+ .sb {
243
+ color: #d14;
244
+ }
245
+
246
+ // Literal.String.Char
247
+ .sc {
248
+ color: #d14;
249
+ }
250
+
251
+ // Literal.String.Doc
252
+ .sd {
253
+ color: #d14;
254
+ }
255
+
256
+ // Literal.String.Double
257
+ .s2 {
258
+ color: #d14;
259
+ }
260
+
261
+ // Literal.String.Escape
262
+ .se {
263
+ color: #d14;
264
+ }
265
+
266
+ // Literal.String.Heredoc
267
+ .sh {
268
+ color: #d14;
269
+ }
270
+
271
+ // Literal.String.Interpol
272
+ .si {
273
+ color: #d14;
274
+ }
275
+
276
+ // Literal.String.Other
277
+ .sx {
278
+ color: #d14;
279
+ }
280
+
281
+ // Literal.String.Regex
282
+ .sr {
283
+ color: #009926;
284
+ }
285
+
286
+ // Literal.String.Single
287
+ .s1 {
288
+ color: #d14;
289
+ }
290
+
291
+ // Literal.String.Symbol
292
+ .ss {
293
+ color: #990073;
294
+ }
295
+
296
+ // Name.Builtin.Pseudo
297
+ .bp {
298
+ color: #999;
299
+ }
300
+
301
+ // Name.Variable.Class
302
+ .vc {
303
+ color: #008080;
304
+ }
305
+
306
+ // Name.Variable.Global
307
+ .vg {
308
+ color: #008080;
309
+ }
310
+
311
+ // Name.Variable.Instance
312
+ .vi {
313
+ color: #008080;
314
+ }
315
+
316
+ // Literal.Number.Integer.Long
317
+ .il {
318
+ color: #099;
319
+ }
320
+ }