jekyll-nerd-portfolio 0.1.11 → 0.1.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5ff48268ebd5d551f61aa8aa37cd102329e64cb9
4
- data.tar.gz: 1500b78031b66c3866dd6db74a9848e7efab1f92
3
+ metadata.gz: fa8e132444e0b577d7c4c81d7bdf1a34ca008988
4
+ data.tar.gz: 7767a71ef95b7537e223813c3ba6aadd0fb46659
5
5
  SHA512:
6
- metadata.gz: 1bfacfb424078992eb7c8e8cd01d9f87108e85a5e2363c77cf2984094124b572447ed5c70fc4b64a8785d68a39454806af69852965887848fa8b6bee13b95c92
7
- data.tar.gz: f15ed9a93fab9fec2373e2f9e5134b5d9f560c845b317c7508ec6bfefd3d35c476c3af69bdc2159d67c978e4751582162c378cffe23a91195edc4b5be42e401a
6
+ metadata.gz: b86ad9c8732f7ee5a06b18c6ad08431a46519d5e3ad9f0ef0275f231213186e5b25779a0d6d22de2ed0d332988262d9d049d983a6d48c45f79c0c9f2be846007
7
+ data.tar.gz: 626a788b92c52a45b5605ad8815092972fd4f4e9be84d136cdf34db475b22ea9b6c6f0251508ebd02a8b6f1011b56872e6875da22a9bd7d49704aaf493bb7cbc
data/README.md CHANGED
@@ -1,37 +1,25 @@
1
1
  # jekyll-nerd-portfolio
2
2
 
3
- Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
4
-
5
- To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
-
7
- TODO: Delete this and the text above, and describe your gem
8
-
3
+ Jekyll portfolio theme for nerds
9
4
 
10
5
  ## Installation
11
6
 
12
- Add this line to your Jekyll site's `Gemfile`:
13
-
14
- ```ruby
15
- gem "jekyll-nerd-portfolio"
16
- ```
17
-
18
- And add this line to your Jekyll site's `_config.yml`:
7
+ 1. Add the following line to your `Gemfile`:
19
8
 
20
- ```yaml
21
- theme: jekyll-nerd-portfolio
22
- ```
9
+ ```ruby
10
+ gem "jekyll-nerd-portfolio"
11
+ ```
23
12
 
24
- And then execute:
13
+ 2. Add the following line to your `_config.yml`:
25
14
 
26
- $ bundle
15
+ ```yaml
16
+ theme: jekyll-nerd-portfolio
17
+ ```
27
18
 
28
- Or install it yourself as:
29
-
30
- $ gem install jekyll-nerd-portfolio
31
-
32
- ## Usage
33
-
34
- TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
19
+ 3. Run the following command
20
+ ```sh
21
+ bundle
22
+ ```
35
23
 
36
24
  ## Contributing
37
25
 
@@ -49,4 +37,3 @@ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-n
49
37
  ## License
50
38
 
51
39
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
52
-
data/assets/css/style.css CHANGED
@@ -5,6 +5,22 @@ body {
5
5
  line-height: 20px;
6
6
  }
7
7
 
