github-docs 0.0.1 → 0.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d6188095aaa675382e73ebd8c56185a41dc32770a3327fc3c86cb1593da5d07
4
- data.tar.gz: 74aade5111ea19698953d006f5f5885ff07c492dda4f687deee5a3add4b5b982
3
+ metadata.gz: c33ca3ba609b53544daf2a31fd9129eb66fd2fdb4018be5cd0d64238095de12d
4
+ data.tar.gz: 59d97274f54378a0f29ed50c7228c6119eafdef9049a46fcf79c451d0d2fbf68
5
5
  SHA512:
6
- metadata.gz: 368b8a581cd05c5c29640915a47166d9d12ff4809a914abc8e9955c8b2c614631866e2f57dc846da620493d9830f00107d725a41ed18daa0b291088a0f5b60d0
7
- data.tar.gz: 0acc32f2d1bd70b4aeec808f0af5a4ea791a2aec10e84bbe946463cba7ffbf20f6863b04da8fc1f839c78fa1098875903fc03be630e07ffbf71cfb33193f4d05
6
+ metadata.gz: 532a59b9e2fefd05c3cbaf8edc71ab5c4569f22c0bf943a4a08b435179f164020698d1b7c44d1b100372fa236d0a72d1e741ae6dc9bfb6b5c0c674f9bb15638d
7
+ data.tar.gz: fa6617270771377ee91b436096f1f3f437464b3e04533136bc0e50f261cf11af4735a792704de836d547c5c68b20e0149cc5c20c583ffbe8576f2cd5d5417bff
@@ -1,3 +1,6 @@
1
+ <!--
2
+ Jekyll theme built by Ricky Boyce (https://github.com/boycce)
3
+ -->
1
4
  <!DOCTYPE html>
2
5
  <html lang="{{ site.lang | default: "en-US" }}">
3
6
  <head>
@@ -20,6 +20,7 @@ $menu-color: #483973;
20
20
  display: block;
21
21
  max-width: 890px;
22
22
  margin: 0 auto;
23
+ padding-top: 3em !important;
23
24
  }
24
25
  @media (max-width: 800px) {
25
26
  .content {
@@ -203,6 +204,17 @@ $menu-color: #483973;
203
204
  transform: translateX(0);
204
205
  }
205
206
 
207
+ /* submenu */
208
+
209
+ .navigation-list ul {
210
+ padding-left: 0;
211
+ display: block;
212
+ list-style: none;
213
+ }
214
+ .navigation-list ul .navigation-list-link {
215
+ padding-left: 50px;
216
+ }
217
+
206
218
  /* aux navigation */
207
219
 
208
220
  .navigation-list-aux {
data/readme.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  A Jekyll theme for Github styled documentation
4
4
 
5
- ### Github pages usage
5
+ ### Theme usage
6
6
 
7
- Just add this line to your _config.yml file:
7
+ Add a _config.yml file with this line:
8
8
  ```yaml
9
9
  theme: jekyll-theme-primer
10
10
  ```
@@ -32,3 +32,8 @@ $ gem install github-docs
32
32
  2. `$ bundle install` (install theme deps)
33
33
  3. `$ bundle exec` (build files)
34
34
  3. `$ jekyll serve`
35
+
36
+ ### Publishing Gem
37
+
38
+ 1. `$ gem build github-docs.gemspec`
39
+ 2. `$ gem push github-docs-*.gem`
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github-docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ricky Boyce