Compare commits

..

18 Commits

Author SHA1 Message Date
Patrick Marsceill
ced66a0056 Just the Docs build packaging cleanup 2018-10-23 17:08:27 -04:00
Patrick Marsceill
ce3fd856dd Just the Docs build packaging 2018-10-23 17:08:27 -04:00
Patrick Marsceill
4df5736ca4 Bump version number 2018-10-23 17:08:22 -04:00
Patrick Marsceill
aa9e2ab8e3 Merge pull request #6 from pmarsceill/paths-problems
Fix moar paths
2018-10-23 17:04:57 -04:00
Patrick Marsceill
b38f9863cd Update _buttons.scss 2018-10-23 17:03:43 -04:00
Patrick Marsceill
ca06df3776 Button bg was no good in Chrome 2018-10-23 17:01:21 -04:00
Patrick Marsceill
e9943f90c9 Don't need slash only axl 2018-10-23 16:54:14 -04:00
Patrick Marsceill
3d4e1de008 Breadcrumb needs baseurl 2018-10-23 16:53:01 -04:00
Patrick Marsceill
bdfdf1bb42 Don't need this slash 2018-10-23 16:48:48 -04:00
Patrick Marsceill
bf0d7eaa5f Fix moar paths 2018-10-23 16:45:08 -04:00
Patrick Marsceill
1b715049eb typo 2018-10-23 16:29:08 -04:00
Patrick Marsceill
049d1f50d7 Update README.md 2018-10-23 15:08:56 -04:00
Patrick Marsceill
3af81c7f36 Merge pull request #5 from pmarsceill/fix-title-px
Fix title px
2018-10-23 14:47:26 -04:00
Patrick Marsceill
97743c1c18 Fix link 2018-10-23 14:24:42 -04:00
Patrick Marsceill
7d4ce89e9b fix alignment 2018-10-23 14:13:45 -04:00
Patrick Marsceill
778e142411 Merge pull request #4 from pmarsceill/fix-title
fix title align
2018-10-23 13:54:49 -04:00
Patrick Marsceill
c45297c5cb fix title align 2018-10-23 13:54:01 -04:00
Patrick Marsceill
c1cacf277c Merge pull request #3 from pmarsceill/v0.1.2
Fix paths in docs
2018-10-23 13:21:57 -04:00
7 changed files with 14 additions and 9 deletions

View File

@@ -2,7 +2,8 @@
A nice looking, high customizable, responsive Jekyll theme for documention with built-in search. Easily hosted on GitHub pages. A nice looking, high customizable, responsive Jekyll theme for documention with built-in search. Easily hosted on GitHub pages.
![screenshot 2018-10-22 11 36 56](https://user-images.githubusercontent.com/896475/47302203-e4a8ca80-d5ee-11e8-916a-9bd30e95a40d.png) ![jtd](https://user-images.githubusercontent.com/896475/47384541-89053c80-d6d5-11e8-98dc-dba16e192de9.gif)
## Installation ## Installation

View File

@@ -5,7 +5,7 @@
<div class="page-wrap"> <div class="page-wrap">
<div class="side-bar"> <div class="side-bar">
<a href="{{ site.baseurl }}/" class="site-title fs-6 text-grey-dk-300 lh-tight">{{ site.title }}</a> <a href="{{ site.baseurl }}" class="site-title fs-6 text-grey-dk-300 lh-tight">{{ site.title }}</a>
<span class="fs-3"><button class="js-main-nav-trigger navigation-list-toggle btn btn-outline" type="button" data-text-toggle="Hide">Menu</button></span> <span class="fs-3"><button class="js-main-nav-trigger navigation-list-toggle btn btn-outline" type="button" data-text-toggle="Hide">Menu</button></span>
<div class="navigation main-nav js-main-nav"> <div class="navigation main-nav js-main-nav">
{% include nav.html %} {% include nav.html %}
@@ -38,7 +38,7 @@
{% if page.parent != nil and page.parent != page.title %} {% if page.parent != nil and page.parent != page.title %}
<nav class="breadcrumb-nav"> <nav class="breadcrumb-nav">
<ol class="breadcrumb-nav-list"> <ol class="breadcrumb-nav-list">
<li class="breadcrumb-nav-list-item"><a href="{{ site.url | absolute_url }}/{{ page.parent | slugify }}">{{ page.parent }}</a></li> <li class="breadcrumb-nav-list-item"><a href="{{ site.url }}{{ site.baseurl }}{{ page.parent | slugify }}">{{ page.parent }}</a></li>
<li class="breadcrumb-nav-list-item"><span>{{ page.title }}</span></li> <li class="breadcrumb-nav-list-item"><span>{{ page.title }}</span></li>
</ol> </ol>
</nav> </nav>

View File

@@ -11,9 +11,12 @@
@include mq(md) { @include mq(md) {
position: absolute; position: absolute;
top: $gutter-spacing; top: 0;
right: 0; right: 0;
height: 60px;
padding-top: $sp-4;
z-index: 101; z-index: 101;
box-shadow: inset 0 -1px 0 $border-color;
} }
} }