8
+ .highlight pre {
9
+ background-color: #F1F1F1;;
10
+ padding: 10px 10px;
11
+ border-radius: 3px;
12
+ }
13
+
14
+ code {
15
+ font-family: Hermit, sans-serif;
16
+ }
17
+
18
+ p {
19
+ margin-bottom: 20px;
20
+ font-family: 'Roboto', sans-serif;
21
+ line-height: 22pt;
22
+ }
23
+
8
24
  .header {
9
25
  position: relative;
10
26
  height: 400px;
@@ -405,3 +421,69 @@ body {
405
421
  font-weight: 300;
406
422
  font-style: normal;
407
423
  }
424
+ @font-face {
425
+ font-family: 'Hermit';
426
+ src: url('../fonts/Hermit-light.otf') format('opentype');
427
+ font-weight: 300;
428
+ font-style: normal;
429
+ }
430
+ @font-face {
431
+ font-family: 'Roboto';
432
+ src: url('../fonts/Roboto-Regular.ttf') format('truetype');
433
+ font-weight: normal;
434
+ font-style: normal;
435
+ }
436
+ @font-face {
437
+ font-family: 'Roboto';
438
+ src: url('../fonts/Roboto-Italic.ttf') format('truetype');
439
+ font-weight: normal;
440
+ font-style: italic;
441
+ }
442
+ @font-face {
443
+ font-family: 'Roboto';
444
+ src: url('../fonts/Roboto-Bold.ttf') format('truetype');
445
+ font-weight: bold;
446
+ font-style: normal;
447
+ }
448
+ @font-face {
449
+ font-family: 'Roboto';
450
+ src: url('../fonts/Roboto-BoldItalic.ttf') format('truetype');
451
+ font-weight: bold;
452
+ font-style: italic;
453
+ }
454
+ @font-face {
455
+ font-family: 'Roboto';
456
+ src: url('../fonts/Roboto-Thin.ttf') format('truetype');
457
+ font-weight: 200;
458
+ font-style: normal;
459
+ }
460
+ @font-face {
461
+ font-family: 'Roboto';
462
+ src: url('../fonts/Roboto-ThinItalic.ttf') format('truetype');
463
+ font-weight: 200;
464
+ font-style: italic;
465
+ }
466
+ @font-face {
467
+ font-family: 'Roboto';
468
+ src: url('../fonts/Roboto-Light.ttf') format('truetype');
469
+ font-weight: 100;
470
+ font-style: normal;
471
+ }
472
+ @font-face {
473
+ font-family: 'Roboto';
474
+ src: url('../fonts/Roboto-LightItalic.ttf') format('truetype');
475
+ font-weight: 100;
476
+ font-style: italic;
477
+ }
478
+ @font-face {
479
+ font-family: 'Roboto';
480
+ src: url('../fonts/Roboto-Medium.ttf') format('truetype');
481
+ font-weight: 300;
482
+ font-style: normal;
483
+ }
484
+ @font-face {
485
+ font-family: 'Roboto';
486
+ src: url('../fonts/Roboto-MediumItalic.ttf') format('truetype');
487
+ font-weight: 300;
488
+ font-style: italic;
489
+ }
@@ -224,7 +224,6 @@ h6 {
224
224
  }
225
225
  p {
226
226
  margin-top: 0;
227
- margin-bottom: 20px;
228
227
  }
229
228
  blockquote {
230
229
  margin: 0 0 10px 0;
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-nerd-portfolio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.11
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jam Risser
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-01 00:00:00.000000000 Z
11
+ date: 2018-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -81,6 +81,18 @@ files:
81
81
  - assets/fonts/Hermit-bold.otf
82
82
  - assets/fonts/Hermit-light.otf
83
83
  - assets/fonts/Hermit-medium.otf
84
+ - assets/fonts/Roboto-Black.ttf
85
+ - assets/fonts/Roboto-BlackItalic.ttf
86
+ - assets/fonts/Roboto-Bold.ttf
87
+ - assets/fonts/Roboto-BoldItalic.ttf
88
+ - assets/fonts/Roboto-Italic.ttf
89
+ - assets/fonts/Roboto-Light.ttf
90
+ - assets/fonts/Roboto-LightItalic.ttf
91
+ - assets/fonts/Roboto-Medium.ttf
92
+ - assets/fonts/Roboto-MediumItalic.ttf
93
+ - assets/fonts/Roboto-Regular.ttf
94
+ - assets/fonts/Roboto-Thin.ttf
95
+ - assets/fonts/Roboto-ThinItalic.ttf
84
96
  - assets/fonts/devicon.eot
85
97
  - assets/fonts/devicon.svg
86
98
  - assets/fonts/devicon.ttf