nonesuch 0.1.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: c00a2a70e99eb533952d24446307b769170f1cf61e5cfd9666eaf30364d9cfd3
4
+ data.tar.gz: 7c27275a83936d261e910a3ed5a9075902856532598d2b0dcaef7c2691794979
5
+ SHA512:
6
+ metadata.gz: 00d6e0973c98feaefaae5060595a6bcd8c9de6ebb5244277a3ef24acd1df9643cf051b0f4a0c231de4b7b1f4af01e585ec886b9d881b94bb1dcda9fb8ed8809a
7
+ data.tar.gz: 40ab7615f4bd49b7998e89c694bbef1678ff8e4be6472aa8d0dc4421f49ce55280cd0b61e25635c751558e648068b00bb64f649284fc05db589fa6651c01b4eb
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Katie Muth
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,46 @@
1
+ # nonesuch
2
+
3
+ A flexible, lightly slyled theme built on Poole with inspiration from no-style-please.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your Jekyll site's `Gemfile`:
8
+
9
+ ```ruby
10
+ gem "nonesuch"
11
+ ```
12
+
13
+ And add this line to your Jekyll site's `_config.yml`:
14
+
15
+ ```yaml
16
+ theme: nonesuch
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install nonesuch
26
+
27
+ ## Usage
28
+
29
+ TODO (& still undone): Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/nonesuch. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
34
+
35
+ ## Development
36
+
37
+ To set up your environment to develop this theme, run `bundle install`.
38
+
39
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
40
+
41
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
42
+ To add a custom directory to your theme-gem, please edit the regexp in `nonesuch.gemspec` accordingly.
43
+
44
+ ## License
45
+
46
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/_config.yml ADDED
@@ -0,0 +1,53 @@
1
+ title: katie muth # name of the site
2
+ subtitle: dh work + lit
3
+ url: https://krmuth.github.io/ # root address of the site
4
+ baseurl: "" # subpath of the site, e.g. "/blog" (leave it blank "" if your site shouldn't use a subpath)
5
+ description: # description of the site (multiple lines allowed)
6
+ Jekyll theme built on Poole with inspiration from riggraz 'no-style-please'.
7
+ paginate: 1
8
+ permalink: pretty
9
+
10
+ favicon: "logo.png" # name+extension of favicon (which must be put on the root folder)
11
+
12
+ theme: nonesuch # if you are using GitHub Pages, change it to remote_theme: nonesuch
13
+
14
+ theme_config:
15
+ appearance: "dark" # can be "light", "dark" or "auto"
16
+ back_home_text: ".." # customize text for back link in post layout
17
+ date_format: "%d-%m-%Y" # customize how date is formatted
18
+ show_description: false # show blog description in home page
19
+
20
+ sass:
21
+ sass-dir: _sass
22
+ style: :compressed
23
+
24
+ # Gems
25
+ plugins:
26
+ - jekyll-gist
27
+ - jekyll-paginate
28
+ - jekyll-seo-tag
29
+
30
+ # Optimize Jekyll
31
+ exclude:
32
+ - .editorconfig
33
+ - .git
34
+ - .jekyll-cache
35
+ - Gemfile
36
+ - Gemfile.lock
37
+ - LICENSE.md
38
+ - README.md
39
+
40
+ # Options
41
+
42
+ # Replace this value and uncomment to enable Google Analytics tracking
43
+ # ga_analytics: UA-000000-0
44
+
45
+ # Specify the author for blog posts
46
+ author:
47
+ name: Katie Muth
48
+ url: https://krmuth.github.io/
49
+ email: krmuth@gmail.com
50
+
51
+ # Custom vars
52
+
53
+
@@ -0,0 +1,24 @@
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="shortcut icon" type="image/x-icon" href="{{ site.favicon | relative_url }}" />
15
+ <link rel="preconnect" href="https://fonts.googleapis.com">
16
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
17
+ <link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,400;0,600;1,400;1,600&display=swap" rel="stylesheet">
18
+ <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ 'atom.xml' | relative_url }}">
19
+
20
+ {% comment %}
21
+ {% seo title=false %}
22
+ {% endcomment %}
23
+
24
+ </head>
@@ -0,0 +1,42 @@
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
+ <p style="margin-bottom:var(--spacer-3);">
22
+ some footer text can go here</a>
23
+ </p>
24
+ <small>
25
+ &copy; <time datetime="{{ site.time | date_to_xmlschema }}">{{ site.time | date: '%Y' }}</time> all rights reserved
26
+ </small>
27
+
28
+ </footer>
29
+ </div>
30
+
31
+ {% if site.ga_analytics %}
32
+ <script>
33
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
34
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
35
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
36
+ })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
37
+ ga('create', '{{ site.ga_analytics }}', 'auto');
38
+ ga('send', 'pageview');
39
+ </script>
40
+ {% endif %}
41
+ </body>
42
+ </html>
@@ -0,0 +1,12 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article class="page">
5
+ <h1 class="page-title">
6
+ {% if page.title != "Home" %}
7
+ {{ page.title }}
8
+ {% endif %}
9
+ </h1>
10
+ {{ content }}
11
+ </article>
12
+
@@ -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,90 @@
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
+ height: 100%;
39
+ margin-bottom: var(--spacer);
40
+ border-radius: var(--border-radius);
41
+ }
42
+
43
+ .img-crop {
44
+ margin: auto;
45
+ width: 250px;
46
+ height: 250px;
47
+ position: relative;
48
+ overflow: hidden;
49
+ margin-bottom: var(--spacer-2);
50
+ border-radius: 50%;
51
+ }
52
+
53
+ table {
54
+ margin-bottom: 1rem;
55
+ width: 100%;
56
+ border: 0 solid var(--border-color);
57
+ border-collapse: collapse;
58
+ }
59
+
60
+ td,
61
+ th {
62
+ padding: .25rem .5rem;
63
+ border-color: inherit;
64
+ border-style: solid;
65
+ border-width: 0;
66
+ border-bottom-width: 1px;
67
+ }
68
+
69
+ th {
70
+ text-align: left;
71
+ }
72
+
73
+ thead th {
74
+ border-bottom-color: currentColor;
75
+ }
76
+
77
+ mark {
78
+ padding: .15rem;
79
+ background-color: var(--yellow-100);
80
+ border-radius: .125rem;
81
+ }
82
+
83
+ iframe {
84
+ overflow-clip-margin: content-box !important;
85
+ border-width: 1px;
86
+ border-style: solid;
87
+ border-color: initial;
88
+ border-image: initial;
89
+ overflow: clip !important;
90
+ }
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,67 @@
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
+ --lime-900: #827717;
29
+
30
+ --body-font: 'Source Code Pro', monospace;
31
+ --body-font-size: 16px;
32
+ --body-line-height: 1.5;
33
+ --body-color: var(--gray-700);
34
+ --body-bg: #fff;
35
+
36
+ --link-color: var(--heading-color);
37
+ --link-hover-color: var(--blue);
38
+
39
+ --heading-color: var(--gray-900);
40
+
41
+ --border-color: var(--gray-300);
42
+ --border-radius: .25rem;
43
+
44
+ --code-font: 'Source Code Pro', monospace;
45
+ --code-color: var(--grape);
46
+ --code-bg: var(--gray-000);
47
+
48
+ --spacer: 1rem;
49
+ --spacer-2: calc(var(--spacer) * 1.5);
50
+ --spacer-3: calc(var(--spacer) * 3);
51
+ }
52
+
53
+ @media (prefers-color-scheme: dark) {
54
+ :root {
55
+ --body-color: var(--gray-300);
56
+ --body-bg: var(--gray-900);
57
+
58
+ --heading-color: #fff;
59
+
60
+ --link-color: var(--heading-color);
61
+ --link-hover-color: var(--blue-300);
62
+
63
+ --border-color: rgba(255,255,255,.15);
64
+
65
+ --code-bg: var(--gray-900);
66
+ }
67
+ }
data/assets/.DS_Store ADDED
Binary file
data/assets/avatar.jpg ADDED
Binary file
metadata ADDED
@@ -0,0 +1,77 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nonesuch
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Katie Muth
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-02-19 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.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.3'
27
+ description:
28
+ email:
29
+ - krmuth@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - LICENSE.txt
35
+ - README.md
36
+ - _config.yml
37
+ - _includes/head.html
38
+ - _layouts/default.html
39
+ - _layouts/page.html
40
+ - _layouts/post.html
41
+ - _sass/_base.scss
42
+ - _sass/_code.scss
43
+ - _sass/_layout.scss
44
+ - _sass/_masthead.scss
45
+ - _sass/_message.scss
46
+ - _sass/_pagination.scss
47
+ - _sass/_posts.scss
48
+ - _sass/_syntax.scss
49
+ - _sass/_toc.scss
50
+ - _sass/_type.scss
51
+ - _sass/_variables.scss
52
+ - assets/.DS_Store
53
+ - assets/avatar.jpg
54
+ homepage: https://krmuth.github.io
55
+ licenses:
56
+ - MIT
57
+ metadata: {}
58
+ post_install_message:
59
+ rdoc_options: []
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ required_rubygems_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ requirements: []
73
+ rubygems_version: 3.3.11
74
+ signing_key:
75
+ specification_version: 4
76
+ summary: A theme with brutal sensibilities.
77
+ test_files: []