poole-for-jekyll 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: aa777383010be98ebd575c357c04052785ca76b8ed34f1eb474e71f06a3cb651
4
+ data.tar.gz: cccbbb42dcb35725e8202feb927b5ae7f626ff911fb3c5dee4643c618f25abfd
5
+ SHA512:
6
+ metadata.gz: fe9f18191fc986abc1821aaafbac5e43dc742edc1c79d90c5bbbd2df7ca798edd7a9d6f79cff6676f99d2f45b7f3d0feb24a6a3f9617822586ae7cec8135d619
7
+ data.tar.gz: 424d849bf8ed6f2b81d265e009a37e9ff5ded6dc935b32769b5786c8f4ebcff6f2a81cd2c467b8a3e21d09416f0fe73ce307ce81d1bfbc774ed4470182a18601
data/LICENSE.md ADDED
@@ -0,0 +1,9 @@
1
+ # Released under MIT License
2
+
3
+ Copyright (c) 2013 Mark Otto.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,129 @@
1
+ # Poole
2
+
3
+ *The Strange Case of Dr. Jekyll and Mr. Hyde* tells the story of a lawyer investigating the connection of two persons, Dr. Henry Jekyll and Mr. Edward Hyde. Chief among the novel's supporting cast is a man by the name of Mr. Poole, Dr. Jekyll's loyal butler.
4
+
5
+ -----
6
+
7
+ Poole is the butler for [Jekyll](http://jekyllrb.com), the static site generator. It's designed and developed by [@mdo](https://twitter.com/mdo) to provide a clear and concise foundational setup for any Jekyll site. It does so by furnishing a full vanilla Jekyll install with example templates, pages, posts, and styles.
8
+
9
+ ![Poole](https://f.cloud.github.com/assets/98681/1834359/71ae4048-73db-11e3-9a3c-df38eb170537.png)
10
+
11
+ See Poole in action with [the demo site](http://demo.getpoole.com).
12
+
13
+ There are currently two official themes built on Poole:
14
+
15
+ * [Hyde](http://hyde.getpoole.com)
16
+ * [Lanyon](http://lanyon.getpoole.com)
17
+
18
+ Individual theme feedback and bug reports should be submitted to the theme's individual repository.
19
+
20
+
21
+ ## Contents
22
+
23
+ - [Usage](#usage)
24
+ - [Options](#options)
25
+ - [Rems, `font-size`, and scaling](#rems-font-size-and-scaling)
26
+ - [Development](#development)
27
+ - [Author](#author)
28
+ - [License](#license)
29
+
30
+
31
+ ## Usage
32
+
33
+ ### 1. Install dependencies
34
+
35
+ Poole is built on Jekyll and uses its built-in SCSS compiler to generate our CSS. Before getting started, you'll need to install the Jekyll gem:
36
+
37
+ ```bash
38
+ $ gem install jekyll
39
+ ```
40
+
41
+ **Windows users:** Windows users have a bit more work to do, but luckily [@juthilo](https://github.com/juthilo) has your back with his [Run Jekyll on Windows](https://github.com/juthilo/run-jekyll-on-windows) guide.
42
+
43
+ **Need syntax highlighting?** Poole includes support for Pygments or Rouge, so install your gem of choice to make use of the built-in styling. Read more about this [in the Jekyll docs](http://jekyllrb.com/docs/templates/#code_snippet_highlighting).
44
+
45
+ ### 2a. Quick start
46
+
47
+ To help anyone with any level of familiarity with Jekyll quickly get started, Poole includes everything you need for a basic Jekyll site. To that end, just download Poole and start up Jekyll.
48
+
49
+ ### 2b. Roll your own Jekyll site
50
+
51
+ Folks wishing to use Jekyll's templates and styles can do so with a little bit of manual labor. Download Poole and then copy what you need (likely `_layouts/`, `*.html` files, `atom.xml` for RSS, and `assets/` for CSS, JS, etc.).
52
+
53
+ ### 3. Running locally
54
+
55
+ To see your Jekyll site with Poole applied, start a Jekyll server. In Terminal, from `/poole` (or whatever your Jekyll site's root directory is named):
56
+
57
+ ```bash
58
+ $ jekyll serve
59
+ ```
60
+
61
+ Open <http://localhost:4000> in your browser, and voilà.
62
+
63
+ ### 4. Serving it up
64
+
65
+ If you host your code on GitHub, you can use [GitHub Pages](https://pages.github.com) to host your project.
66
+
67
+ 1. Fork this repo and switch to the `gh-pages` branch.
68
+ 1. If you're [using a custom domain name](https://help.github.com/articles/setting-up-a-custom-domain-with-github-pages), modify the `CNAME` file to point to your new domain.
69
+ 2. If you're not using a custom domain name, **modify the `baseurl` in `_config.yml`** to point to your GitHub Pages URL. Example: for a repo at `github.com/username/poole`, use `http://username.github.io/poole/`. **Be sure to include the trailing slash.**
70
+ 3. Done! Head to your GitHub Pages URL or custom domain.
71
+
72
+ No matter your production or hosting setup, be sure to verify the `baseurl` option file and `CNAME` settings. Not applying this correctly can mean broken styles on your site.
73
+
74
+ ## Options
75
+
76
+ Poole includes some customizable options, typically applied via classes on the `<body>` element.
77
+
78
+ ### Google Analytics
79
+
80
+ Specify `ga_analytics` in your `_config.yml` and restart the server to add Google Analytics tracking code.
81
+
82
+ ```ruby
83
+ # Google Analytics example
84
+ ga_analytics: UA-000000-0
85
+ ```
86
+
87
+ ### Rems, `font-size`, and scaling
88
+
89
+ Poole is built almost entirely with `rem`s (instead of pixels). `rem`s are like `em`s, but instead of building on the immediate parent's `font-size`, they build on the root element, `<html>`.
90
+
91
+ By default, we use the following:
92
+
93
+ ```css
94
+ html {
95
+ font-size: 16px;
96
+ line-height: 1.5;
97
+ }
98
+ @media (min-width: 38em) {
99
+ html {
100
+ font-size: 20px;
101
+ }
102
+ }
103
+
104
+ ```
105
+
106
+ To easily scale your site's typography and components, simply customize the base `font-size`s here.
107
+
108
+
109
+ ## Development
110
+
111
+ Poole has two branches, but only one is used for active development.
112
+
113
+ - `master` for development. **All pull requests should be to submitted against `master`.**
114
+ - `gh-pages` for our hosted site, which includes our analytics tracking code. **Please avoid using this branch.**
115
+
116
+ CSS is handled via Jeykll's built-in Sass compiler. Source Sass files are located in `_sass/`, included into `styles.scss`, and compile to `styles.css`.
117
+
118
+ ## Author
119
+
120
+ **Mark Otto**
121
+ - <https://github.com/mdo>
122
+ - <https://twitter.com/mdo>
123
+
124
+
125
+ ## License
126
+
127
+ Open sourced under the [MIT license](LICENSE.md).
128
+
129
+ <3
@@ -0,0 +1,19 @@
1
+ <head>
2
+ <meta charset="UTF-8">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
4
+
5
+ <title>
6
+ {% if page.title == "Home" %}
7
+ {{ site.title }}{% if site.tagline %} &middot; {{ site.tagline }}{% endif %}
8
+ {% else %}
9
+ {{ page.title }} &middot; {{ site.title }}
10
+ {% endif %}
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="{{ site.baseurl }}/styles.css">
14
+ <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}/assets/apple-touch-icon-precomposed.png">
15
+ <link rel="shortcut icon" href="{{ site.baseurl }}/assets/favicon.ico">
16
+ <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.baseurl }}/atom.xml">
17
+
18
+ {% seo title=false %}
19
+ </head>
@@ -0,0 +1,38 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+
4
+ {% include head.html %}
5
+
6
+ <body>
7
+
8
+ <div class="container content">
9
+ <header class="masthead">
10
+ <h3 class="masthead-title">
11
+ <a href="{{ site.baseurl }}/" title="Home">{{ site.title }}</a>
12
+ <small>{{ site.tagline }}</small>
13
+ </h3>
14
+ </header>
15
+
16
+ <main>
17
+ {{ content }}
18
+ </main>
19
+
20
+ <footer class="footer">
21
+ <small>
22
+ &copy; <time datetime="{{ site.time | date_to_xmlschema }}">{{ site.time | date: '%Y' }}</time>. All rights reserved.
23
+ </small>
24
+ </footer>
25
+ </div>
26
+
27
+ {% if site.ga_analytics %}
28
+ <script>
29
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
30
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
31
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
32
+ })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
33
+ ga('create', '{{ site.ga_analytics }}', 'auto');
34
+ ga('send', 'pageview');
35
+ </script>
36
+ {% endif %}
37
+ </body>
38
+ </html>
@@ -0,0 +1,8 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article class="page">
6
+ <h1 class="page-title">{{ page.title }}</h1>
7
+ {{ content }}
8
+ </article>
@@ -0,0 +1,25 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article class="post">
6
+ <h1 class="post-title">{{ page.title }}</h1>
7
+ <time datetime="{{ page.date | date_to_xmlschema }}" class="post-date">{{ page.date | date_to_string }}</time>
8
+ {{ content }}
9
+ </article>
10
+
11
+ {% if site.related_posts != empty %}
12
+ <aside class="related">
13
+ <h3>Related posts</h3>
14
+ <ul class="related-posts">
15
+ {% for post in site.related_posts limit:3 %}
16
+ <li>
17
+ <a href="{{ site.baseurl }}{{ post.url }}">
18
+ {{ post.title }}
19
+ <small><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time></small>
20
+ </a>
21
+ </li>
22
+ {% endfor %}
23
+ </ul>
24
+ </aside>
25
+ {% endif %}
data/_sass/_base.scss ADDED
@@ -0,0 +1,78 @@
1
+ // Body resets
2
+ //
3
+ // Update the foundational and global aspects of the page.
4
+
5
+ * {
6
+ -webkit-box-sizing: border-box;
7
+ -moz-box-sizing: border-box;
8
+ box-sizing: border-box;
9
+ }
10
+
11
+ html,
12
+ body {
13
+ margin: 0;
14
+ padding: 0;
15
+ }
16
+
17
+ html {
18
+ font-family: $root-font-family;
19
+ font-size: $root-font-size;
20
+ line-height: $root-line-height;
21
+
22
+ @media (min-width: $large-breakpoint) {
23
+ font-size: $large-font-size;
24
+ }
25
+ }
26
+
27
+ body {
28
+ color: $body-color;
29
+ background-color: $body-bg;
30
+ -webkit-text-size-adjust: 100%;
31
+ -ms-text-size-adjust: 100%;
32
+ }
33
+
34
+ // No `:visited` state is required by default (browsers will use `a`)
35
+ a {
36
+ color: $link-color;
37
+ text-decoration: none;
38
+
39
+ // `:focus` is linked to `:hover` for basic accessibility
40
+ &:hover,
41
+ &:focus {
42
+ text-decoration: underline;
43
+ }
44
+
45
+ strong {
46
+ color: inherit;
47
+ }
48
+ }
49
+
50
+ img {
51
+ display: block;
52
+ max-width: 100%;
53
+ margin: 0 0 1rem;
54
+ border-radius: 5px;
55
+ }
56
+
57
+ table {
58
+ margin-bottom: 1rem;
59
+ width: 100%;
60
+ font-size: 85%;
61
+ border: 1px solid #e5e5e5;
62
+ border-collapse: collapse;
63
+ }
64
+
65
+ td,
66
+ th {
67
+ padding: .25rem .5rem;
68
+ border: 1px solid #e5e5e5;
69
+ }
70
+
71
+ th {
72
+ text-align: left;
73
+ }
74
+
75
+ tbody tr:nth-child(odd) td,
76
+ tbody tr:nth-child(odd) th {
77
+ background-color: #f9f9f9;
78
+ }
data/_sass/_code.scss ADDED
@@ -0,0 +1,61 @@
1
+ // Code
2
+ //
3
+ // Inline and block-level code snippets. Includes tweaks to syntax highlighted
4
+ // snippets from Pygments/Rouge and Gist embeds.
5
+
6
+ code,
7
+ pre {
8
+ font-family: $code-font-family;
9
+ }
10
+
11
+ code {
12
+ font-size: 85%;
13
+ }
14
+
15
+ pre {
16
+ display: block;
17
+ margin-top: 0;
18
+ margin-bottom: 1rem;
19
+ overflow: auto;
20
+ }
21
+
22
+ .highlight {
23
+ padding: 1rem;
24
+ margin-bottom: 1rem;
25
+ background-color: #f9f9f9;
26
+ border-radius: .25rem;
27
+
28
+ pre {
29
+ margin-bottom: 0;
30
+ }
31
+
32
+ // Triple backticks (code fencing) doubles the .highlight elements
33
+ .highlight {
34
+ padding: 0;
35
+ }
36
+ }
37
+
38
+ .rouge-table {
39
+ margin-bottom: 0;
40
+ font-size: 100%;
41
+
42
+ &,
43
+ td,
44
+ th {
45
+ border: 0;
46
+ }
47
+
48
+ .gutter {
49
+ color: rgba(0,0,0,.25);
50
+ vertical-align: top;
51
+ // Make sure numbers aren't selectable
52
+ -webkit-user-select: none;
53
+ -ms-user-select: none;
54
+ user-select: none;
55
+ }
56
+ }
57
+
58
+ // Gist via GitHub Pages
59
+ .gist .markdown-body {
60
+ padding: 15px !important;
61
+ }
@@ -0,0 +1,15 @@
1
+ // Layout
2
+ //
3
+ // Styles for managing the structural hierarchy of the site.
4
+
5
+ .container {
6
+ max-width: 38rem;
7
+ padding-left: 1.5rem;
8
+ padding-right: 1.5rem;
9
+ margin-left: auto;
10
+ margin-right: auto;
11
+ }
12
+
13
+ footer {
14
+ margin-bottom: 2rem;
15
+ }
@@ -0,0 +1,25 @@
1
+ // Masthead
2
+ //
3
+ // Super small header above the content for site name and short description.
4
+
5
+ .masthead {
6
+ padding-top: 1rem;
7
+ padding-bottom: 1rem;
8
+ margin-bottom: 3rem;
9
+ }
10
+
11
+ .masthead-title {
12
+ margin-top: 0;
13
+ margin-bottom: 0;
14
+ color: $gray-4;
15
+
16
+ a {
17
+ color: inherit;
18
+ }
19
+
20
+ small {
21
+ font-size: 75%;
22
+ font-weight: 400;
23
+ opacity: .5;
24
+ }
25
+ }
@@ -0,0 +1,11 @@
1
+ // Messages
2
+ //
3
+ // Show alert messages to users. You may add it to single elements like a `<p>`,
4
+ // or to a parent if there are multiple elements to show.
5
+
6
+ .message {
7
+ margin-bottom: 1rem;
8
+ padding: 1rem;
9
+ color: #717171;
10
+ background-color: #f9f9f9;
11
+ }
@@ -0,0 +1,51 @@
1
+ // Pagination
2
+ //
3
+ // Super lightweight (HTML-wise) blog pagination. `span`s are provide for when
4
+ // there are no more previous or next posts to show.
5
+
6
+ .pagination {
7
+ overflow: hidden; // clearfix
8
+ margin: 0 -1.5rem 1rem;
9
+ color: #ccc;
10
+ text-align: center;
11
+ }
12
+
13
+ // Pagination items can be `span`s or `a`s
14
+ .pagination-item {
15
+ display: block;
16
+ padding: 1rem;
17
+ border: solid #eee;
18
+ border-width: 1px 0;
19
+
20
+ &:first-child {
21
+ margin-bottom: -1px;
22
+ }
23
+ }
24
+
25
+ // Only provide a hover state for linked pagination items
26
+ a.pagination-item:hover {
27
+ background-color: #f5f5f5;
28
+ }
29
+
30
+ @media (min-width: 30em) {
31
+ .pagination {
32
+ margin: 3rem 0;
33
+ }
34
+
35
+ .pagination-item {
36
+ float: left;
37
+ width: 50%;
38
+ border-width: 1px;
39
+
40
+ &:first-child {
41
+ margin-bottom: 0;
42
+ border-top-left-radius: 4px;
43
+ border-bottom-left-radius: 4px;
44
+ }
45
+ &:last-child {
46
+ margin-left: -1px;
47
+ border-top-right-radius: 4px;
48
+ border-bottom-right-radius: 4px;
49
+ }
50
+ }
51
+ }
data/_sass/_posts.scss ADDED
@@ -0,0 +1,67 @@
1
+ // Posts and pages
2
+ //
3
+ // Each post is wrapped in `.post` and is used on default and post layouts. Each
4
+ // page is wrapped in `.page` and is only used on the page layout.
5
+
6
+ .page,
7
+ .post {
8
+ margin-bottom: 4em;
9
+
10
+ li + li {
11
+ margin-top: .25rem;
12
+ }
13
+ }
14
+
15
+ // Blog post or page title
16
+ .page-title,
17
+ .post-title,
18
+ .post-title a {
19
+ color: #303030;
20
+ }
21
+ .page-title,
22
+ .post-title {
23
+ margin-top: 0;
24
+ }
25
+
26
+ // Meta data line below post title
27
+ .post-date {
28
+ display: block;
29
+ margin-top: -.5rem;
30
+ margin-bottom: 1rem;
31
+ color: #9a9a9a;
32
+ }
33
+
34
+
35
+ // Related posts
36
+ .related {
37
+ padding-top: 2rem;
38
+ padding-bottom: 2rem;
39
+ margin-bottom: 2rem;
40
+ border-top: 1px solid #eee;
41
+ border-bottom: 1px solid #eee;
42
+ }
43
+
44
+ .related-posts {
45
+ padding-left: 0;
46
+ list-style: none;
47
+
48
+ h3 {
49
+ margin-top: 0;
50
+ }
51
+
52
+ li {
53
+ small {
54
+ font-size: 75%;
55
+ color: #999;
56
+ }
57
+
58
+ a:hover {
59
+ color: #268bd2;
60
+ text-decoration: none;
61
+
62
+ small {
63
+ color: inherit;
64
+ }
65
+ }
66
+ }
67
+ }
@@ -0,0 +1,65 @@
1
+ .highlight .hll { background-color: #ffc; }
2
+ .highlight .c { color: #999; } /* Comment */
3
+ .highlight .err { color: #a00; background-color: #faa } /* Error */
4
+ .highlight .k { color: #069; } /* Keyword */
5
+ .highlight .o { color: #555 } /* Operator */
6
+ .highlight .cm { color: #09f; font-style: italic } /* Comment.Multiline */
7
+ .highlight .cp { color: #099 } /* Comment.Preproc */
8
+ .highlight .c1 { color: #999; } /* Comment.Single */
9
+ .highlight .cs { color: #999; } /* Comment.Special */
10
+ .highlight .gd { background-color: #fcc; border: 1px solid #c00 } /* Generic.Deleted */
11
+ .highlight .ge { font-style: italic } /* Generic.Emph */
12
+ .highlight .gr { color: #f00 } /* Generic.Error */
13
+ .highlight .gh { color: #030; } /* Generic.Heading */
14
+ .highlight .gi { background-color: #cfc; border: 1px solid #0c0 } /* Generic.Inserted */
15
+ .highlight .go { color: #aaa } /* Generic.Output */
16
+ .highlight .gp { color: #009; } /* Generic.Prompt */
17
+ .highlight .gs { } /* Generic.Strong */
18
+ .highlight .gu { color: #030; } /* Generic.Subheading */
19
+ .highlight .gt { color: #9c6 } /* Generic.Traceback */
20
+ .highlight .kc { color: #069; } /* Keyword.Constant */
21
+ .highlight .kd { color: #069; } /* Keyword.Declaration */
22
+ .highlight .kn { color: #069; } /* Keyword.Namespace */
23
+ .highlight .kp { color: #069 } /* Keyword.Pseudo */
24
+ .highlight .kr { color: #069; } /* Keyword.Reserved */
25
+ .highlight .kt { color: #078; } /* Keyword.Type */
26
+ .highlight .m { color: #f60 } /* Literal.Number */
27
+ .highlight .s { color: #d44950 } /* Literal.String */
28
+ .highlight .na { color: #4f9fcf } /* Name.Attribute */
29
+ .highlight .nb { color: #366 } /* Name.Builtin */
30
+ .highlight .nc { color: #0a8; } /* Name.Class */
31
+ .highlight .no { color: #360 } /* Name.Constant */
32
+ .highlight .nd { color: #99f } /* Name.Decorator */
33
+ .highlight .ni { color: #999; } /* Name.Entity */
34
+ .highlight .ne { color: #c00; } /* Name.Exception */
35
+ .highlight .nf { color: #c0f } /* Name.Function */
36
+ .highlight .nl { color: #99f } /* Name.Label */
37
+ .highlight .nn { color: #0cf; } /* Name.Namespace */
38
+ .highlight .nt { color: #2f6f9f; } /* Name.Tag */
39
+ .highlight .nv { color: #033 } /* Name.Variable */
40
+ .highlight .ow { color: #000; } /* Operator.Word */
41
+ .highlight .w { color: #bbb } /* Text.Whitespace */
42
+ .highlight .mf { color: #f60 } /* Literal.Number.Float */
43
+ .highlight .mh { color: #f60 } /* Literal.Number.Hex */
44
+ .highlight .mi { color: #f60 } /* Literal.Number.Integer */
45
+ .highlight .mo { color: #f60 } /* Literal.Number.Oct */
46
+ .highlight .sb { color: #c30 } /* Literal.String.Backtick */
47
+ .highlight .sc { color: #c30 } /* Literal.String.Char */
48
+ .highlight .sd { color: #c30; font-style: italic } /* Literal.String.Doc */
49
+ .highlight .s2 { color: #c30 } /* Literal.String.Double */
50
+ .highlight .se { color: #c30; } /* Literal.String.Escape */
51
+ .highlight .sh { color: #c30 } /* Literal.String.Heredoc */
52
+ .highlight .si { color: #a00 } /* Literal.String.Interpol */
53
+ .highlight .sx { color: #c30 } /* Literal.String.Other */
54
+ .highlight .sr { color: #3aa } /* Literal.String.Regex */
55
+ .highlight .s1 { color: #c30 } /* Literal.String.Single */
56
+ .highlight .ss { color: #fc3 } /* Literal.String.Symbol */
57
+ .highlight .bp { color: #366 } /* Name.Builtin.Pseudo */
58
+ .highlight .vc { color: #033 } /* Name.Variable.Class */
59
+ .highlight .vg { color: #033 } /* Name.Variable.Global */
60
+ .highlight .vi { color: #033 } /* Name.Variable.Instance */
61
+ .highlight .il { color: #f60 } /* Literal.Number.Integer.Long */
62
+
63
+ .css .o,
64
+ .css .o + .nt,
65
+ .css .nt + .nt { color: #999; }
data/_sass/_type.scss ADDED
@@ -0,0 +1,117 @@
1
+ // Typography
2
+ //
3
+ // Headings, body text, lists, and other misc typographic elements.
4
+
5
+ h1, h2, h3, h4, h5, h6 {
6
+ margin-bottom: .5rem;
7
+ font-weight: 600;
8
+ line-height: 1.25;
9
+ color: #313131;
10
+ text-rendering: optimizeLegibility;
11
+ }
12
+
13
+ h1 {
14
+ font-size: 2rem;
15
+ }
16
+
17
+ h2 {
18
+ margin-top: 1rem;
19
+ font-size: 1.5rem;
20
+ }
21
+
22
+ h3 {
23
+ margin-top: 1.5rem;
24
+ font-size: 1.25rem;
25
+ }
26
+
27
+ h4, h5, h6 {
28
+ margin-top: 1rem;
29
+ font-size: 1rem;
30
+ }
31
+
32
+ p {
33
+ margin-top: 0;
34
+ margin-bottom: 1rem;
35
+ }
36
+
37
+ ul, ol, dl {
38
+ margin-top: 0;
39
+ margin-bottom: 1rem;
40
+ }
41
+
42
+ dt {
43
+ font-weight: bold;
44
+ }
45
+
46
+ dd {
47
+ margin-bottom: .5rem;
48
+ }
49
+
50
+ hr {
51
+ position: relative;
52
+ margin: 1.5rem 0;
53
+ border: 0;
54
+ border-top: 1px solid #eee;
55
+ border-bottom: 1px solid #fff;
56
+ }
57
+
58
+ abbr {
59
+ font-size: 85%;
60
+ font-weight: bold;
61
+ color: #555;
62
+ text-transform: uppercase;
63
+
64
+ &[title] {
65
+ cursor: help;
66
+ border-bottom: 1px dotted #e5e5e5;
67
+ }
68
+ }
69
+
70
+ blockquote {
71
+ padding: .5rem 1rem;
72
+ margin: .8rem 0;
73
+ color: #7a7a7a;
74
+ border-left: .25rem solid #e5e5e5;
75
+
76
+ p:last-child {
77
+ margin-bottom: 0;
78
+ }
79
+
80
+ @media (min-width: 30em) {
81
+ padding-right: 5rem;
82
+ padding-left: 1.25rem;
83
+ }
84
+ }
85
+
86
+ figure {
87
+ margin: 0;
88
+ }
89
+
90
+
91
+ // Markdown footnotes
92
+ //
93
+ // See the example content post for an example.
94
+
95
+ // Footnote number within body text
96
+ a[href^="#fn:"],
97
+ // Back to footnote link
98
+ a[href^="#fnref:"] {
99
+ display: inline-block;
100
+ margin-left: .1rem;
101
+ font-weight: bold;
102
+ }
103
+
104
+ // List of footnotes
105
+ .footnotes {
106
+ margin-top: 2rem;
107
+ font-size: 85%;
108
+ }
109
+
110
+ // Custom type
111
+ //
112
+ // Extend paragraphs with `.lead` for larger introductory text.
113
+
114
+ .lead {
115
+ font-size: 1.25rem;
116
+ font-weight: 300;
117
+ }
@@ -0,0 +1,30 @@
1
+ $gray-1: #f9f9f9;
2
+ $gray-2: #ccc;
3
+ $gray-3: #767676;
4
+ $gray-4: #515151;
5
+ $gray-5: #313131;
6
+
7
+ $red: #ac4142;
8
+ $orange: #d28445;
9
+ $yellow: #f4bf75;
10
+ $green: #90a959;
11
+ $cyan: #75b5aa;
12
+ $blue: #268bd2;
13
+ // $blue: #6a9fb5;
14
+ $brown: #8f5536;
15
+
16
+ $root-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
17
+ $root-font-size: 16px;
18
+ $root-line-height: 1.5;
19
+
20
+ $body-color: #515151;
21
+ $body-bg: #fff;
22
+ $link-color: $blue;
23
+
24
+ $border-color: #e5e5e5;
25
+
26
+ $large-breakpoint: 38em;
27
+ $large-font-size: 20px;
28
+
29
+ $code-font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
30
+ $code-color: #bf616a;
Binary file
metadata ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: poole-for-jekyll
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Mark Otto
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-12-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.16'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.16'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '12.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '12.0'
55
+ description:
56
+ email:
57
+ - markdotto@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.md
63
+ - README.md
64
+ - _includes/head.html
65
+ - _layouts/default.html
66
+ - _layouts/page.html
67
+ - _layouts/post.html
68
+ - _sass/_base.scss
69
+ - _sass/_code.scss
70
+ - _sass/_layout.scss
71
+ - _sass/_masthead.scss
72
+ - _sass/_message.scss
73
+ - _sass/_pagination.scss
74
+ - _sass/_posts.scss
75
+ - _sass/_syntax.scss
76
+ - _sass/_type.scss
77
+ - _sass/_variables.scss
78
+ - assets/apple-touch-icon-precomposed.png
79
+ - assets/favicon.ico
80
+ homepage: https://getpoole.com
81
+ licenses:
82
+ - MIT
83
+ metadata: {}
84
+ post_install_message:
85
+ rdoc_options: []
86
+ require_paths:
87
+ - lib
88
+ required_ruby_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ required_rubygems_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ requirements: []
99
+ rubyforge_project:
100
+ rubygems_version: 2.7.6
101
+ signing_key:
102
+ specification_version: 4
103
+ summary: The Jekyll Butler. A no frills responsive Jekyll blog theme.
104
+ test_files: []