testtheme 0.1.1

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 (117) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +107 -0
  4. data/README.md~ +111 -0
  5. data/_includes/contribute-links.html +11 -0
  6. data/_includes/doc-side-nav.html +62 -0
  7. data/_includes/doc-top-nav.html +17 -0
  8. data/_includes/figure.html +22 -0
  9. data/_includes/footer.html +51 -0
  10. data/_includes/footer.html~ +52 -0
  11. data/_includes/home.html +4 -0
  12. data/_includes/nav.html +45 -0
  13. data/_includes/nav.html~ +45 -0
  14. data/_includes/search-box.html +14 -0
  15. data/_includes/search-box.html~ +14 -0
  16. data/_includes/section-index.html +42 -0
  17. data/_layouts/about.html +12 -0
  18. data/_layouts/base.html +82 -0
  19. data/_layouts/base.html~ +82 -0
  20. data/_layouts/blog.html +17 -0
  21. data/_layouts/bugs.html +12 -0
  22. data/_layouts/community.html +12 -0
  23. data/_layouts/compress.html +10 -0
  24. data/_layouts/default.html +12 -0
  25. data/_layouts/docs.html +62 -0
  26. data/_layouts/docs.html~ +22 -0
  27. data/_layouts/faq.html +10 -0
  28. data/_layouts/landing.html +8 -0
  29. data/_layouts/post.html +26 -0
  30. data/_layouts/search-results.html +35 -0
  31. data/_layouts/troubleshooting.html +12 -0
  32. data/_sass/base/_common.scss +89 -0
  33. data/_sass/base/_config.scss +59 -0
  34. data/_sass/base/_markdown.scss +114 -0
  35. data/_sass/base/_override.scss +82 -0
  36. data/_sass/base/_reset.scss +72 -0
  37. data/_sass/base/_text.scss +46 -0
  38. data/_sass/layouts/_about.scss +2 -0
  39. data/_sass/layouts/_blog.scss +142 -0
  40. data/_sass/layouts/_bugs.scss +2 -0
  41. data/_sass/layouts/_community.scss +14 -0
  42. data/_sass/layouts/_docs.scss +42 -0
  43. data/_sass/layouts/_faq.scss +25 -0
  44. data/_sass/layouts/_landing.scss +192 -0
  45. data/_sass/layouts/_post.scss +12 -0
  46. data/_sass/layouts/_search-results.scss +11 -0
  47. data/_sass/layouts/_troubleshooting.scss +2 -0
  48. data/_sass/layouts/_welcome.scss +2 -0
  49. data/_sass/main.scss +32 -0
  50. data/_sass/materialize/components/_buttons.scss +199 -0
  51. data/_sass/materialize/components/_color.scss +412 -0
  52. data/_sass/materialize/components/_global.scss +32 -0
  53. data/_sass/materialize/components/_mixins.scss +5 -0
  54. data/_sass/materialize/components/_roboto.scss +49 -0
  55. data/_sass/materialize/components/_variables.scss +309 -0
  56. data/_sass/materialize/components/_waves.scss +173 -0
  57. data/_sass/materialize/materialize.scss +15 -0
  58. data/_sass/modules/_buttons.scss +88 -0
  59. data/_sass/modules/_contribute-links.scss +64 -0
  60. data/_sass/modules/_doc-nav.scss +111 -0
  61. data/_sass/modules/_footer.scss +114 -0
  62. data/_sass/modules/_hero.scss +34 -0
  63. data/_sass/modules/_nav.scss +83 -0
  64. data/_sass/modules/_nav.scss~ +214 -0
  65. data/_sass/modules/_search-box.scss +47 -0
  66. data/_sass/modules/_section-index.scss +22 -0
  67. data/_sass/modules/_subscribe-form.scss +47 -0
  68. data/_sass/modules/_syntax-highlighting.scss +62 -0
  69. data/_sass/modules/_toc.scss +62 -0
  70. data/_sass/pages/_about.scss +374 -0
  71. data/_sass/pages/_blog.scss +149 -0
  72. data/_sass/pages/_community.scss +119 -0
  73. data/_sass/pages/_contribute.scss +5 -0
  74. data/_sass/pages/_docs.scss +72 -0
  75. data/_sass/pages/_faq.scss +37 -0
  76. data/_sass/pages/_glossary.scss +38 -0
  77. data/_sass/pages/_landing.scss +111 -0
  78. data/assets/css/styles.scss +71 -0
  79. data/assets/fonts/roboto/Roboto-Bold.eot +0 -0
  80. data/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
  81. data/assets/fonts/roboto/Roboto-Bold.woff +0 -0
  82. data/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
  83. data/assets/fonts/roboto/Roboto-Light.eot +0 -0
  84. data/assets/fonts/roboto/Roboto-Light.ttf +0 -0
  85. data/assets/fonts/roboto/Roboto-Light.woff +0 -0
  86. data/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
  87. data/assets/fonts/roboto/Roboto-Medium.eot +0 -0
  88. data/assets/fonts/roboto/Roboto-Medium.ttf +0 -0
  89. data/assets/fonts/roboto/Roboto-Medium.woff +0 -0
  90. data/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
  91. data/assets/fonts/roboto/Roboto-Regular.eot +0 -0
  92. data/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
  93. data/assets/fonts/roboto/Roboto-Regular.woff +0 -0
  94. data/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
  95. data/assets/fonts/roboto/Roboto-Thin.eot +0 -0
  96. data/assets/fonts/roboto/Roboto-Thin.ttf +0 -0
  97. data/assets/fonts/roboto/Roboto-Thin.woff +0 -0
  98. data/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
  99. data/assets/img/caret-dark.svg +7 -0
  100. data/assets/img/caret.svg +7 -0
  101. data/assets/img/external-link-dark.svg +13 -0
  102. data/assets/img/external-link-icon.png +0 -0
  103. data/assets/img/external-link.svg +13 -0
  104. data/assets/img/github-dark.svg +15 -0
  105. data/assets/img/github-ribbon.svg +128 -0
  106. data/assets/img/github.png +0 -0
  107. data/assets/img/github.svg +15 -0
  108. data/assets/img/group.png +0 -0
  109. data/assets/img/hero-bg.png +0 -0
  110. data/assets/img/icon_github.svg +15 -0
  111. data/assets/img/more-arrow-dark.svg +13 -0
  112. data/assets/img/more-arrow.png +0 -0
  113. data/assets/img/more-arrow.svg +13 -0
  114. data/assets/img/slack.png +0 -0
  115. data/assets/img/stackoverflow.png +0 -0
  116. data/assets/img/x.svg +8 -0
  117. metadata +201 -0
