reverses-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +9 -0
  3. data/README.md +34 -0
  4. data/_includes/back-link.html +3 -0
  5. data/_includes/disqus-comments.html +20 -0
  6. data/_includes/google-analytics.html +10 -0
  7. data/_includes/menu.html +26 -0
  8. data/_includes/post-excerpt.html +19 -0
  9. data/_includes/post-list-item.html +19 -0
  10. data/_includes/search.html +8 -0
  11. data/_layouts/default.html +41 -0
  12. data/_layouts/home.html +61 -0
  13. data/_layouts/interviews.html +28 -0
  14. data/_layouts/page.html +8 -0
  15. data/_layouts/post.html +37 -0
  16. data/_sass/_article.scss +65 -0
  17. data/_sass/_base.scss +149 -0
  18. data/_sass/_font.scss +62 -0
  19. data/_sass/_footnotes.scss +35 -0
  20. data/_sass/_masthead.scss +25 -0
  21. data/_sass/_menu.scss +38 -0
  22. data/_sass/_mixins.scss +8 -0
  23. data/_sass/_post-list.scss +90 -0
  24. data/_sass/_reset.scss +1 -0
  25. data/_sass/_search.scss +34 -0
  26. data/_sass/_syntax-highlighting.scss +84 -0
  27. data/_sass/_variables.scss +11 -0
  28. data/assets/css/main.scss +21 -0
  29. data/assets/fonts/Audrey-Bold.woff +0 -0
  30. data/assets/fonts/Audrey-BoldOblique.woff +0 -0
  31. data/assets/fonts/Audrey-Medium.woff +0 -0
  32. data/assets/fonts/Audrey-MediumOblique.woff +0 -0
  33. data/assets/fonts/Audrey-Normal.woff +0 -0
  34. data/assets/fonts/Audrey-NormalOblique.woff +0 -0
  35. data/assets/fonts/BrandonGrotesque-Black.woff +0 -0
  36. data/assets/fonts/OFL.txt +93 -0
  37. data/assets/fonts/eb-garamond-v9-latin-regular.eot +0 -0
  38. data/assets/fonts/eb-garamond-v9-latin-regular.svg +612 -0
  39. data/assets/fonts/eb-garamond-v9-latin-regular.ttf +0 -0
  40. data/assets/fonts/eb-garamond-v9-latin-regular.woff +0 -0
  41. data/assets/fonts/eb-garamond-v9-latin-regular.woff2 +0 -0
  42. data/assets/images/Reverses-Dark.png +0 -0
  43. data/assets/images/Reverses-Full Transparent Black-PNG.png +0 -0
  44. data/assets/images/Reverses-Full Transparent White-PNG.png +0 -0
  45. data/assets/images/Reverses-Light (2).png +0 -0
  46. data/assets/images/Reverses-Light.png +0 -0
  47. data/assets/images/divider.svg +15 -0
  48. data/assets/images/downarrow.png +0 -0
  49. data/assets/images/downarrow.svg +1 -0
  50. data/assets/images/icon-512.png +0 -0
  51. metadata +134 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8dc58d930b59197620d0f62f836b17dbb27aed19e1832675dae291a4ad343f2d
