├── 301.txt ├── .nvmrc ├── CNAME ├── favicon.ico ├── siteicon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── apple-touch-icon.png ├── images ├── image-600.jpg ├── image-1200.jpg ├── screenshot.png ├── screenshot_old.png ├── supply-overlay.png └── templates │ ├── jekyll │ ├── Supply-temp.png │ ├── Supply-temp-square.png │ └── Soon_Jekyll-template-sample.png │ ├── screenplay │ ├── Screenplay_Cole_Haag_template.png │ └── Screenplay_Warner_Brothers_template.png │ ├── assignments │ └── assignments_tracker_spreadsheet.png │ └── free-pdf-storyboards │ ├── Japanese_Anime_storyboard-template_1.85x1_A4-vertical.png │ ├── storyboard-anime-template_1.85x1_A4-vertical_print_preview.png │ └── storyboard-anime-template_1.85x1_A4-vertical_photoshop_preview.png ├── src ├── _styles.css ├── _lists.css ├── sup-tachyons.css ├── _code.css ├── _images.css ├── _forms.css ├── _module-template.css ├── _debug-children.css ├── _opacity.css ├── _links.css ├── _box-sizing.css ├── _font-style.css ├── _tables.css ├── _white-space.css ├── _line-height.css ├── _outlines.css ├── _word-break.css ├── _background-size.css ├── _clears.css ├── _letter-spacing.css ├── _position.css ├── _text-decoration.css ├── _utilities.css ├── _vertical-align.css ├── _text-align.css ├── _debug-grid.css ├── _media-queries.css ├── _nested.css ├── _text-transform.css ├── _visibility.css ├── _floats.css ├── _border-style.css ├── _z-index.css ├── _rotations.css ├── _box-shadow.css ├── _font-family.css ├── _borders.css ├── _colors.css ├── _border-widths.css ├── _font-weight.css ├── _type-scale.css ├── _max-widths.css ├── _typography.css ├── _overflow.css ├── tachyons.css ├── _background-position.css ├── _display.css ├── _heights.css ├── _hovers.css ├── _border-colors.css ├── _coordinates.css ├── _border-radius.css ├── _widths.css ├── _aspect-ratios.css ├── _debug.css └── _skins.css ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── robots.txt ├── _data ├── theme.yml └── navigation.yml ├── postcss.config.js ├── _includes ├── gumroad-link.html ├── video.html ├── relative-src.html ├── gumroad-overlay.html ├── gumroad-embed.html ├── product-styles.html ├── figure.html ├── Gumroad-secured.html ├── category_tag_list.html ├── post_pagination.html ├── formcarry.html ├── site-search.html ├── footer.html ├── navigation.html └── social-icon.html ├── _pages ├── contact-success.html ├── 404.md ├── privacy.md ├── support.md ├── blog.html ├── contact.html ├── faq.md ├── free-products.html └── about.md ├── .gitignore ├── _layouts ├── page.html ├── post.html ├── product.html ├── archive.html └── default.html ├── browserconfig.xml ├── Gemfile ├── site.webmanifest ├── _posts ├── 2020-04-19-post-updated.md ├── 2020-04-21-built-in-site-search.md ├── 2020-04-23-gumroad-hyperlink.md ├── 2021-08-26-jekyll-SEO.md ├── 2020-04-20-post-video.md ├── 2020-04-23-gumroad-embed.md ├── 2020-04-17-code-blocks.md ├── 2020-04-22-add-a-product-page.md ├── 2020-04-12-how-to-use-jekyll.md ├── 2020-04-23-gumroad-overlay.md ├── 2020-04-23-post-with-products.md ├── 2020-04-15-custom-variables.md └── 2020-04-12-supply-theme-setup.md ├── SECURITY.md ├── .github └── FUNDING.yml ├── safari-pinned-tab.svg ├── LICENSE ├── assets └── search.json ├── package.json ├── _products ├── assignments-tracker.md ├── supply-jekyll-e-commerce-theme.md ├── free-anime-storyboard-template-widescreen-a4-vertical.md ├── free-Japanese-anime-storyboard-template-widescreen-a4-vertical.md ├── soon-temporary-jekyll-site-template.md └── Screenplay-template-for-Apple-Pages-Warner-Brothers.md ├── index.html ├── _config.yml ├── CODE_OF_CONDUCT.md └── README.md /301.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.9.0 -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | supply.templates.supply 2 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/favicon.ico -------------------------------------------------------------------------------- /siteicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/siteicon.png -------------------------------------------------------------------------------- /favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/favicon-16x16.png -------------------------------------------------------------------------------- /favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/favicon-32x32.png -------------------------------------------------------------------------------- /mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/mstile-144x144.png -------------------------------------------------------------------------------- /mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/mstile-150x150.png -------------------------------------------------------------------------------- /mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/mstile-310x150.png -------------------------------------------------------------------------------- /mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/mstile-310x310.png -------------------------------------------------------------------------------- /mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/mstile-70x70.png -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/apple-touch-icon.png -------------------------------------------------------------------------------- /images/image-600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/image-600.jpg -------------------------------------------------------------------------------- /images/image-1200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/image-1200.jpg -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /src/_styles.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | STYLES 4 | 5 | Add custom styles here. 6 | 7 | */ 8 | 9 | -------------------------------------------------------------------------------- /images/screenshot_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/screenshot_old.png -------------------------------------------------------------------------------- /images/supply-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/supply-overlay.png -------------------------------------------------------------------------------- /android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/android-chrome-192x192.png -------------------------------------------------------------------------------- /android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/android-chrome-512x512.png -------------------------------------------------------------------------------- /images/templates/jekyll/Supply-temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/jekyll/Supply-temp.png -------------------------------------------------------------------------------- /images/templates/jekyll/Supply-temp-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/jekyll/Supply-temp-square.png -------------------------------------------------------------------------------- /src/_lists.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | LISTS 4 | http://tachyons.io/docs/elements/lists/ 5 | 6 | */ 7 | 8 | .list { list-style-type: none; } 9 | -------------------------------------------------------------------------------- /src/sup-tachyons.css: -------------------------------------------------------------------------------- 1 | /*! Supply style + Tachyons | https://github.com/YJPL/supply */ 2 | 3 | @import './tachyons'; 4 | @import './sup-theme'; 5 | -------------------------------------------------------------------------------- /images/templates/jekyll/Soon_Jekyll-template-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/jekyll/Soon_Jekyll-template-sample.png -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | sitemap: false 4 | --- 5 | User-agent: * 6 | Sitemap: {{ site.url }}/sitemap.xml 7 | User-agent: GPTBot 8 | Disallow: / -------------------------------------------------------------------------------- /src/_code.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | CODE 4 | 5 | */ 6 | 7 | .pre { 8 | overflow-x: auto; 9 | overflow-y: hidden; 10 | overflow: scroll; 11 | } 12 | -------------------------------------------------------------------------------- /images/templates/screenplay/Screenplay_Cole_Haag_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/screenplay/Screenplay_Cole_Haag_template.png -------------------------------------------------------------------------------- /images/templates/assignments/assignments_tracker_spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/assignments/assignments_tracker_spreadsheet.png -------------------------------------------------------------------------------- /images/templates/screenplay/Screenplay_Warner_Brothers_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/screenplay/Screenplay_Warner_Brothers_template.png -------------------------------------------------------------------------------- /src/_images.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | IMAGES 4 | Docs: http://tachyons.io/docs/elements/images/ 5 | 6 | */ 7 | 8 | /* Responsive images! */ 9 | 10 | img { max-width: 100%; } 11 | 12 | -------------------------------------------------------------------------------- /_data/theme.yml: -------------------------------------------------------------------------------- 1 | # UI Default Settings 2 | category_tag_list : true # Show post categories & tags 3 | 4 | # UI Default Text 5 | text: 6 | # Post Settings 7 | updated : Updated 8 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [ 3 | require('postcss-import'), 4 | require('postcss-nested'), 5 | require('postcss-preset-env'), 6 | require('autoprefixer') 7 | ] 8 | }; -------------------------------------------------------------------------------- /_includes/gumroad-link.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /_includes/video.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | -------------------------------------------------------------------------------- /_includes/relative-src.html: -------------------------------------------------------------------------------- 1 | {% assign prefix = include.src | slice: 0, 2 %}{% assign protocol = include.src | slice: 0, 4 %}{% unless protocol == 'http' or prefix == "//" %}{{ site.baseurl }}{% endunless %}{{ include.src }} 2 | -------------------------------------------------------------------------------- /images/templates/free-pdf-storyboards/Japanese_Anime_storyboard-template_1.85x1_A4-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/free-pdf-storyboards/Japanese_Anime_storyboard-template_1.85x1_A4-vertical.png -------------------------------------------------------------------------------- /_pages/contact-success.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: We'll be in touch 3 | hero: We'll be in touch 4 | sitemap: false 5 | --- 6 | 7 |