View File

@@ -2,12 +2,14 @@
@mixin btn-color($fg, $bg) { @mixin btn-color($fg, $bg) {
color: $fg; color: $fg;
background-color: darken($bg, 2%);
background-image: linear-gradient(lighten($bg, 5%), darken($bg, 2%)); background-image: linear-gradient(lighten($bg, 5%), darken($bg, 2%));
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.12); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.12);
&:hover, &:hover,
&.zeroclipboard-is-hover { &.zeroclipboard-is-hover {
color: $fg; color: $fg;
background-color: darken($bg, 4%);
background-image: linear-gradient((lighten($bg, 2%), darken($bg, 4%))); background-image: linear-gradient((lighten($bg, 2%), darken($bg, 4%)));
} }

View File

@@ -111,4 +111,4 @@ Text can be **bold**, _italic_, or ~~strikethrough~~.
There are a number of specific typographic CSS classes that allow you to do override default styling for font size, font-weight, line height, and capitalization. There are a number of specific typographic CSS classes that allow you to do override default styling for font size, font-weight, line height, and capitalization.
[View typography utilities]({{ site.base_url }}{% link docs/utilities/utilities.md %}#typography){: .btn .btn-outline } [View typography utilities]({{ site.baseurl }}{% link docs/utilities/utilities.md %}#typography){: .btn .btn-outline }

View File

@@ -16,7 +16,7 @@ Just the Docs gives your documentation a jumpstart with a responsive Jekyll them
--- ---
## Getting started ## Getting started
### Dependancies ### Dependencies
Just the Docs is built for [Jekyll](https://jekyllrb.com), a static site generator. View the [quick start guide](https://jekyllrb.com/docs/quickstart/) for more information. Just the Docs requires no special Jekyll plugins and can run on GitHub Pages standard Jekyll compiler. Just the Docs is built for [Jekyll](https://jekyllrb.com), a static site generator. View the [quick start guide](https://jekyllrb.com/docs/quickstart/) for more information. Just the Docs requires no special Jekyll plugins and can run on GitHub Pages standard Jekyll compiler.
### Installation ### Installation
@@ -59,9 +59,8 @@ Just the Docs is distributed by an [MIT license](https://github.com/pmarsceill/j
### Contributing ### Contributing
When contributing to this repository, please first discuss the change you wish to make via issue, When contributing to this repository, please first discuss the change you wish to make via issue,
email, or any other method with the owners of this repository before making a change. Read more about becoming a contributor in [our GitHub repo][954661c7]. email, or any other method with the owners of this repository before making a change. Read more about becoming a contributor in [our GitHub repo](https://github.com/pmarsceill/just-the-docs#contributing).
[954661c7]: https://github.com/pmarsceill/just-the-docs/tree/master/CONTRIBUTING.md "Contributing.md on Just the Docs GitHub repository"
### Code of Conduct ### Code of Conduct

View File

@@ -2,7 +2,7 @@
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = "just-the-docs" spec.name = "just-the-docs"
spec.version = "0.1.2" spec.version = "0.1.3"
spec.authors = ["Patrick Marsceill"] spec.authors = ["Patrick Marsceill"]
spec.email = ["patrick.marsceill@gmail.com"] spec.email = ["patrick.marsceill@gmail.com"]