@@ -0,0 +1,374 @@
1
+ .about {
2
+
3
+ .about-sections {
4
+ padding: $spacing--xxxl 0;
5
+ position: relative;
6
+ }
7
+
8
+ .about-max {
9
+ margin-bottom: $spacing--s;
10
+
11
+ @media(min-width: $tablet) {
12
+ max-width: 70%;
13
+ }
14
+ }
15
+
16
+ p {
17
+ font-size: .9rem;
18
+ }
19
+
20
+ p.lead {
21
+ font-size: 17px;
22
+ margin-bottom: $spacing--xxl;
23
+ }
24
+
25
+ .about-lists {
26
+ list-style: disc inside;
27
+ padding-left: 1em;
28
+ text-indent: -1em;
29
+ }
30
+
31
+ .intro {
32
+ margin-bottom: $spacing--m;
33
+ }
34
+
35
+ .main-usage-title {
36
+ margin: $spacing--xs 0;
37
+ }
38
+
39
+ .core-features-title {
40
+ margin: $spacing--s 0 $spacing--xs;
41
+ }
42
+
43
+ .case-studies-title {
44
+ margin: $spacing--m 0;
45
+ }
46
+
47
+ .case-studies-quote {
48
+ color: #727272;
49
+ font-size: 14px;
50
+ font-style: italic;
51
+ font-weight: 200;
52
+ letter-spacing: .5px;
53
+ line-height: 1.5;
54
+
55
+ .apos {
56
+ color: $gray;
57
+ display:inline-block;
58
+ font-weight: 300;
59
+ height: 20px;
60
+ margin-right: 10px;
61
+ transform: scale(4,4);
62
+ }
63
+ }
64
+
65
+ .more-btn {
66
+ bottom: 10px;
67
+ left: 0;
68
+ margin: 0 auto;
69
+ position: absolute;
70
+ right: 0;
71
+ text-align: center;
72
+
73
+ @media(min-width: 992px) {
74
+ bottom: initial;
75
+ text-align: right;
76
+ }
77
+ }
78
+
79
+ .more-btn-text {
80
+ font-size: .9rem;
81
+
82
+ &:after {
83
+ background: url('../img/more-arrow.svg') no-repeat center/cover;
84
+ content: '';
85
+ display: inline-block;
86
+ height: 25px;
87
+ margin: 0 0 0 10px;
88
+ vertical-align: middle;
89
+ width: 25px;
90
+ }
91
+
92
+ &:hover {
93
+ &:after {
94
+ background: url('../img/more-arrow-dark.svg') no-repeat center/cover;
95
+ }
96
+ }
97
+ }
98
+
99
+ .case-studies-container {
100
+ display: flex;
101
+ flex-wrap: wrap;
102
+ margin-bottom: 35px;
103
+ margin-top: 35px;
104
+
105
+ a::after {
106
+ content: '';
107
+ display: table;
108
+ width: 100%;
109
+ height: 0;
110
+ }
111
+ }
112
+
113
+ .case-studies-link {
114
+ text-align: center;
115
+
116
+ &::after {
117
+ display: none;
118
+ }
119
+ }
120
+
121
+ .case-studies-img {
122
+ height: 65px;
123
+ }
124
+
125
+ .case-studies-img {
126
+ display: block;
127
+ margin: $spacing--s auto;
128
+ }
129
+
130
+ .pt-container {
131
+ margin-top: 65px;
132
+ margin-bottom: $spacing--xxl;
133
+
134
+ &::after {
135
+ content: '';
136
+ display: table;
137
+ width: 100%;
138
+ }
139
+ }
140
+
141
+ .pt:hover {
142
+ cursor: pointer;
143
+ }
144
+
145
+ .pt-content {
146
+ text-align: center;
147
+ width: 100%;
148
+ height: 100%;
149
+
150
+ @media (min-width: $tablet) {
151
+ margin: 5px 0 $spacing--s;
152
+ }
153
+ }
154
+
155
+ .pt-video {
156
+ background: url('../img/pt-video-placeholder.png') no-repeat center/cover;
157
+ height: auto;
158
+ max-width: 100%;
159
+ width: auto;
160
+
161
+ @media (min-width: $tablet) {
162
+ width: 100%;
163
+ }
164
+ }
165
+
166
+ .pt-desc {
167
+ font-size: .85em;
168
+ font-weight: 300;
169
+ margin-top: $spacing--xs;
170
+ text-align: center;
171
+
172
+ @media (min-width: 800px) {
173
+ margin: 0;
174
+ text-align: left;
175
+ }
176
+ }
177
+
178
+ .story {
179
+ padding: $spacing--xxxl 0 100px;
180
+ }
181
+
182
+ .more-story {
183
+ font-weight: 500;
184
+ margin: $spacing--m 0 0;
185
+
186
+ .underline {
187
+ text-decoration: underline;
188
+ }
189
+
190
+ }
191
+
192
+ .img-container {
193
+ position: relative;
194
+ }
195
+
196
+ .after-overlay{
197
+ position: absolute;
198
+ top: 0;
199
+ left: 0;
200
+ width: 100%;
201
+ height: 100%;
202
+ display: none;
203
+ }
204
+
205
+ .pt-content:hover {
206
+ .after-overlay {
207
+ display: block;
208
+ background: rgba(0,0,0,.2);
209
+ }
210
+ }
211
+
212
+ .pt-thumbnail {
213
+ max-width: 100%;
214
+ max-height: 100%;
215
+ }
216
+
217
+ .pt-lightbox {
218
+ opacity: 0;
219
+ pointer-events: none;
220
+ position: relative;
221
+
222
+ &.active {
223
+ position: fixed;
224
+ left: 0;
225
+ right: 0;
226
+ bottom: 0;
227
+ top: 0;
228
+ pointer-events: all;
229
+ z-index: 10000;
230
+ opacity: 1;
231
+ background: rgba(0,0,0,.7);
232
+ transition: 250ms linear;
233
+ -webkit-transition: 250ms linear;
234
+ -moz-transition: 250ms linear;
235
+ -ms-transition: 250ms linear;
236
+ -o-transition: 250ms linear;
237
+ }
238
+ }
239
+
240
+ .pt-player {
241
+ position: fixed;
242
+ top: 0;
243
+ right: 0;
244
+ bottom: 0;
245
+ left: 0;
246
+ width: 320px;
247
+ height: calc(320px*.5625);
248
+ margin: auto;
249
+
250
+ @media (min-width: $tablet) {
251
+ top: 0;
252
+ width: 75%;
253
+ height: calc(75%*.5625);
254
+ }
255
+ }
256
+
257
+ .pt-video-wrapper {
258
+ height: 0;
259
+ position: relative;
260
+ padding-bottom: 56.25%; /* 16:9 */
261
+ }
262
+
263
+ .pt-video-wrapper iframe {
264
+ position: absolute;
265
+ top: 0;
266
+ left: 0;
267
+ width: 100%;
268
+ height: 100%;
269
+ }
270
+
271
+ // Slick overrides
272
+ .slick-next,
273
+ .slick-prev {
274
+ top: 35%;
275
+ }
276
+
277
+ .slick-prev {
278
+ &.active {
279
+ display: block;
280
+ }
281
+ }
282
+
283
+ .slick-next {
284
+ &:before {
285
+ background: url('../img/more-arrow.png') no-repeat center/cover;
286
+ content: '';
287
+ display: inline-block;
288
+ height: 25px;
289
+ vertical-align: bottom;
290
+ width: 25px;
291
+ }
292
+ }
293
+
294
+ .slick-prev {
295
+ opacity: 0;
296
+ pointer-events: none;
297
+
298
+ &:before {
299
+ background: url('../img/more-arrow.png') no-repeat center/cover;
300
+ content: '';
301
+ display: inline-block;
302
+ height: 25px;
303
+ vertical-align: bottom;
304
+ width: 25px;
305
+ transform: rotate(180deg);
306
+ -webkit-transform: rotate(180deg);
307
+ -moz-transform: rotate(180deg);
308
+ -ms-transform: rotate(180deg);
309
+ -o-transform: rotate(180deg);
310
+ }
311
+
312
+ &.active {
313
+ opacity: 1;
314
+ pointer-events: all;
315
+ transition: 500ms linear;
316
+ -webkit-transition: 500ms linear;
317
+ -moz-transition: 500ms linear;
318
+ -ms-transition: 500ms linear;
319
+ -o-transition: 500ms linear;
320
+ }
321
+ }
322
+
323
+ .slick-dots {
324
+ & li.slick-active button:before {
325
+ color: $mainBrandColor;
326
+ opacity: 1;
327
+ }
328
+
329
+ & li button:before {
330
+ font-size: 12px;
331
+ }
332
+
333
+ & li {
334
+ margin: 0;
335
+ }
336
+ }
337
+ .platforms-table-row {
338
+ display: flex;
339
+ }
340
+
341
+ .platforms-table-header {
342
+ background: $light-gray;
343
+ color: $black;
344
+ }
345
+ .platforms-table-cell {
346
+ padding: 0 2px;
347
+ font-size: 11px;
348
+ font-weight: 300;
349
+ line-height: 40px;
350
+ border: 1px solid $light-gray;
351
+ color: $dark-gray;
352
+ @media (min-width: $phone-large) {
353
+ padding: 0px 10px;
354
+ font-size: 15px;
355
+ }
356
+ li {
357
+ line-height: inherit;
358
+ }
359
+ &.platforms-table-heading{
360
+ white-space: nowrap;
361
+ overflow: hidden;
362
+ text-overflow: ellipsis;
363
+ padding: 10px 2px;
364
+ font-size: 12px;
365
+ font-weight: 400;
366
+ line-height: 22px;
367
+ @media (min-width: $phone-large) {
368
+ font-size: 16px;
369
+ padding: 10px;
370
+ }
371
+ }
372
+ }
373
+
374
+ }
@@ -0,0 +1,149 @@
1
+ .blog {
2
+
3
+ hr {
4
+ margin-bottom: 0;
5
+ }
6
+
7
+ hr:last-of-type {
8
+ display: none;
9
+ }
10
+
11
+ .post-thumbnail {
12
+ background-repeat: no-repeat;
13
+ background-size: contain;
14
+ border-radius: 50%;
15
+ height: 60px;
16
+ width: 60px;
17
+ }
18
+
19
+ .post-title {
20
+ color: $black;
21
+ font-size: 17px;
22
+ font-weight: 500;
23
+ letter-spacing: 1px;
24
+ margin: $spacing--xxxl 0 8px;
25
+ }
26
+
27
+ .post-date {
28
+ color: $black;
29
+ font-size: 11px;
30
+ }
31
+
32
+ .post-thumbnail {
33
+ display: inline-block;
34
+ margin: $spacing--s $spacing--xs 0 0;
35
+ vertical-align: top;
36
+ }
37
+
38
+ .post-author-company {
39
+ display: inline-block
40
+ }
41
+
42
+ .post-author, .post-company {
43
+ color: $gray;
44
+ display: block;
45
+ font-size: 13px;
46
+ }
47
+
48
+ .post-author {
49
+ margin-top: $spacing--xl;
50
+ }
51
+
52
+ .post-company {
53
+ margin-top: $spacing--xs;
54
+
55
+ a:after {
56
+ display: none;
57
+ }
58
+ }
59
+
60
+
61
+ .post-excerpt {
62
+
63
+ h2 {
64
+ font-size: 15px;
65
+ margin-top: $spacing--m;
66
+ }
67
+
68
+ p {
69
+ font-size: 14px;
70
+ margin-top: $spacing--m;
71
+ }
72
+ }
73
+
74
+ .read-more {
75
+ font-size: 14px;
76
+ margin: $spacing--xl 0;
77
+
78
+ .read-more-text::after {
79
+ background: url('../img/more-arrow.svg') no-repeat center/contain;
80
+ content: '';
81
+ display: inline-block;
82
+ height: 24px;
83
+ margin: 0 0 0 10px;
84
+ vertical-align: middle;
85
+ width: 24px;
86
+ }
87
+
88
+ .read-more-text {
89
+ &:hover {
90
+ &:after {
91
+ background: url('../img/more-arrow-dark.svg') no-repeat center/contain;
92
+ }
93
+ }
94
+ }
95
+ }
96
+ .pagination {
97
+ padding-bottom: $spacing--xxl;
98
+ width: 100%;
99
+ }
100
+
101
+ @mixin caret($deg) {
102
+ background: url('../img/caret.svg') no-repeat center/contain;
103
+ content: '';
104
+ display: inline-block;
105
+ height: 24px;
106
+ margin: 0;
107
+ transform: rotate($deg);
108
+ vertical-align: bottom;
109
+ width: 24px;
110
+ }
111
+
112
+ .caret-left {
113
+ @include caret(90deg);
114
+ }
115
+
116
+ .caret-right {
117
+ @include caret(-90deg);
118
+ }
119
+
120
+ .next,
121
+ .previous {
122
+ display: inline-block;
123
+ line-height: 22px;
124
+ padding: 0;
125
+ }
126
+
127
+ .next a,
128
+ .previous a {
129
+ &:hover {
130
+ span {
131
+ background: url("../img/caret-dark.svg") no-repeat center/contain;
132
+ }
133
+ }
134
+ }
135
+ }
136
+
137
+ .post {
138
+
139
+ .post-wrapper {
140
+ padding-top: $spacing--xxxl;
141
+ }
142
+
143
+ .content-attribution {
144
+ color: $dark-gray;
145
+ font-size: 15px;
146
+ font-style: italic;
147
+ margin: $spacing--xxxl 0 $spacing--xl;
148
+ }
149
+ }