Success

8 |

Your message is sent. We'll be in touch soon.

9 | -------------------------------------------------------------------------------- /images/templates/free-pdf-storyboards/storyboard-anime-template_1.85x1_A4-vertical_print_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/free-pdf-storyboards/storyboard-anime-template_1.85x1_A4-vertical_print_preview.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .git 3 | .bundle 4 | .DS_Store 5 | _asset_bundler_cache 6 | _site 7 | _drafts 8 | .jekyll-metadata 9 | .jekyll-cache 10 | codekit-config.json 11 | config.codekit3 12 | Gemfile.lock 13 | node_modules 14 | npm-debug.log* 15 | .nova -------------------------------------------------------------------------------- /images/templates/free-pdf-storyboards/storyboard-anime-template_1.85x1_A4-vertical_photoshop_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/Supply/HEAD/images/templates/free-pdf-storyboards/storyboard-anime-template_1.85x1_A4-vertical_photoshop_preview.png -------------------------------------------------------------------------------- /_includes/gumroad-overlay.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ include.button }} {{ page.text-button }} -------------------------------------------------------------------------------- /src/_forms.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | FORMS 4 | 5 | */ 6 | 7 | .input-reset { 8 | -webkit-appearance: none; 9 | -moz-appearance: none; 10 | } 11 | 12 | .button-reset::-moz-focus-inner, 13 | .input-reset::-moz-focus-inner { 14 | border: 0; 15 | padding: 0; 16 | } 17 | -------------------------------------------------------------------------------- /_data/navigation.yml: -------------------------------------------------------------------------------- 1 | - name: Products 2 | link: / 3 | new_window: false 4 | highlight: true 5 | - name: About 6 | link: /about/ 7 | new_window: false 8 | highlight: false 9 | - name: Contact 10 | link: /contact/ 11 | new_window: false 12 | highlight: false 13 | -------------------------------------------------------------------------------- /_includes/gumroad-embed.html: -------------------------------------------------------------------------------- 1 |
2 | Loading... 3 |
4 | 5 | 6 | -------------------------------------------------------------------------------- /_pages/404.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Not Found 3 | hero: This does not exist 4 | permalink: /404.html 5 | sitemap: false 6 | --- 7 | 8 | ## 404 9 | Sorry, but the page you were trying to view is gone amiss---perhaps you can try a site search to find it. 10 | 11 | {% include site-search.html %} 12 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |
5 |
6 |
7 | {{ content }} 8 |
9 |
10 |
11 | -------------------------------------------------------------------------------- /browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #ffffff 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | git_source(:github) {|supply| "https://github.com/YJPL/{supply}" } 4 | 5 | gem "jekyll" 6 | 7 | group :jekyll_plugins do 8 | gem "jekyll-leaflet" 9 | gem 'jekyll-seo-tag' 10 | gem 'jekyll-sitemap' 11 | gem 'jekyll-feed' 12 | gem 'jekyll-archives' 13 | end -------------------------------------------------------------------------------- /_includes/product-styles.html: -------------------------------------------------------------------------------- 1 |
2 | {% for product in site.product %} 3 |
4 | 5 | 6 |
7 | {% endfor %} 8 |
9 | -------------------------------------------------------------------------------- /src/_module-template.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | MODULE NAME 4 | 5 | Use this scaffolding to create or extend your own modules with tachyons 6 | style architecture. 7 | 8 | */ 9 | 10 | 11 | @media (--breakpoint-not-small) { 12 | 13 | } 14 | 15 | @media (--breakpoint-medium) { 16 | 17 | } 18 | 19 | @media (--breakpoint-large) { 20 | 21 | } 22 | 23 | -------------------------------------------------------------------------------- /src/_debug-children.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | DEBUG CHILDREN 4 | Docs: http://tachyons.io/docs/debug/ 5 | 6 | Just add the debug class to any element to see outlines on its 7 | children. 8 | 9 | */ 10 | 11 | .debug * { outline: 1px solid gold; } 12 | .debug-white * { outline: 1px solid white; } 13 | .debug-black * { outline: 1px solid black; } 14 | 15 | -------------------------------------------------------------------------------- /_pages/privacy.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Privacy 3 | permalink: /privacy/ 4 | hero: Privacy 5 | --- 6 | 7 | This website does not collect or store any data and does not use cookies or tracking/analytics services. 8 | 9 | This site uses the Gumroad e-commerce platform. Please refer to [Gumroad's privacy policy](https://gumroad.com/privacy) for further information. 10 | -------------------------------------------------------------------------------- /_includes/figure.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | {% if include.alt %}{{ include.alt }}{% endif %} 5 | {% if include.caption %} 6 |
7 | {{ include.caption | markdownify | remove: "

" | remove: "

" }} 8 |
9 | {% endif %} 10 |
11 |
12 | -------------------------------------------------------------------------------- /_pages/support.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Support / Terms 3 | permalink: /support/ 4 | hero: Support 5 | --- 6 | 7 | ### Shipping 8 | 9 | Add your company shipping terms here. 10 | 11 | ### Returns 12 | 13 | Add your company return policy here. 14 | 15 | 16 | ### Support and contact 17 | 18 | For any question about a template, feel free to [reach out](/contact/). 19 | Please write about your issue, inquiry or suggestion in detail to help us help you. 20 | -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |
5 |
6 |
7 | {{ content }} 8 | 9 | {% if site.data.theme.category_tag_list %} 10 | {% include category_tag_list.html %} 11 | {% endif %} 12 | 13 |
14 |
15 | {% include post_pagination.html %} 16 |
17 | -------------------------------------------------------------------------------- /src/_opacity.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | OPACITY 4 | Docs: http://tachyons.io/docs/themes/opacity/ 5 | 6 | */ 7 | 8 | .o-100 { opacity: 1; } 9 | .o-90 { opacity: .9; } 10 | .o-80 { opacity: .8; } 11 | .o-70 { opacity: .7; } 12 | .o-60 { opacity: .6; } 13 | .o-50 { opacity: .5; } 14 | .o-40 { opacity: .4; } 15 | .o-30 { opacity: .3; } 16 | .o-20 { opacity: .2; } 17 | .o-10 { opacity: .1; } 18 | .o-05 { opacity: .05; } 19 | .o-025 { opacity: .025; } 20 | .o-0 { opacity: 0; } 21 | -------------------------------------------------------------------------------- /site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "short_name": "", 4 | "icons": [ 5 | { 6 | "src": "/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "/android-chrome-512x512.png", 12 | "sizes": "512x512", 13 | "type": "image/png" 14 | } 15 | ], 16 | "theme_color": "#ffffff", 17 | "background_color": "#ffffff", 18 | "display": "standalone" 19 | } 20 | -------------------------------------------------------------------------------- /src/_links.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | LINKS 4 | Docs: http://tachyons.io/docs/elements/links/ 5 | 6 | */ 7 | 8 | .link { 9 | text-decoration: none; 10 | transition: color .15s ease-in; 11 | } 12 | 13 | .link:link, 14 | .link:visited { 15 | transition: color .15s ease-in; 16 | } 17 | .link:hover { 18 | transition: color .15s ease-in; 19 | } 20 | .link:active { 21 | transition: color .15s ease-in; 22 | } 23 | .link:focus { 24 | transition: color .15s ease-in; 25 | outline: 1px dotted currentColor; 26 | } 27 | 28 | -------------------------------------------------------------------------------- /_posts/2020-04-19-post-updated.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: This is an updated post 3 | layout: post 4 | date: 2020-04-19 13:20:50 +0100 5 | last_modified_at: '2020-05-17' 6 | description_markdown: >- 7 | Start a blog or a static site with Jekyll. 8 | date: 2020-04-16 12:48:59 +0100 9 | image: /images/templates/assignments/assignments_tracker_spreadsheet.png 10 | categories: [Jekyll, tutorial] 11 | tags: [updated] 12 | --- 13 | This is a recently updated blog post example. Add `last_modified_at: YYYY-MM-DD` in any posts YAML front-matter. Your sitemap will be automatically updated. 14 | -------------------------------------------------------------------------------- /src/_box-sizing.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | BOX SIZING 4 | 5 | */ 6 | 7 | html, 8 | body, 9 | div, 10 | article, 11 | aside, 12 | section, 13 | main, 14 | nav, 15 | footer, 16 | header, 17 | form, 18 | fieldset, 19 | legend, 20 | pre, 21 | code, 22 | a, 23 | h1,h2,h3,h4,h5,h6, 24 | p, 25 | ul, 26 | ol, 27 | li, 28 | dl, 29 | dt, 30 | dd, 31 | blockquote, 32 | figcaption, 33 | figure, 34 | textarea, 35 | table, 36 | td, 37 | th, 38 | tr, 39 | input[type="email"], 40 | input[type="number"], 41 | input[type="password"], 42 | input[type="tel"], 43 | input[type="text"], 44 | input[type="url"], 45 | .border-box { 46 | box-sizing: border-box; 47 | } 48 | 49 | -------------------------------------------------------------------------------- /_posts/2020-04-21-built-in-site-search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Site Search 3 | layout: post 4 | description_markdown: >- 5 | Built-in site search functionality. 6 | date: 2020-04-21 12:48:49 +0100 7 | image: 8 | categories: [Jekyll, tutorial, search] 9 | --- 10 | ## Built-in site search functionality 11 | 12 | The Supply theme has **search** baked in to prompt the pages relevant to any given inquiry. To display a search box on a post or a page, you need to add one line of code. This snippet 13 | 14 | ```liquid 15 | {% raw %}{% include site-search.html %}{% endraw %} 16 | ``` 17 | 18 | Will output the following: 19 | 20 | {% include site-search.html %} 21 | -------------------------------------------------------------------------------- /_includes/Gumroad-secured.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | Use this section to tell people about which versions of your project are 6 | currently being supported with security updates. 7 | 8 | | Version | Supported | 9 | | ------- | ------------------ | 10 | | 5.1.x | :white_check_mark: | 11 | | 5.0.x | :x: | 12 | | 4.0.x | :white_check_mark: | 13 | | < 4.0 | :x: | 14 | 15 | ## Reporting a Vulnerability 16 | 17 | Use this section to tell people how to report a vulnerability. 18 | 19 | Tell them where to go, how often they can expect to get an update on a 20 | reported vulnerability, what to expect if the vulnerability is accepted or 21 | declined, etc. 22 | -------------------------------------------------------------------------------- /src/_font-style.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | FONT STYLE 4 | Docs: http://tachyons.io/docs/typography/font-style/ 5 | 6 | Media Query Extensions: 7 | -ns = not-small 8 | -m = medium 9 | -l = large 10 | 11 | */ 12 | 13 | .i { font-style: italic; } 14 | .fs-normal { font-style: normal; } 15 | 16 | @media (--breakpoint-not-small) { 17 | .i-ns { font-style: italic; } 18 | .fs-normal-ns { font-style: normal; } 19 | } 20 | 21 | @media (--breakpoint-medium) { 22 | .i-m { font-style: italic; } 23 | .fs-normal-m { font-style: normal; } 24 | } 25 | 26 | @media (--breakpoint-large) { 27 | .i-l { font-style: italic; } 28 | .fs-normal-l { font-style: normal; } 29 | } 30 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [YJPL] 2 | patreon: # Replace with a single Patreon username 3 | open_collective: # Replace with a single Open Collective username 4 | ko_fi: # Replace with a single Ko-fi username 5 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 6 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 7 | liberapay: # Replace with a single Liberapay username 8 | issuehunt: # Replace with a single IssueHunt username 9 | otechie: # Replace with a single Otechie username 10 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 11 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 12 | -------------------------------------------------------------------------------- /safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | Created by potrace 1.11, written by Peter Selinger 2001-2013 9 | 10 | 12 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/_tables.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | TABLES 4 | Docs: http://tachyons.io/docs/elements/tables/ 5 | 6 | */ 7 | 8 | .collapse { 9 | border-collapse: collapse; 10 | border-spacing: 0; 11 | } 12 | 13 | .striped--light-silver:nth-child(odd) { 14 | background-color: var(--light-silver); 15 | } 16 | 17 | .striped--moon-gray:nth-child(odd) { 18 | background-color: var(--moon-gray); 19 | } 20 | 21 | .striped--light-gray:nth-child(odd) { 22 | background-color: var(--light-gray); 23 | } 24 | 25 | .striped--near-white:nth-child(odd) { 26 | background-color: var(--near-white); 27 | } 28 | 29 | .stripe-light:nth-child(odd) { 30 | background-color: var(--white-10); 31 | } 32 | 33 | .stripe-dark:nth-child(odd) { 34 | background-color: var(--black-10); 35 | } 36 | -------------------------------------------------------------------------------- /src/_white-space.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | WHITE SPACE 4 | 5 | Media Query Extensions: 6 | -ns = not-small 7 | -m = medium 8 | -l = large 9 | 10 | */ 11 | 12 | 13 | .ws-normal { white-space: normal; } 14 | .nowrap { white-space: nowrap; } 15 | .pre { white-space: pre; } 16 | 17 | @media (--breakpoint-not-small) { 18 | .ws-normal-ns { white-space: normal; } 19 | .nowrap-ns { white-space: nowrap; } 20 | .pre-ns { white-space: pre; } 21 | } 22 | 23 | @media (--breakpoint-medium) { 24 | .ws-normal-m { white-space: normal; } 25 | .nowrap-m { white-space: nowrap; } 26 | .pre-m { white-space: pre; } 27 | } 28 | 29 | @media (--breakpoint-large) { 30 | .ws-normal-l { white-space: normal; } 31 | .nowrap-l { white-space: nowrap; } 32 | .pre-l { white-space: pre; } 33 | } 34 | 35 | -------------------------------------------------------------------------------- /src/_line-height.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | LINE HEIGHT / LEADING 4 | Docs: http://tachyons.io/docs/typography/line-height 5 | 6 | Media Query Extensions: 7 | -ns = not-small 8 | -m = medium 9 | -l = large 10 | 11 | */ 12 | 13 | .lh-solid { line-height: 1; } 14 | .lh-title { line-height: 1.25; } 15 | .lh-copy { line-height: 1.5; } 16 | 17 | @media (--breakpoint-not-small) { 18 | .lh-solid-ns { line-height: 1; } 19 | .lh-title-ns { line-height: 1.25; } 20 | .lh-copy-ns { line-height: 1.5; } 21 | } 22 | 23 | @media (--breakpoint-medium) { 24 | .lh-solid-m { line-height: 1; } 25 | .lh-title-m { line-height: 1.25; } 26 | .lh-copy-m { line-height: 1.5; } 27 | } 28 | 29 | @media (--breakpoint-large) { 30 | .lh-solid-l { line-height: 1; } 31 | .lh-title-l { line-height: 1.25; } 32 | .lh-copy-l { line-height: 1.5; } 33 | } 34 | 35 | -------------------------------------------------------------------------------- /src/_outlines.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | OUTLINES 4 | 5 | Media Query Extensions: 6 | -ns = not-small 7 | -m = medium 8 | -l = large 9 | 10 | */ 11 | 12 | .outline { outline: 1px solid; } 13 | .outline-transparent { outline: 1px solid transparent; } 14 | .outline-0 { outline: 0; } 15 | 16 | @media (--breakpoint-not-small) { 17 | .outline-ns { outline: 1px solid; } 18 | .outline-transparent-ns { outline: 1px solid transparent; } 19 | .outline-0-ns { outline: 0; } 20 | } 21 | 22 | @media (--breakpoint-medium) { 23 | .outline-m { outline: 1px solid; } 24 | .outline-transparent-m { outline: 1px solid transparent; } 25 | .outline-0-m { outline: 0; } 26 | } 27 | 28 | @media (--breakpoint-large) { 29 | .outline-l { outline: 1px solid; } 30 | .outline-transparent-l { outline: 1px solid transparent; } 31 | .outline-0-l { outline: 0; } 32 | } 33 | -------------------------------------------------------------------------------- /src/_word-break.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | WORD BREAK 4 | 5 | Base: 6 | word = word-break 7 | 8 | Media Query Extensions: 9 | -ns = not-small 10 | -m = medium 11 | -l = large 12 | 13 | */ 14 | 15 | .word-normal { word-break: normal; } 16 | .word-wrap { word-break: break-all; } 17 | .word-nowrap { word-break: keep-all; } 18 | 19 | @media (--breakpoint-not-small) { 20 | .word-normal-ns { word-break: normal; } 21 | .word-wrap-ns { word-break: break-all; } 22 | .word-nowrap-ns { word-break: keep-all; } 23 | } 24 | 25 | @media (--breakpoint-medium) { 26 | .word-normal-m { word-break: normal; } 27 | .word-wrap-m { word-break: break-all; } 28 | .word-nowrap-m { word-break: keep-all; } 29 | } 30 | 31 | @media (--breakpoint-large) { 32 | .word-normal-l { word-break: normal; } 33 | .word-wrap-l { word-break: break-all; } 34 | .word-nowrap-l { word-break: keep-all; } 35 | } 36 | 37 | -------------------------------------------------------------------------------- /_includes/category_tag_list.html: -------------------------------------------------------------------------------- 1 |