4
+ data.tar.gz: 751b91acbfffb58547a590b24f38b9f2ba995d9671c6f2f730252e17aab3285b
5
+ SHA512:
6
+ metadata.gz: b6a76f2ad9d956b3e10ecbd8187061d085d607b6a400c132d5ea1e1ab594e0e2bca807fbc0301bf29005850701e3faa7b29b09ba383a2cb3e2903d28eca2f690
7
+ data.tar.gz: f7ce1b3b925786063cf4f4ec37f949801a9b4405597488c128c692fa0de08fb2e16efe7c1d9d0ace71b26c159e77326899de80f55d954a22cc9c94eb00ab6e03
data/LICENSE.txt ADDED
@@ -0,0 +1,9 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Shereen Lee
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,34 @@
1
+ ---
2
+ layout: page
3
+ title: "Reverse Theme"
4
+ ---
5
+
6
+ ### Credits
7
+
8
+ The theme credits that appear at the bottom of each page can be turned off by including the following line in your site's `_config.yml` file:
9
+
10
+ ```
11
+ hide_credits: true
12
+ ```
13
+
14
+ ### Search
15
+
16
+ The theme uses a custom DuckDuckGo Search Form that can be turned off by including the following line in your site's `_config.yml` file:
17
+
18
+ ```
19
+ hide_search: true
20
+ ```
21
+
22
+ ### Font
23
+
24
+ The theme includes a version of [EB Garamond](https://fonts.google.com/specimen/EB+Garamond), designed by Georg Duffner and Octavio Pardo. It's the closest alternative I could come up with that included an open license to include with the theme.
25
+
26
+ A [copy of the license](https://github.com/patdryburgh/hitchens/blob/master/assets/fonts/OFL.txt) has been included in the `assets` folder and must be included with any distributions of this theme that include the EB Garamond font files.
27
+
28
+ ## License
29
+
30
+ The code for this theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
31
+
32
+ The font, EB Garamond, is Copyright 2017 The EB Garamond Project Authors and licensed under the [SIL Open Font License Version 1.1](https://github.com/patdryburgh/hitchens/blob/master/assets/fonts/OFL.txt).
33
+
34
+ Graphics are released to the public domain.
@@ -0,0 +1,3 @@
1
+ <a href="{{ "/" | prepend: site.baseurl }}" class="back-link">
2
+ &lang; Home
3
+ </a>
@@ -0,0 +1,20 @@
1
+ {%- if page.comments != false and jekyll.environment == "production" -%}
2
+
3
+ <div id="disqus_thread"></div>
4
+ <script>
5
+ var disqus_config = function () {
6
+ this.page.url = '{{ page.url | absolute_url }}';
7
+ this.page.identifier = '{{ page.url | absolute_url }}';
8
+ };
9
+
10
+ (function() {
11
+ var d = document, s = d.createElement('script');
12
+
13
+ s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
14
+
15
+ s.setAttribute('data-timestamp', +new Date());
16
+ (d.head || d.body).appendChild(s);
17
+ })();
18
+ </script>
19
+ <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
20
+ {%- endif -%}
@@ -0,0 +1,10 @@
1
+ <script>
2
+ if(!(window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1")) {
3
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
4
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
5
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
6
+ })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
7
+ ga('create', '{{ site.google_analytics }}', 'auto');
8
+ ga('send', 'pageview');
9
+ }
10
+ </script>
@@ -0,0 +1,26 @@
1
+ {% assign menu = site.data.menu %}
2
+
3
+ {% if menu %}
4
+ <nav class="site-navigation" role="navigation">
5
+ <ul>
6
+ <li>
7
+ <a href="{{ '/' | prepend: site.baseurl }}">
8
+ Home
9
+ </a>
10
+ </li>
11
+ {% for item in site.data.menu %}
12
+ <li {% if page.url == item.url %}class="active"{% endif %}>
13
+ {% if item.url contains 'http' %}
14
+ <a href="{{ item.url }}">
15
+ {{ item.title }}
16
+ </a>
17
+ {% else %}
18
+ <a href="{{ item.url | prepend: site.baseurl }}">
19
+ {{ item.title }}
20
+ </a>
21
+ {% endif %}
22
+ </li>
23
+ {% endfor %}
24
+ </ul>
25
+ </nav>
26
+ {% endif %}
@@ -0,0 +1,19 @@
1
+ {% capture excerpt %}
2
+ {{ post.excerpt | replace: "<p>", "" | replace: "</p>", "" }}
3
+ {% endcapture %}
4
+
5
+ {% if site.excerpt_length %}
6
+ {% assign excerpt_length = 20 %}
7
+ {% else %}
8
+ {% assign excerpt_length = 20 %}
9
+ {% endif %}
10
+
11
+ {% assign excerpt_size = excerpt | size %}
12
+
13
+ <span class="post-link__excerpt">
14
+ {% if excerpt_size > 140 and excerpt_length > 0 %}
15
+ {{ excerpt | truncatewords: excerpt_length, '…' }}
16
+ {% else %}
17
+ {{ excerpt }}
18
+ {% endif %}
19
+ </span>
@@ -0,0 +1,19 @@
1
+ <li>
2
+ <a href="{{ post.url | absolute_url }}" class="post-link">
3
+ <div class="post-link__heading">
4
+ {% unless post.title == "" %}
5
+ <h3 class="post-link__title">
6
+ {{ post.title }}
7
+ </h3>
8
+ {% else %}
9
+ {% include post-excerpt.html %}
10
+ {% endunless %}
11
+ {% if post.title != "" and site.show_excerpts == true %}
12
+ {% include post-excerpt.html %}
13
+ {% endif %}
14
+ </div>
15
+ <span class="post-date">
16
+ {{ post.date | date: "%b %-d, '%y" }}
17
+ </span>
18
+ </a>
19
+ </li>
@@ -0,0 +1,8 @@
1
+ <form method="get" id="search" action="https://duckduckgo.com/">
2
+ <input type="hidden" name="sites" value="{{ site.url }}"/>
3
+ <input type="hidden" name="k8" value="#222222"/>
4
+ <input type="hidden" name="k9" value="#dc4b3c"/>
5
+ <input type="hidden" name="kt" value="h"/>
6
+ <input type="text" id="search__input" name="q" placeholder="Search&hellip;"/ autocomplete="off">
7
+ <button type="submit" class="btn btn-bordered" tabindex="-1">Search</button>
8
+ </form>
@@ -0,0 +1,41 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+ <head>
4
+
5
+ <meta charset="utf-8">
6
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1">
8
+
9
+ <title>{{ site.title }}{% if page.title and page.title != "" %} &mdash; {{ page.title }}{% endif %}</title>
10
+
11
+ {% if site.description %}<meta name="description" content="{{ site.description }}">{% endif %}
12
+
13
+ <link rel="stylesheet" href="{{ '/assets/css/main.css' | absolute_url }}?{{ site.time | date: '%s%N' }}">
14
+
15
+ <link rel="apple-touch-icon" href="{{ site.icon }}">
16
+
17
+ {%- if jekyll.environment == 'production' and site.google_analytics -%}
18
+ {%- include google-analytics.html -%}
19
+ {%- endif -%}
20
+
21
+ </head>
22
+ <body>
23
+
24
+ {{ content }}
25
+
26
+ {% unless site.hide_search %}
27
+ {% include search.html %}
28
+ {% endunless %}
29
+
30
+ {% include menu.html %}
31
+
32
+ {% unless site.hide_credits %}
33
+ <aside class="site-credits">
34
+ <p>
35
+ <small> © 2022 Re:verses. All rights reserved. </a></small>
36
+ </p>
37
+ </aside>
38
+ {% endunless %}
39
+
40
+ </body>
41
+ </html>
@@ -0,0 +1,61 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <header class="site-masthead">
6
+ {% include menu.html %}
7
+
8
+ <a href="reverses.ca">
9
+ <img src="/assets/images/Reverses-Dark.png" alt="re:verses" style="width:1500px;height:300px;">
10
+ </a>
11
+
12
+ <a href="#main">
13
+ <img src="/assets/images/downarrow.svg" alt="re:verses" style="width:40px;height:50px;">
14
+ </a>
15
+
16
+ <main class="home" id="main" role="main" aria-label="Interviews">
17
+ <h3 class="content-title divided">
18
+ {% if site.paginate and site.paginate_path and paginator.page > 1 %}
19
+ Page {{ paginator.page }}
20
+ {% else %}
21
+ Interviews
22
+ {% endif %}
23
+ </h3>
24
+ {% if site.paginate and site.paginate_path %}
25
+
26
+ <ul class="post-list">
27
+ {% for post in paginator.posts %}
28
+ {% include post-list-item.html %}
29
+ {% endfor %}
30
+ </ul>
31
+
32
+ {% if paginator.total_pages > 1 %}
33
+
34
+ <div class="post-pagination">
35
+ {% if paginator.next_page %}
36
+ <a href="{{ paginator.next_page_path | prepend: site.baseurl }}" class="pagination-next btn">&lang;&nbsp;Older</a>
37
+ {% else %}
38
+ <span>&nbsp;</span>
39
+ {% endif %}
40
+ <span class="pagination-number">{{ paginator.page }} of {{ paginator.total_pages }}</span>
41
+ {% if paginator.previous_page %}
42
+ <a href="{{ paginator.previous_page_path | prepend: site.baseurl }}" class="pagination-previous btn">Newer&nbsp;&rang;</a>
43
+ {% else %}
44
+ <span>&nbsp;</span>
45
+ {% endif %}
46
+ </div>
47
+
48
+ {% endif %}
49
+
50
+ {% else %}
51
+
52
+ <ul class="post-list">
53
+ {% for post in site.posts %}
54
+ {% include post-list-item.html %}
55
+ {% endfor %}
56
+ </ul>
57
+
58
+ {% endif %}
59
+
60
+
61
+ </main>
@@ -0,0 +1,28 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <a href="reverses.ca">
5
+ <img src="/assets/images/Reverses-Dark.png" alt="re:verses" style="width:600px;height:145px;">
6
+ </a>
7
+ <header class="site-masthead">
8
+ {% include menu.html %}
9
+
10
+
11
+
12
+ <main class="home" id="main" role="main" aria-label="Interviews">
13
+
14
+ <h3 class="content-title divided">
15
+ {% if site.paginate and site.paginate_path and paginator.page > 1 %}
16
+ Page {{ paginator.page }}
17
+ {% else %}
18
+ Archive
19
+ {% endif %}
20
+ </h3>
21
+
22
+ <ul class="post-list">
23
+ {% for post in site.posts %}
24
+ {% include post-list-item.html %}
25
+ {% endfor %}
26
+ </ul>
27
+
28
+ </main>
@@ -0,0 +1,8 @@
1
+ ---
2
+ layout: post
3
+ ---
4
+ <a href="reverses.ca">
5
+ <img src="/assets/images/Reverses-Dark.png" alt="re:verses" style="width:600px;height:145px;">
6
+ </a>
7
+
8
+ {{ content }}
@@ -0,0 +1,37 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <a href="reverses.ca">
5
+ <img src="/assets/images/Reverses-Dark.png" alt="re:verses" style="width:600px;height:145px;">
6
+ </a>
7
+
8
+ {% if site.data.menu %}
9
+ {% include menu.html %}
10
+ {% else %}
11
+ {% include back-link.html %}
12
+ {% endif %}
13
+
14
+ <article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting" id="main" role="article" aria-label="Content">
15
+
16
+ {% if page.title != "" %}
17
+ <h1 class="post-title divided p-name" itemprop="name headline">
18
+ {{ page.title }}
19
+ </h1>
20
+ {% endif %}
21
+
22
+ <div class="post-content e-content" itemprop="articleBody">
23
+ {{ content }}
24
+ </div>
25
+
26
+ <div class="post-meta">
27
+ {% if page.author %}
28
+ <div itemprop="author">{{ page.author }}</div>
29
+ {% endif %}
30
+ <time class="post-date dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%B %-d, %Y" }}</time>
31
+ </div>
32
+
33
+ {% if site.disqus.shortname %}
34
+ {% include disqus-comments.html %}
35
+ {% endif %}
36
+
37
+ </article>
@@ -0,0 +1,65 @@
1
+ .post {
2
+ background: white;
3
+ margin: 2em auto;
4
+ max-width: 60rem;
5
+ padding: 2em 0;
6
+ box-shadow: 12px 18px 24px rgba(darken($brand-color, 50%), .1);
7
+ }
8
+
9
+ .post > * {
10
+ margin-left: auto;
11
+ margin-right: auto;
12
+ max-width: 36rem;
13
+ padding: 0 1 em;
14
+ }
15
+
16
+ .post > h1 {
17
+ font-size: 2em;
18
+ max-width: 48rem;
19
+ padding: 2em 1em;
20
+ text-align: center;
21
+ }
22
+
23
+ .post p {
24
+ text-align: justify;
25
+ text-indent: 0;
26
+ text-justify: inter-word;
27
+ }
28
+
29
+ .post p:first-of-type,
30
+ .post h2 + p {
31
+ text-indent: 0;
32
+ }
33
+
34
+ .post a:hover {
35
+ background: $highlight;
36
+ }
37
+
38
+ .post dl,
39
+ .post ul,
40
+ .post ol {
41
+ margin: 0em;
42
+ }
43
+
44
+ .post li {
45
+ margin-left: 0em;
46
+ margin-right: 0em;
47
+ }
48
+
49
+ .post-content:first-child {
50
+ margin-top: 2em;
51
+ }
52
+
53
+ .post-meta {
54
+ margin-bottom: 2em;
55
+ margin-top: 2em;
56
+ text-align: right;
57
+ }
58
+
59
+ .back-link {
60
+ display: inline-block;
61
+ font-size: .75em;
62
+ padding: 1em;
63
+ text-decoration: none;
64
+ text-transform: uppercase;
65
+ }
data/_sass/_base.scss ADDED
@@ -0,0 +1,149 @@
1
+ body {
2
+ background: $brand-color;
3
+ color: $text-color;
4
+ font-family: $font-family;
5
+ font-size: 1.3125em;
6
+ line-height: 1.5;
7
+ }
8
+
9
+ h1 {
10
+ font-size: 2em;
11
+ font-family: $font-family-header;
12
+ margin: 0em auto;
13
+ text-align: center;
14
+ }
15
+
16
+ h2 {
17
+ font-size: 2em;
18
+ font-family: $font-family-subhead;
19
+ margin: 0em auto;
20
+ text-align: center;
21
+ }
22
+
23
+ h3 {
24
+ font-size: 1.2em;
25
+ margin: 0em auto;
26
+ text-align: left;
27
+ }
28
+
29
+ h4 {
30
+ font-size: 1em;
31
+ font-style: italic;
32
+ text-align: right;
33
+ margin: 0em auto;
34
+ text-indent: 0em;
35
+ color: gray;
36
+ }
37
+
38
+ h5 {
39
+ font-size: 1em;
40
+ margin: 0em auto;
41
+ text-indent: 0em;
42
+ }
43
+
44
+ h6 {
45
+ font-size: 1em;
46
+ margin: 0em auto;
47
+ text-indent: 0em;
48
+ }
49
+
50
+ em {
51
+ font-style: italic;
52
+ }
53
+
54
+ strong {
55
+ font-weight: bold;
56
+ }
57
+
58
+ a {
59
+ color: inherit;
60
+ }
61
+
62
+ a:focus {
63
+ outline: 1px dashed $text-color;
64
+ }
65
+
66
+ blockquote {
67
+ margin: 0.5em;
68
+ font-family: $font-family-header;
69
+ font-size: 1.5em;
70
+ color: $muted-text-color;
71
+ font: Brandon Grotesque;
72
+ opacity: 1;
73
+ > * {
74
+ padding: 0 1em;
75
+ }
76
+ }
77
+
78
+ blockquote.epigraph {
79
+ font-style: italic;
80
+ }
81
+
82
+ small {
83
+ font-size: .75em;
84
+ }
85
+
86
+ p > cite {
87
+ display: block;
88
+ text-align: right;
89
+ }
90
+
91
+ hr {
92
+ border: 0;
93
+ height: 0;
94
+ @include divider;
95
+ margin: 4em 0;
96
+ }
97
+
98
+ img {
99
+ display: flex;
100
+ max-width: 100%;
101
+ height: auto;
102
+ margin: 2em auto;
103
+ }
104
+
105
+ figure img {
106
+ margin: 2em auto 1em;
107
+ }
108
+
109
+ figcaption {
110
+ font-size: .875em;
111
+ font-style: italic;
112
+ text-align: center;
113
+ margin-bottom: 2em;
114
+ opacity: .7;
115
+ }
116
+
117
+ .divided::after {
118
+ content: "";
119
+ @include divider;
120
+ }
121
+
122
+ .home {
123
+ max-width: 24em;
124
+ margin: auto;
125
+ padding: 1em 1em;
126
+ }
127
+
128
+ .content-title {
129
+ font-size: 1.5em;
130
+ margin-bottom: 1em;
131
+ text-align: center;
132
+ }
133
+
134
+ .post-date {
135
+ color: $muted-text-color;
136
+ display: block;
137
+ font-size: .825em;
138
+ white-space: nowrap;
139
+ text-transform: uppercase;
140
+ .post-link & {
141
+ padding: .5em 0;
142
+ }
143
+ }
144
+
145
+ .site-credits {
146
+ margin: 0 auto 2em;
147
+ padding: 0 2em;
148
+ text-align: center;
149
+ }
data/_sass/_font.scss ADDED
@@ -0,0 +1,62 @@
1
+ /* eb-garamond-regular - latin */
2
+ @font-face {
3
+ font-family: 'EB Garamond';
4
+ font-style: normal;
5
+ font-weight: 400;
6
+ font-display: auto;
7
+ src: url('#{$asset_url}/fonts/eb-garamond-v9-latin-regular.eot'); /* IE9 Compat Modes */
8
+ src: local('EB Garamond Regular'), local('EBGaramond-Regular'),
9
+ url('#{$asset_url}/fonts/eb-garamond-v9-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
10
+ url('#{$asset_url}/fonts/eb-garamond-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
11
+ url('#{$asset_url}/fonts/eb-garamond-v9-latin-regular.woff') format('woff'), /* Modern Browsers */
12
+ url('#{$asset_url}/fonts/eb-garamond-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
13
+ url('#{$asset_url}/fonts/eb-garamond-v9-latin-regular.svg#EBGaramond') format('svg'); /* Legacy iOS */
14
+ }
15
+
16
+ @font-face {
17
+ font-family: 'Brandon Grotesque';
18
+ font-style: normal;
19
+ font-weight: normal;
20
+ src: url('#{$asset_url}/fonts/BrandonGrotesque-Black.eot'); /* IE9 Compat Modes */
21
+ src: local('Brandon Grotesque Black'), url('BrandonGrotesque-Black.woff') format('woff'),
22
+ url('#{$asset_url}/fonts/BrandonGrotesque-Black.eot?#iefix') format('embedded-opentype'),
23
+ url('#{$asset_url}/fonts/BrandonGrotesque-Black.woff2') format('woff2'), /* Super Modern Browsers */
24
+ url('#{$asset_url}/fonts/BrandonGrotesque-Black.woff') format('woff'), /* Modern Browsers */
25
+ url('#{$asset_url}/fonts/BrandonGrotesque-Black.ttf') format('truetype'), /* Safari, Android, iOS */
26
+ url('#{$asset_url}/fonts/BrandonGrotesque-Black.svg#BrandonGrotesque-Black') format('svg'); /* Legacy iOS */
27
+ }
28
+
29
+ @font-face {
30
+ font-family: 'Audrey Italic';
31
+ font-style: normal;
32
+ font-weight: normal;
33
+ src: local('Audrey Italic'), url('Audrey-NormalOblique.woff') format('woff');
34
+ }
35
+
36
+ @font-face {
37
+ font-family: 'Audrey Medium';
38
+ font-style: normal;
39
+ font-weight: normal;
40
+ src: local('Audrey Medium'), url('Audrey-Medium.woff') format('woff');
41
+ }
42
+
43
+ @font-face {
44
+ font-family: 'Audrey Medium Oblique';
45
+ font-style: normal;
46
+ font-weight: normal;
47
+ src: local('Audrey Medium Oblique'), url('Audrey-MediumOblique.woff') format('woff');
48
+ }
49
+
50
+ @font-face {
51
+ font-family: 'Audrey Bold';
52
+ font-style: normal;
53
+ font-weight: normal;
54
+ src: local('Audrey Bold'), url('Audrey-Bold.woff') format('woff');
55
+ }
56
+
57
+ @font-face {
58
+ font-family: 'Audrey Bold Italic';
59
+ font-style: normal;
60
+ font-weight: normal;
61
+ src: local('Audrey Bold Italic'), url('Audrey-BoldOblique.woff') format('woff');
62
+ }
@@ -0,0 +1,35 @@
1
+ .footnote {
2
+ border: 1px solid $muted-text-color;
3
+ border-radius: 1em;
4
+ color: $text-color;
5
+ display: inline;
6
+ font-size: .75em;
7
+ font-weight: 700;
8
+ padding: 0 .75em;
9
+ text-decoration: none;
10
+ margin: 0 .25em;
11
+ &:hover,
12
+ &:focus {
13
+ background: $brand-color;
14
+ border-color: $brand-color;
15
+ }
16
+ }
17
+
18
+ .footnotes::before {
19
+ content: '';
20
+ @include divider;
21
+ margin: 4em auto;
22
+ }
23
+
24
+ .footnotes {
25
+ margin-bottom: 4em;
26
+ }
27
+
28
+ .footnotes li {
29
+ margin-bottom: 1em;
30
+ }
31
+
32
+ .reversefootnote {
33
+ font-size: .75em;
34
+ opacity: .75;
35
+ }
@@ -0,0 +1,25 @@
1
+ .site-masthead {
2
+ box-sizing: border-box;
3
+ position: relative;
4
+ text-align: center;
5
+ }
6
+
7
+ .site-masthead h1 {
8
+ font-size: 3em;
9
+ margin-bottom: 0;
10
+ margin-top: 1em;
11
+ padding: 0em;
12
+ @media (min-width: $on-tablet) {
13
+ font-size: 6em;
14
+ }
15
+ }
16
+
17
+ .site-masthead h2 {
18
+ color: $muted-text-color;
19
+ font-size: 1.25em;
20
+ margin: 0;
21
+ padding: 0em;
22
+ @media (min-width: $on-tablet) {
23
+ font-size: 3em;
24
+ }
25
+ }