doccoli-jekyll 1.1.9 → 1.2.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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +15 -0
  3. data/_sass/scss/_reusable.scss +85 -0
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 74b3ba34da0cecacaa3ecf430be5585f5866a8614b421d44e97c67076c39a4ae
4
- data.tar.gz: 80cb5f9bb38a4bc2e8533cbdac9954fce422ff9f87b5521e9f130b8cf3b0559b
3
+ metadata.gz: b9d574db788365fc5291957ebf24657231669f4d43b886c93fbcb80a55965d98
4
+ data.tar.gz: c5a4f1dd06798e79c41b57d6a26f57b815d7ecf7df19d428a1f3e4ea7ae411df
5
5
  SHA512:
6
- metadata.gz: a1b709133ad96ed3ef0eab04e85cdcbdf0060ccdc0631b9e06ac783673749263e8535f22723735ef319cd4c48c1dc7d4b9a9dc35a5e3f396e85f4769234f29a8
7
- data.tar.gz: 921cd1298e70747dd983b9bc6009b153589abb33073d106a227922f89a1add099fa366ffc8696c25d702a8ec450ff1d8362694ef3e2f7f3c7d3d3b48fc8a1e37
6
+ metadata.gz: 7ca7a81944d7a76c0ce0600d1cb68b92b3439f92f462d1ca70eca51af85e2ce36eff958affca200cd4a0e2cffd7f5c9a7b376d52487d50780c559eca705fd5c6
7
+ data.tar.gz: 638cb998a234cc25d58432d024ae4f69d9476cde132e0e3ca76dc6e73ae8f22db3a79c44c9f97e70f67f83f3734d4118a241cce2b110928802f389232676aac6
data/README.md CHANGED
@@ -95,6 +95,21 @@ To enable Google Anaytics, add the following lines to your Jekyll site:
95
95
 
96
96
  Google Analytics will only appear in production, i.e., `JEKYLL_ENV=production`
97
97
 
98
+ ### Internal pages
99
+
100
+ To add internal pages inside your documentation that don't appear on the sidebar directly create a `_pages` directory as sibling to _posts. Then add the following to your `_config.yml`
101
+
102
+ ```yaml
103
+ include: ['_pages']
104
+
105
+ collections:
106
+ pages:
107
+ output: true
108
+ permalink: /:path
109
+ ```
110
+
111
+ Any `.markdown` file inside `_pages` directory will be available as HTML over the desired `permalink`. Yay!
112
+
98
113
  ## Contributing
99
114
 
100
115
  Bug reports and pull requests are welcome on GitHub at . This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
@@ -379,6 +379,91 @@ ul.horizontal-list li {
379
379
  pointer-events: auto;
380
380
  }
381
381
 
382
+
383
+ /*** Table Styles **/
384
+
385
+ table {
386
+ background: white;
387
+ border-radius: 3px;
388
+ border-collapse: collapse;
389
+ height: 32vw;
390
+ margin: 2vw auto;
391
+ max-width: 100%;
392
+ padding: 0.5vw;
393
+ width: 100%;
394
+ box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
395
+ }
396
+
397
+ th {
398
+ color: #D5DDE5;
399
+ background: #1b1e24;
400
+ border-bottom: 4px solid #9ea7af;
401
+ border-right: 1px solid #343a45;
402
+ font-weight: 100;
403
+ padding: 2.4vw;
404
+ text-align: left;
405
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
406
+ vertical-align: middle;
407
+ &:first-child {
408
+ border-top-left-radius: 3px;
409
+ }
410
+ &:last-child {
411
+ border-top-right-radius: 3px;
412
+ border-right: none;
413
+ }
414
+ }
415
+
416
+ tr {
417
+ border-top: 1px solid #C1C3D1;
418
+ border-bottom-: 1px solid #C1C3D1;
419
+ color: #666B85;
420
+ font-weight: normal;
421
+ text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
422
+ &:first-child {
423
+ border-top: none;
424
+ }
425
+ &:last-child {
426
+ border-bottom: none;
427
+ }
428
+ &:nth-child(odd) td {
429
+ background: #EBEBEB;
430
+ }
431
+ &:last-child td {
432
+ &:first-child {
433
+ border-bottom-left-radius: 3px;
434
+ }
435
+ &:last-child {
436
+ border-bottom-right-radius: 3px;
437
+ }
438
+ }
439
+ }
440
+
441
+ td {
442
+ background: #FFFFFF;
443
+ padding: 1.5vw;
444
+ text-align: left;
445
+ vertical-align: middle;
446
+ font-weight: 300;
447
+ text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
448
+ border-right: 1px solid #C1C3D1;
449
+ &:last-child {
450
+ border-right: 0px;
451
+ }
452
+ }
453
+
454
+ th, td {
455
+ &.text-left {
456
+ text-align: left;
457
+ }
458
+ &.text-center {
459
+ text-align: center;
460
+ }
461
+ &.text-right {
462
+ text-align: right;
463
+ }
464
+ }
465
+
466
+
382
467
  .ir {
383
468
  background-color: transparent;
384
469
  border: 0;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: doccoli-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.9
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marvin Danig