poole-for-jekyll-test 3.0.0.pre.test

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 87d8d301ac3203c90c83f804496d23d362664513c39bf5e9e6a8e45a42c0edd8
4
+ data.tar.gz: 2a7b5784cbfb2f24fc1b67db94412f6e4e969ac86bbcdbf8804cf748eef1b07f
5
+ SHA512:
6
+ metadata.gz: 389bb25ad6edfe0a93ecdb8aaca9e7028b65ee68473a5489b05a9fa0b1ad944001eec51f2dfdb47733c507a339cd24660d5f367018d8287ff6c4906bda84eae9
7
+ data.tar.gz: 1865db282c9105f556bd06e525339f5758401272f572a7f52b29a9aada6a1ea0ebdd686349705f59bbb38ad66d77e26ee9ce1429a00eef6d58d32232120548e6
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,92 @@
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](https://demo.getpoole.com).
12
+
13
+ There are currently two official themes built on Poole:
14
+
15
+ * [Hyde](https://hyde.getpoole.com)
16
+ * [Lanyon](https://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
+ - [Development](#development)
25
+ - [Author](#author)
26
+ - [License](#license)
27
+
28
+
29
+ ## Usage
30
+
31
+ ### 1. Install dependencies
32
+
33
+ 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 and related dependencies:
34
+
35
+ ```bash
36
+ $ gem install jekyll jekyll-gist jekyll-sitemap jekyll-seo-tag
37
+ ```
38
+
39
+ **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.
40
+
41
+ **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](https://jekyllrb.com/docs/liquid/tags/#code-snippet-highlighting).
42
+
43
+ ### 2a. Quick start
44
+
45
+ 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.
46
+
47
+ ### 2b. Roll your own Jekyll site
48
+
49
+ 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.).
50
+
51
+ ### 3. Running locally
52
+
53
+ 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):
54
+
55
+ ```bash
56
+ $ jekyll serve
57
+ ```
58
+
59
+ Open <http://localhost:4000> in your browser, and voilà.
60
+
61
+ ### 4. Serving it up
62
+
63
+ If you host your code on GitHub, you can use [GitHub Pages](https://pages.github.com) to host your project.
64
+
65
+ 1. Fork this repo and switch to the `gh-pages` branch.
66
+ 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.
67
+ 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.**
68
+ 3. Done! Head to your GitHub Pages URL or custom domain.
69
+
70
+ 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.
71
+
72
+ ## Development
73
+
74
+ Poole has two branches, but only one is used for active development.
75
+
76
+ - `master` for development. **All pull requests should be to submitted against `master`.**
77
+ - `gh-pages` for our hosted site, which includes our analytics tracking code. **Please avoid using this branch.**
78
+
79
+ 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`.
80
+
81
+ ## Author
82
+
83
+ **Mark Otto**
84
+ - <https://github.com/mdo>
85
+ - <https://twitter.com/mdo>
86
+
87
+
88
+ ## License
89
+
90
+ Open sourced under the [MIT license](LICENSE.md).
91
+
92
+ <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="{{ 'styles.css' | relative_url }}">
14
+ <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ '/assets/apple-touch-icon-precomposed.png' | relative_url }}">
15
+ <link rel="shortcut icon" href="{{ '/assets/favicon.ico' | relative_url }}">
16
+ <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ 'atom.xml' | relative_url }}">
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,70 @@
1
+ // Body resets
2
+ //
3
+ // Update the foundational and global aspects of the page.
4
+
5
+ * {
6
+ box-sizing: border-box;
7
+ }
8
+
9
+ body {
10
+ margin: 0;
11
+ font-family: var(--body-font);
12
+ font-size: var(--body-font-size);
13
+ line-height: var(--body-line-height);
14
+ color: var(--body-color);
15
+ background-color: var(--body-bg);
16
+ -webkit-text-size-adjust: 100%;
17
+ -ms-text-size-adjust: 100%;
18
+ }
19
+
20
+ // No `:visited` state is required by default (browsers will use `a`)
21
+ a {
22
+ color: var(--link-color);
23
+
24
+ // `:focus` is linked to `:hover` for basic accessibility
25
+ &:hover,
26
+ &:focus {
27
+ color: var(--link-hover-color);
28
+ }
29
+
30
+ strong {
31
+ color: inherit;
32
+ }
33
+ }
34
+
35
+ img {
36
+ display: block;
37
+ max-width: 100%;
38
+ margin-bottom: var(--spacer);
39
+ border-radius: var(--border-radius);
40
+ }
41
+
42
+ table {
43
+ margin-bottom: 1rem;
44
+ width: 100%;
45
+ border: 0 solid var(--border-color);
46
+ border-collapse: collapse;
47
+ }
48
+
49
+ td,
50
+ th {
51
+ padding: .25rem .5rem;
52
+ border-color: inherit;
53
+ border-style: solid;
54
+ border-width: 0;
55
+ border-bottom-width: 1px;
56
+ }
57
+
58
+ th {
59
+ text-align: left;
60
+ }
61
+
62
+ thead th {
63
+ border-bottom-color: currentColor;
64
+ }
65
+
66
+ mark {
67
+ padding: .15rem;
68
+ background-color: var(--yellow-100);
69
+ border-radius: .125rem;
70
+ }
data/_sass/_code.scss ADDED
@@ -0,0 +1,58 @@
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: var(--code-font);
9
+ }
10
+
11
+ code {
12
+ font-size: 85%;
13
+ }
14
+
15
+ pre {
16
+ display: block;
17
+ margin-top: 0;
18
+ margin-bottom: var(--spacer-3);
19
+ overflow: auto;
20
+ }
21
+
22
+ .highlight {
23
+ padding: var(--spacer);
24
+ margin-bottom: var(--spacer);
25
+ background-color: var(--code-bg);
26
+ border-radius: var(--border-radius);
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
+ vertical-align: top;
50
+ user-select: none;
51
+ opacity: .25;
52
+ }
53
+ }
54
+
55
+ // Gist via GitHub Pages
56
+ .gist .markdown-body {
57
+ padding: 15px !important;
58
+ }
@@ -0,0 +1,16 @@
1
+ // Layout
2
+ //
3
+ // Styles for managing the structural hierarchy of the site.
4
+
5
+ .container {
6
+ max-width: 45rem;
7
+ padding-left: var(--spacer-2);
8
+ padding-right: var(--spacer-2);
9
+ margin-left: auto;
10
+ margin-right: auto;
11
+ }
12
+
13
+ footer {
14
+ margin-top: var(--spacer-3);
15
+ margin-bottom: var(--spacer-3);
16
+ }
@@ -0,0 +1,23 @@
1
+ // Masthead
2
+ //
3
+ // Super small header above the content for site name and short description.
4
+
5
+ .masthead {
6
+ padding-top: var(--spacer);
7
+ padding-bottom: var(--spacer);
8
+ margin-bottom: var(--spacer-3);
9
+ }
10
+
11
+ .masthead-title {
12
+ margin-bottom: 0;
13
+
14
+ a {
15
+ color: inherit;
16
+ text-decoration: none;
17
+ }
18
+
19
+ small {
20
+ font-weight: 400;
21
+ opacity: .5;
22
+ }
23
+ }
@@ -0,0 +1,12 @@
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
+ padding: var(--spacer);
8
+ margin-bottom: var(--spacer);
9
+ color: var(--gray-900);
10
+ background-color: var(--yellow-100);
11
+ border-radius: var(--border-radius);
12
+ }
@@ -0,0 +1,52 @@
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
+ display: flex;
8
+ margin: 0 -1.5rem var(--spacer);
9
+ color: var(--gray-500);
10
+ text-align: center;
11
+ }
12
+
13
+ // Pagination items can be `span`s or `a`s
14
+ .pagination-item {
15
+ display: block;
16
+ padding: var(--spacer);
17
+ text-decoration: none;
18
+ border: solid var(--border-color);
19
+ border-width: 1px 0;
20
+
21
+ &:first-child {
22
+ margin-bottom: -1px;
23
+ }
24
+ }
25
+
26
+ // Only provide a hover state for linked pagination items
27
+ a.pagination-item:hover {
28
+ background-color: var(--border-color);
29
+ }
30
+
31
+ @media (min-width: 30em) {
32
+ .pagination {
33
+ margin: var(--spacer-3) 0;
34
+ }
35
+
36
+ .pagination-item {
37
+ float: left;
38
+ width: 50%;
39
+ border-width: 1px;
40
+
41
+ &:first-child {
42
+ margin-bottom: 0;
43
+ border-top-left-radius: var(--border-radius);
44
+ border-bottom-left-radius: var(--border-radius);
45
+ }
46
+ &:last-child {
47
+ margin-left: -1px;
48
+ border-top-right-radius: var(--border-radius);
49
+ border-bottom-right-radius: var(--border-radius);
50
+ }
51
+ }
52
+ }
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
+ color: var(--heading-color);
19
+ }
20
+ .page-title,
21
+ .post-title {
22
+ margin-top: 0;
23
+ }
24
+ .post-title a {
25
+ color: inherit;
26
+ text-decoration: none;
27
+
28
+ &:hover,
29
+ &:focus {
30
+ text-decoration: underline;
31
+ }
32
+ }
33
+
34
+ // Meta data line below post title
35
+ .post-date {
36
+ display: block;
37
+ margin-top: -.5rem;
38
+ margin-bottom: var(--spacer);
39
+ color: var(--gray-600);
40
+ }
41
+
42
+
43
+ // Related posts
44
+ .related {
45
+ padding-top: var(--spacer-2);
46
+ padding-bottom: var(--spacer-2);
47
+ margin-bottom: var(--spacer-2);
48
+ border-top: 1px solid var(--border-color);
49
+ border-bottom: 1px solid var(--border-color);
50
+ }
51
+
52
+ .related-posts {
53
+ padding-left: 0;
54
+ list-style: none;
55
+
56
+ h3 {
57
+ margin-top: 0;
58
+ }
59
+
60
+ a {
61
+ text-decoration: none;
62
+
63
+ small {
64
+ color: var(--gray-600);
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/_toc.scss ADDED
@@ -0,0 +1,16 @@
1
+ // Table of Contents
2
+
3
+ #markdown-toc {
4
+ padding: var(--spacer-2) var(--spacer-3);
5
+ margin-bottom: var(--spacer-2);
6
+ border: solid var(--border-color);
7
+ border-width: 1px 0;
8
+
9
+ &::before {
10
+ display: block;
11
+ margin-left: calc(var(--spacer-3) * -1);
12
+ content: "Contents";
13
+ font-size: 85%;
14
+ font-weight: 500;
15
+ }
16
+ }
data/_sass/_type.scss ADDED
@@ -0,0 +1,115 @@
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: var(--heading-color);
10
+ }
11
+
12
+ h1 {
13
+ font-size: 2rem;
14
+ }
15
+
16
+ h2 {
17
+ margin-top: 1rem;
18
+ font-size: 1.5rem;
19
+ }
20
+
21
+ h3 {
22
+ margin-top: 1.5rem;
23
+ font-size: 1.25rem;
24
+ }
25
+
26
+ h4, h5, h6 {
27
+ margin-top: 1rem;
28
+ font-size: 1rem;
29
+ }
30
+
31
+ p {
32
+ margin-top: 0;
33
+ margin-bottom: 1rem;
34
+ }
35
+
36
+ ul, ol, dl {
37
+ margin-top: 0;
38
+ margin-bottom: 1rem;
39
+ }
40
+
41
+ dt {
42
+ font-weight: bold;
43
+ }
44
+
45
+ dd {
46
+ margin-bottom: .5rem;
47
+ }
48
+
49
+ hr {
50
+ position: relative;
51
+ margin: var(--spacer-2) 0;
52
+ border: 0;
53
+ border-top: 1px solid var(--border-color);
54
+ }
55
+
56
+ abbr {
57
+ font-size: 85%;
58
+ font-weight: bold;
59
+ color: var(--gray-600);
60
+ text-transform: uppercase;
61
+
62
+ &[title] {
63
+ cursor: help;
64
+ border-bottom: 1px dotted var(--border-color);
65
+ }
66
+ }
67
+
68
+ blockquote {
69
+ padding: .5rem 1rem;
70
+ margin: .8rem 0;
71
+ color: var(--gray-500);
72
+ border-left: .25rem solid var(--border-color);
73
+
74
+ p:last-child {
75
+ margin-bottom: 0;
76
+ }
77
+
78
+ @media (min-width: 30em) {
79
+ padding-right: 5rem;
80
+ padding-left: 1.25rem;
81
+ }
82
+ }
83
+
84
+ figure {
85
+ margin: 0;
86
+ }
87
+
88
+
89
+ // Markdown footnotes
90
+ //
91
+ // See the example content post for an example.
92
+
93
+ // Footnote number within body text
94
+ a[href^="#fn:"],
95
+ // Back to footnote link
96
+ a[href^="#fnref:"] {
97
+ display: inline-block;
98
+ margin-left: .1rem;
99
+ font-weight: bold;
100
+ }
101
+
102
+ // List of footnotes
103
+ .footnotes {
104
+ margin-top: 2rem;
105
+ font-size: 85%;
106
+ }
107
+
108
+ // Custom type
109
+ //
110
+ // Extend paragraphs with `.lead` for larger introductory text.
111
+
112
+ .lead {
113
+ font-size: 1.25rem;
114
+ font-weight: 300;
115
+ }
@@ -0,0 +1,66 @@
1
+ :root {
2
+ --gray-000: #f8f9fa;
3
+ --gray-100: #f1f3f5;
4
+ --gray-200: #e9ecef;
5
+ --gray-300: #dee2e6;
6
+ --gray-400: #ced4da;
7
+ --gray-500: #adb5bd;
8
+ --gray-600: #868e96;
9
+ --gray-700: #495057;
10
+ --gray-800: #343a40;
11
+ --gray-900: #212529;
12
+
13
+ --red: #fa5252;
14
+ --pink: #e64980;
15
+ --grape: #be4bdb;
16
+ --purple: #7950f2;
17
+ --indigo: #4c6ef5;
18
+ --blue: #228be6;
19
+ --cyan: #15aabf;
20
+ --teal: #12b886;
21
+ --green: #40c057;
22
+ --yellow: #fab005;
23
+ --orange: #fd7e14;
24
+
25
+ --blue-300: #74c0fc;
26
+ --blue-400: #4dabf7;
27
+ --yellow-100: #fff3bf;
28
+
29
+ --body-font: -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";
30
+ --body-font-size: 16px;
31
+ --body-line-height: 1.5;
32
+ --body-color: var(--gray-700);
33
+ --body-bg: #fff;
34
+
35
+ --link-color: var(--blue);
36
+ --link-hover-color: #1c7ed6;
37
+
38
+ --heading-color: var(--gray-900);
39
+
40
+ --border-color: var(--gray-300);
41
+ --border-radius: .25rem;
42
+
43
+ --code-font: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
44
+ --code-color: var(--grape);
45
+ --code-bg: var(--gray-000);
46
+
47
+ --spacer: 1rem;
48
+ --spacer-2: calc(var(--spacer) * 1.5);
49
+ --spacer-3: calc(var(--spacer) * 3);
50
+ }
51
+
52
+ @media (prefers-color-scheme: dark) {
53
+ :root {
54
+ --body-color: var(--gray-300);
55
+ --body-bg: var(--gray-800);
56
+
57
+ --heading-color: #fff;
58
+
59
+ --link-color: var(--blue-300);
60
+ --link-hover-color: var(--blue-400);
61
+
62
+ --border-color: rgba(255,255,255,.15);
63
+
64
+ --code-bg: var(--gray-900);
65
+ }
66
+ }
Binary file
metadata ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: poole-for-jekyll-test
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.0.0.pre.test
5
+ platform: ruby
6
+ authors:
7
+ - Corey Carvalho
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-08-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
+ - blog@coreycarvalho.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/_toc.scss
77
+ - _sass/_type.scss
78
+ - _sass/_variables.scss
79
+ - assets/apple-touch-icon-precomposed.png
80
+ - assets/favicon.ico
81
+ homepage: https://getpoole.com
82
+ licenses:
83
+ - MIT
84
+ metadata: {}
85
+ post_install_message:
86
+ rdoc_options: []
87
+ require_paths:
88
+ - lib
89
+ required_ruby_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ required_rubygems_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">"
97
+ - !ruby/object:Gem::Version
98
+ version: 1.3.1
99
+ requirements: []
100
+ rubygems_version: 3.2.33
101
+ signing_key:
102
+ specification_version: 4
103
+ summary: The Jekyll Butler. A no frills responsive Jekyll blog theme.
104
+ test_files: []