--------------------------------------------------------------------------------
/exampleSite/content/about.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "About"
3 | description = "Hugo, the world’s fastest framework for building websites"
4 | date = "2019-02-28"
5 | aliases = ["about-us","about-hugo","contact"]
6 | author = "Hugo Authors"
7 | +++
8 |
9 | Written in Go, Hugo is an open source static site generator available under the [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.
10 |
11 | Hugo makes use of a variety of open source projects including:
12 |
13 | * https://github.com/russross/blackfriday
14 | * https://github.com/alecthomas/chroma
15 | * https://github.com/muesli/smartcrop
16 | * https://github.com/spf13/cobra
17 | * https://github.com/spf13/viper
18 |
19 | Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.
20 |
21 | Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.
22 |
23 | Websites built with Hugo are extremelly fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.
24 |
25 | Learn more and contribute on [GitHub](https://github.com/gohugoio).
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/layouts/partials/share.html:
--------------------------------------------------------------------------------
1 | {{ if ne .Params.share false}}
2 |
3 |
4 | {{ if eq .Site.LanguageCode "ja" }}
5 |
6 | {{ else }}
7 |
8 | {{ end }}
9 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Inkblotty
2 | Inkblotty is a Hugo theme based on [Inkblot](https://github.com/mgsisk/inkblot).
3 |
4 | [Demo](https://hugo-theme-inkblotty.netlify.com)
5 |
6 | ## Features
7 |
8 | - Responsive Design
9 | - Article
10 | - Share Button (Facebook, Twitter, Hatena Bookmark)
11 | - Comment form (Disqus)
12 | - Related Posts
13 | - Table of Contents (front matter or shortcode)
14 | - Article list
15 | - Summarize and Readmore
16 | - Sidebar
17 | - Category list
18 | - Tag cloud
19 | - Recent Posts
20 | - Archives
21 | - Others
22 | - Google Analytics
23 | - Sitemap XML
24 | - RSS
25 | - Opengraph / Twitter Card
26 |
27 | ## Installation
28 | 1. Put theme directory into `themes` of your hugo site.
29 | - Run git command in `themes` directory:
30 | ```
31 | git clone https://github.com/tosi29/inkblotty.git
32 | ```
33 | - Or, download and extract [zip file](https://github.com/tosi29/inkblotty/archive/master.zip), and put directory into `themes` directory as `inkblotty`.
34 |
35 | 2. Edit `config.toml` of your hugo site.
36 |
37 | ## Configuration
38 | ### Sample configuration file
39 | [exampleSite/config.toml](https://github.com/tosi29/inkblotty/blob/master/exampleSite/config.toml) is for reference.
40 |
41 | ### Table of Contents
42 | There are two ways to show a table of contents:
43 |
44 | - Set `toc: true` in the page front matter to automatically render the table of contents near the top of the article.
45 | - Insert the shortcode manually where you want the table of contents to appear:
46 | ```
47 | {{< toc >}}
48 | ```
49 |
50 | This is sample configuration of TOC in `config.toml`
51 | ```
52 | [markup]
53 | [markup.tableOfContents]
54 | startLevel = 1
55 | endLevel = 3
56 | ordered = false
57 | ```
58 | If you set `startLevel = 2`, `
` tag is ignored.
59 |
60 |
61 | ### Favicon
62 | Put `favicon.ico` file in `static` directory to set favicon.
63 |
--------------------------------------------------------------------------------
/exampleSite/content/post/emoji-support.md:
--------------------------------------------------------------------------------
1 | +++
2 | author = "Hugo Authors"
3 | title = "Emoji Support"
4 | date = "2019-03-05"
5 | description = "Guide to emoji usage in Hugo"
6 | tags = [
7 | "emoji",
8 | ]
9 | archives = "2019/03"
10 | +++
11 |
12 | Emoji can be enabled in a Hugo project in a number of ways.
13 |
14 | The [`emojify`](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).
15 |
16 | To enable emoji globally, set `enableEmoji` to `true` in your site's [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g.
17 |
18 |
🙈:see_no_evil:🙉:hear_no_evil:🙊:speak_no_evil:
19 |
20 |
21 | The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes.
22 |
23 | ***
24 |
25 | **N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.
26 |
27 | {{< highlight html >}}
28 | .emoji {
29 | font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
30 | }
31 | {{< /highlight >}}
32 |
33 | {{< css.inline >}}
34 |
47 | {{< /css.inline >}}
48 |
--------------------------------------------------------------------------------
/layouts/_default/summary.html:
--------------------------------------------------------------------------------
1 |
2 | {{- if .Params.thumbnail }}
3 |
4 |
5 |
6 |
7 |
8 | {{- end }}
9 |
27 | {{ .Summary }}
28 |
29 | {{- if .Site.Params.readmore }}
30 | {{- if .Truncated }}
31 | Read more
32 | {{- end }}
33 | {{- end }}
34 |
35 |
36 |
37 |
62 |
63 |
--------------------------------------------------------------------------------
/exampleSite/content/post/math-typesetting.md:
--------------------------------------------------------------------------------
1 | ---
2 | author: Hugo Authors
3 | title: Math Typesetting
4 | date: 2019-03-08
5 | description: A brief guide to setup KaTeX
6 | math: true
7 | ---
8 |
9 | Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.
10 |
11 |
12 | In this example we will be using [KaTeX](https://katex.org/)
13 |
14 | - Create a partial under `/layouts/partials/math.html`
15 | - Within this partial reference the [Auto-render Extension](https://katex.org/docs/autorender.html) or host these scripts locally.
16 | - Include the partial in your templates like so:
17 |
18 | ```bash
19 | {{ if or .Params.math .Site.Params.math }}
20 | {{ partial "math.html" . }}
21 | {{ end }}
22 | ```
23 |
24 | - To enable KaTex globally set the parameter `math` to `true` in a project's configuration
25 | - To enable KaTex on a per page basis include the parameter `math: true` in content files
26 |
27 | **Note:** Use the online reference of [Supported TeX Functions](https://katex.org/docs/supported.html)
28 |
29 | {{< math.inline >}}
30 | {{ if or .Page.Params.math .Site.Params.math }}
31 |
32 |
33 |
34 |
35 | {{ end }}
36 | {{ math.inline >}}
37 |
38 | ### Examples
39 |
40 | {{< math.inline >}}
41 |
27 |
28 |
29 |
30 |
55 | {{ partial "ad_double_rectangle.html" . }}
56 | {{ partial "relatedposts.html" . }}
57 |
58 |
59 | {{ if eq .Page.Type "post" }}
60 |
74 |
75 | {{ template "_internal/disqus.html" . }}
76 |
77 | {{ end }}
78 |
79 |
80 |
81 | {{ end }}
--------------------------------------------------------------------------------
/exampleSite/content/post/placeholder-text.md:
--------------------------------------------------------------------------------
1 | +++
2 | author = "Hugo Authors"
3 | title = "Placeholder Text"
4 | date = "2019-03-09"
5 | description = "Lorem Ipsum Dolor Si Amet"
6 | tags = [
7 | "markdown",
8 | "text",
9 | ]
10 | archives = "2019/03"
11 | +++
12 |
13 | Lorem est tota propiore conpellat pectoribus de pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
14 |
15 | 1. Exierant elisi ambit vivere dedere
16 | 2. Duce pollice
17 | 3. Eris modo
18 | 4. Spargitque ferrea quos palude
19 |
20 | Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria tractus malis.
21 |
22 | 1. Comas hunc haec pietate fetum procerum dixit
23 | 2. Post torum vates letum Tiresia
24 | 3. Flumen querellas
25 | 4. Arcanaque montibus omnes
26 | 5. Quidem et
27 |
28 | # Vagus elidunt
29 |
30 |
31 |
32 | [The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
33 |
34 | ## Mane refeci capiebant unda mulcebat
35 |
36 | Victa caducifer, malo vulnere contra dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
37 |
38 | Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae vulnus haerentia iuste et exercebat, sui et.
39 |
40 | Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem Propoetides **parte**.
41 |
42 | {{< css.inline >}}
43 |
46 | {{< /css.inline >}}
47 |
--------------------------------------------------------------------------------
/exampleSite/content/post/markdown-syntax.md:
--------------------------------------------------------------------------------
1 | +++
2 | author = "Hugo Authors"
3 | title = "Markdown Syntax Guide"
4 | date = "2019-03-11"
5 | description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
6 | tags = [
7 | "markdown",
8 | "css",
9 | "html",
10 | "themes",
11 | ]
12 | categories = [
13 | "themes",
14 | "syntax",
15 | ]
16 | archives = "2019/03"
17 | #series = ["Themes Guide"]
18 | aliases = ["migrate-from-jekyl"]
19 | +++
20 |
21 | This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
22 |
23 |
24 | ## Headings
25 |
26 | The following HTML `
`—`
` elements represent six levels of section headings. `
` is the highest section level while `
` is the lowest.
27 |
28 | # H1
29 | ## H2
30 | ### H3
31 | #### H4
32 | ##### H5
33 | ###### H6
34 |
35 | ## Paragraph
36 |
37 | Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
38 |
39 | Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
40 |
41 | ## Blockquotes
42 |
43 | The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
44 |
45 | #### Blockquote without attribution
46 |
47 | > Tiam, ad mint andaepu dandae nostion secatur sequo quae.
48 | > **Note** that you can use *Markdown syntax* within a blockquote.
49 |
50 | #### Blockquote with attribution
51 |
52 | > Don't communicate by sharing memory, share memory by communicating.
53 | > — Rob Pike[^1]
54 |
55 | [^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
56 |
57 | ## Tables
58 |
59 | Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
60 |
61 | Name | Age
62 | --------|------
63 | Bob | 27
64 | Alice | 23
65 |
66 | #### Inline Markdown within tables
67 |
68 | | Italics | Bold | Code |
69 | | -------- | -------- | ------ |
70 | | *italics* | **bold** | `code` |
71 |
72 | ## Code Blocks
73 |
74 | #### Code block with backticks
75 |
76 | ```html
77 |
78 |
79 |
80 |
81 | Example HTML5 Document
82 |
83 |
84 |
112 |
113 |
114 | {{< /highlight >}}
115 |
116 | ## List Types
117 |
118 | #### Ordered List
119 |
120 | 1. First item
121 | 2. Second item
122 | 3. Third item
123 |
124 | #### Unordered List
125 |
126 | * List item
127 | * Another item
128 | * And another item
129 |
130 | #### Nested list
131 |
132 | * Fruit
133 | * Apple
134 | * Orange
135 | * Banana
136 | * Dairy
137 | * Milk
138 | * Cheese
139 |
140 | ## Other Elements — abbr, sub, sup, kbd, mark
141 |
142 | GIF is a bitmap image format.
143 |
144 | H2O
145 |
146 | Xn + Yn = Zn
147 |
148 | Press CTRL+ALT+Delete to end the session.
149 |
150 | Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
151 |
--------------------------------------------------------------------------------
/static/css/syntax.css:
--------------------------------------------------------------------------------
1 | /* GitHub Style */
2 | /* hugo gen chromastyles --style=github > syntax.css */
3 |
4 | /* Background */ .chroma { background-color: #ffffff }
5 | /* Other */ .chroma .x { }
6 | /* Error */ .chroma .err { color: #a61717; background-color: #e3d2d2 }
7 | /* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
8 | /* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: auto; overflow: auto; display: block; }
9 | /* LineHighlight */ .chroma .hl { display: block; width: 100%;background-color: #ffffcc }
10 | /* LineNumbersTable */ .chroma .lnt { margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
11 | /* LineNumbers */ .chroma .ln { margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
12 | /* Keyword */ .chroma .k { color: #000000; font-weight: bold }
13 | /* KeywordConstant */ .chroma .kc { color: #000000; font-weight: bold }
14 | /* KeywordDeclaration */ .chroma .kd { color: #000000; font-weight: bold }
15 | /* KeywordNamespace */ .chroma .kn { color: #000000; font-weight: bold }
16 | /* KeywordPseudo */ .chroma .kp { color: #000000; font-weight: bold }
17 | /* KeywordReserved */ .chroma .kr { color: #000000; font-weight: bold }
18 | /* KeywordType */ .chroma .kt { color: #445588; font-weight: bold }
19 | /* Name */ .chroma .n { }
20 | /* NameAttribute */ .chroma .na { color: #008080 }
21 | /* NameBuiltin */ .chroma .nb { color: #0086b3 }
22 | /* NameBuiltinPseudo */ .chroma .bp { color: #999999 }
23 | /* NameClass */ .chroma .nc { color: #445588; font-weight: bold }
24 | /* NameConstant */ .chroma .no { color: #008080 }
25 | /* NameDecorator */ .chroma .nd { color: #3c5d5d; font-weight: bold }
26 | /* NameEntity */ .chroma .ni { color: #800080 }
27 | /* NameException */ .chroma .ne { color: #990000; font-weight: bold }
28 | /* NameFunction */ .chroma .nf { color: #990000; font-weight: bold }
29 | /* NameFunctionMagic */ .chroma .fm { }
30 | /* NameLabel */ .chroma .nl { color: #990000; font-weight: bold }
31 | /* NameNamespace */ .chroma .nn { color: #555555 }
32 | /* NameOther */ .chroma .nx { }
33 | /* NameProperty */ .chroma .py { }
34 | /* NameTag */ .chroma .nt { color: #000080 }
35 | /* NameVariable */ .chroma .nv { color: #008080 }
36 | /* NameVariableClass */ .chroma .vc { color: #008080 }
37 | /* NameVariableGlobal */ .chroma .vg { color: #008080 }
38 | /* NameVariableInstance */ .chroma .vi { color: #008080 }
39 | /* NameVariableMagic */ .chroma .vm { }
40 | /* Literal */ .chroma .l { }
41 | /* LiteralDate */ .chroma .ld { }
42 | /* LiteralString */ .chroma .s { color: #dd1144 }
43 | /* LiteralStringAffix */ .chroma .sa { color: #dd1144 }
44 | /* LiteralStringBacktick */ .chroma .sb { color: #dd1144 }
45 | /* LiteralStringChar */ .chroma .sc { color: #dd1144 }
46 | /* LiteralStringDelimiter */ .chroma .dl { color: #dd1144 }
47 | /* LiteralStringDoc */ .chroma .sd { color: #dd1144 }
48 | /* LiteralStringDouble */ .chroma .s2 { color: #dd1144 }
49 | /* LiteralStringEscape */ .chroma .se { color: #dd1144 }
50 | /* LiteralStringHeredoc */ .chroma .sh { color: #dd1144 }
51 | /* LiteralStringInterpol */ .chroma .si { color: #dd1144 }
52 | /* LiteralStringOther */ .chroma .sx { color: #dd1144 }
53 | /* LiteralStringRegex */ .chroma .sr { color: #009926 }
54 | /* LiteralStringSingle */ .chroma .s1 { color: #dd1144 }
55 | /* LiteralStringSymbol */ .chroma .ss { color: #990073 }
56 | /* LiteralNumber */ .chroma .m { color: #009999 }
57 | /* LiteralNumberBin */ .chroma .mb { color: #009999 }
58 | /* LiteralNumberFloat */ .chroma .mf { color: #009999 }
59 | /* LiteralNumberHex */ .chroma .mh { color: #009999 }
60 | /* LiteralNumberInteger */ .chroma .mi { color: #009999 }
61 | /* LiteralNumberIntegerLong */ .chroma .il { color: #009999 }
62 | /* LiteralNumberOct */ .chroma .mo { color: #009999 }
63 | /* Operator */ .chroma .o { color: #000000; font-weight: bold }
64 | /* OperatorWord */ .chroma .ow { color: #000000; font-weight: bold }
65 | /* Punctuation */ .chroma .p { }
66 | /* Comment */ .chroma .c { color: #999988; font-style: italic }
67 | /* CommentHashbang */ .chroma .ch { color: #999988; font-style: italic }
68 | /* CommentMultiline */ .chroma .cm { color: #999988; font-style: italic }
69 | /* CommentSingle */ .chroma .c1 { color: #999988; font-style: italic }
70 | /* CommentSpecial */ .chroma .cs { color: #999999; font-weight: bold; font-style: italic }
71 | /* CommentPreproc */ .chroma .cp { color: #999999; font-weight: bold; font-style: italic }
72 | /* CommentPreprocFile */ .chroma .cpf { color: #999999; font-weight: bold; font-style: italic }
73 | /* Generic */ .chroma .g { }
74 | /* GenericDeleted */ .chroma .gd { color: #000000; background-color: #ffdddd }
75 | /* GenericEmph */ .chroma .ge { color: #000000; font-style: italic }
76 | /* GenericError */ .chroma .gr { color: #aa0000 }
77 | /* GenericHeading */ .chroma .gh { color: #999999 }
78 | /* GenericInserted */ .chroma .gi { color: #000000; background-color: #ddffdd }
79 | /* GenericOutput */ .chroma .go { color: #888888 }
80 | /* GenericPrompt */ .chroma .gp { color: #555555 }
81 | /* GenericStrong */ .chroma .gs { font-weight: bold }
82 | /* GenericSubheading */ .chroma .gu { color: #aaaaaa }
83 | /* GenericTraceback */ .chroma .gt { color: #aa0000 }
84 | /* GenericUnderline */ .chroma .gl { text-decoration: underline }
85 | /* TextWhitespace */ .chroma .w { color: #bbbbbb }
86 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
--------------------------------------------------------------------------------
/static/css/style.css:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";
2 | /*
3 | Theme Name: Inkblot
4 | Theme URI: https://github.com/mgsisk/inkblot
5 | Author: Michael Sisk
6 | Author URI: http://mgsisk.com
7 | License: GPLv3
8 | License URI: https://www.gnu.org/licenses/gpl.html
9 | Version: 4.5.2
10 | Description: Elegant, fully responsive, highly customizable Webcomic-ready theme named in honor of Rorschach from the Watchmen graphic novel.
11 | Tags: black, blue, brown, gray, green, orange, pink, purple, red, silver, tan, white, yellow, dark, light, one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, fixed-layout, fluid-layout, flexible-header, responsive-layout, accessibility-ready, blavatar, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-image-header, featured-images, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
12 | Text Domain: inkblot
13 | Webcomic: 4.3
14 | */
15 | /**
16 | * ===== PLEASE READ THIS ======================================================
17 | * You can make most common style modifications – including adding custom CSS –
18 | * using the Customizer. If you want to make extensive theme modifications you
19 | * should create a child theme.
20 | * =============================================================================
21 | */
22 | @font-face {
23 | font-family: 'awesome';
24 | font-style: normal;
25 | font-weight: normal;
26 | src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot");
27 | src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff") format("woff"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.ttf") format("truetype"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.svg#fontawesomeregular") format("svg"); }
28 | /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
29 | /**
30 | * 1. Set default font family to sans-serif.
31 | * 2. Prevent iOS text size adjust after orientation change, without disabling
32 | * user zoom.
33 | */
34 | html {
35 | font-family: sans-serif;
36 | /* 1 */
37 | -ms-text-size-adjust: 100%;
38 | /* 2 */
39 | -webkit-text-size-adjust: 100%;
40 | /* 2 */ }
41 |
42 | /**
43 | * Remove default margin.
44 | */
45 | body {
46 | margin: 0; }
47 |
48 | /* HTML5 display definitions
49 | ========================================================================== */
50 | /**
51 | * Correct `block` display not defined for any HTML5 element in IE 8/9.
52 | * Correct `block` display not defined for `details` or `summary` in IE 10/11
53 | * and Firefox.
54 | * Correct `block` display not defined for `main` in IE 11.
55 | */
56 | article,
57 | aside,
58 | details,
59 | figcaption,
60 | figure,
61 | footer,
62 | header,
63 | hgroup,
64 | main,
65 | menu,
66 | nav,
67 | section,
68 | summary {
69 | display: block; }
70 |
71 | /**
72 | * 1. Correct `inline-block` display not defined in IE 8/9.
73 | * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
74 | */
75 | audio,
76 | canvas,
77 | progress,
78 | video {
79 | display: inline-block;
80 | /* 1 */
81 | vertical-align: baseline;
82 | /* 2 */ }
83 |
84 | /**
85 | * Prevent modern browsers from displaying `audio` without controls.
86 | * Remove excess height in iOS 5 devices.
87 | */
88 | audio:not([controls]) {
89 | display: none;
90 | height: 0; }
91 |
92 | /**
93 | * Address `[hidden]` styling not present in IE 8/9/10.
94 | * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
95 | */
96 | [hidden],
97 | template {
98 | display: none; }
99 |
100 | /* Links
101 | ========================================================================== */
102 | /**
103 | * Remove the gray background color from active links in IE 10.
104 | */
105 | a {
106 | background-color: transparent; }
107 |
108 | /**
109 | * Improve readability when focused and also mouse hovered in all browsers.
110 | */
111 | a:active,
112 | a:hover {
113 | outline: 0; }
114 |
115 | /* Text-level semantics
116 | ========================================================================== */
117 | /**
118 | * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
119 | */
120 | abbr[title] {
121 | border-bottom: 1px dotted; }
122 |
123 | /**
124 | * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
125 | */
126 | b,
127 | strong {
128 | font-weight: bold; }
129 |
130 | /**
131 | * Address styling not present in Safari and Chrome.
132 | */
133 | dfn {
134 | font-style: italic; }
135 |
136 | /**
137 | * Address variable `h1` font-size and margin within `section` and `article`
138 | * contexts in Firefox 4+, Safari, and Chrome.
139 | */
140 | h1 {
141 | font-size: 2em;
142 | margin: 0.67em 0; }
143 |
144 | /**
145 | * Address styling not present in IE 8/9.
146 | */
147 | mark {
148 | background: #ff0;
149 | color: #000; }
150 |
151 | /**
152 | * Address inconsistent and variable font size in all browsers.
153 | */
154 | small {
155 | font-size: 80%; }
156 |
157 | /**
158 | * Prevent `sub` and `sup` affecting `line-height` in all browsers.
159 | */
160 | sub,
161 | sup {
162 | font-size: 75%;
163 | line-height: 0;
164 | position: relative;
165 | vertical-align: baseline; }
166 |
167 | sup {
168 | top: -0.5em; }
169 |
170 | sub {
171 | bottom: -0.25em; }
172 |
173 | /* Embedded content
174 | ========================================================================== */
175 | /**
176 | * Remove border when inside `a` element in IE 8/9/10.
177 | */
178 | img {
179 | border: 0; }
180 |
181 | /**
182 | * Correct overflow not hidden in IE 9/10/11.
183 | */
184 | svg:not(:root) {
185 | overflow: hidden; }
186 |
187 | /* Grouping content
188 | ========================================================================== */
189 | /**
190 | * Address margin not present in IE 8/9 and Safari.
191 | */
192 | figure {
193 | margin: 1em 40px; }
194 |
195 | /**
196 | * Address differences between Firefox and other browsers.
197 | */
198 | hr {
199 | -moz-box-sizing: content-box;
200 | box-sizing: content-box;
201 | height: 0; }
202 |
203 | /**
204 | * Contain overflow in all browsers.
205 | */
206 | pre {
207 | overflow: auto; }
208 |
209 | /**
210 | * Address odd `em`-unit font size rendering in all browsers.
211 | */
212 | code,
213 | kbd,
214 | pre,
215 | samp {
216 | font-family: monospace, monospace;
217 | font-size: 1em; }
218 |
219 | /* Forms
220 | ========================================================================== */
221 | /**
222 | * Known limitation: by default, Chrome and Safari on OS X allow very limited
223 | * styling of `select`, unless a `border` property is set.
224 | */
225 | /**
226 | * 1. Correct color not being inherited.
227 | * Known issue: affects color of disabled elements.
228 | * 2. Correct font properties not being inherited.
229 | * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
230 | */
231 | button, input[type="submit"], input[type="reset"], input[type="button"],
232 | input,
233 | optgroup,
234 | select,
235 | textarea {
236 | color: inherit;
237 | /* 1 */
238 | font: inherit;
239 | /* 2 */
240 | margin: 0;
241 | /* 3 */ }
242 |
243 | /**
244 | * Address `overflow` set to `hidden` in IE 8/9/10/11.
245 | */
246 | button, input[type="submit"], input[type="reset"], input[type="button"] {
247 | overflow: visible; }
248 |
249 | /**
250 | * Address inconsistent `text-transform` inheritance for `button` and `select`.
251 | * All other form control elements do not inherit `text-transform` values.
252 | * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
253 | * Correct `select` style inheritance in Firefox.
254 | */
255 | button, input[type="submit"], input[type="reset"], input[type="button"],
256 | select {
257 | text-transform: none; }
258 |
259 | /**
260 | * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
261 | * and `video` controls.
262 | * 2. Correct inability to style clickable `input` types in iOS.
263 | * 3. Improve usability and consistency of cursor style between image-type
264 | * `input` and others.
265 | */
266 | button, input[type="submit"], input[type="reset"], input[type="button"],
267 | html input[type="button"],
268 | input[type="reset"],
269 | input[type="submit"] {
270 | -webkit-appearance: button;
271 | /* 2 */
272 | cursor: pointer;
273 | /* 3 */ }
274 |
275 | /**
276 | * Re-set default cursor for disabled elements.
277 | */
278 | button[disabled], input[disabled][type="submit"], input[disabled][type="reset"], input[disabled][type="button"],
279 | html input[disabled] {
280 | cursor: default; }
281 |
282 | /**
283 | * Remove inner padding and border in Firefox 4+.
284 | */
285 | button::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner,
286 | input::-moz-focus-inner {
287 | border: 0;
288 | padding: 0; }
289 |
290 | /**
291 | * Address Firefox 4+ setting `line-height` on `input` using `!important` in
292 | * the UA stylesheet.
293 | */
294 | input {
295 | line-height: normal; }
296 |
297 | /**
298 | * It's recommended that you don't attempt to style these elements.
299 | * Firefox's implementation doesn't respect box-sizing, padding, or width.
300 | *
301 | * 1. Address box sizing set to `content-box` in IE 8/9/10.
302 | * 2. Remove excess padding in IE 8/9/10.
303 | */
304 | input[type="checkbox"],
305 | input[type="radio"] {
306 | box-sizing: border-box;
307 | /* 1 */
308 | padding: 0;
309 | /* 2 */ }
310 |
311 | /**
312 | * Fix the cursor style for Chrome's increment/decrement buttons. For certain
313 | * `font-size` values of the `input`, it causes the cursor style of the
314 | * decrement button to change from `default` to `text`.
315 | */
316 | input[type="number"]::-webkit-inner-spin-button,
317 | input[type="number"]::-webkit-outer-spin-button {
318 | height: auto; }
319 |
320 | /**
321 | * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
322 | * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
323 | * (include `-moz` to future-proof).
324 | */
325 | input[type="search"] {
326 | -webkit-appearance: textfield;
327 | /* 1 */
328 | -moz-box-sizing: content-box;
329 | -webkit-box-sizing: content-box;
330 | /* 2 */
331 | box-sizing: content-box; }
332 |
333 | /**
334 | * Remove inner padding and search cancel button in Safari and Chrome on OS X.
335 | * Safari (but not Chrome) clips the cancel button when the search input has
336 | * padding (and `textfield` appearance).
337 | */
338 | input[type="search"]::-webkit-search-cancel-button,
339 | input[type="search"]::-webkit-search-decoration {
340 | -webkit-appearance: none; }
341 |
342 | /**
343 | * Define consistent border, margin, and padding.
344 | */
345 | fieldset {
346 | border: 1px solid #c0c0c0;
347 | margin: 0 2px;
348 | padding: 0.35em 0.625em 0.75em; }
349 |
350 | /**
351 | * 1. Correct `color` not being inherited in IE 8/9/10/11.
352 | * 2. Remove padding so people aren't caught out if they zero out fieldsets.
353 | */
354 | legend {
355 | border: 0;
356 | /* 1 */
357 | padding: 0;
358 | /* 2 */ }
359 |
360 | /**
361 | * Remove default vertical scrollbar in IE 8/9/10/11.
362 | */
363 | textarea {
364 | overflow: auto; }
365 |
366 | /**
367 | * Don't inherit the `font-weight` (applied by a rule above).
368 | * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
369 | */
370 | optgroup {
371 | font-weight: bold; }
372 |
373 | /* Tables
374 | ========================================================================== */
375 | /**
376 | * Remove most spacing between table cells.
377 | */
378 | table {
379 | border-collapse: collapse;
380 | border-spacing: 0; }
381 |
382 | td,
383 | th {
384 | padding: 0; }
385 |
386 | html {
387 | font: 100%/1.4 'helvetica neue', helvetica, sans-serif; }
388 |
389 | body {
390 | background: #fff;
391 | box-sizing: border-box;
392 | color: #000;
393 | padding: 1rem;
394 | text-rendering: optimizeLegibility; }
395 |
396 | *,
397 | *:before,
398 | *:after,
399 | input[type="search"] {
400 | box-sizing: inherit; }
401 | @media print {
402 | *,
403 | *:before,
404 | *:after,
405 | input[type="search"] {
406 | background: transparent !important;
407 | color: #000 !important;
408 | box-shadow: none !important;
409 | text-shadow: none !important; } }
410 |
411 | a {
412 | color: #767676;
413 | text-decoration: none;
414 | transition: color .2s, opacity .2s, outline .2s; }
415 | a:focus, a:hover {
416 | color: #000; }
417 | a:focus {
418 | outline: thin dotted;
419 | outline-offset: .3rem; }
420 | a:active {
421 | opacity: 0.4; }
422 | @media print {
423 | a[href]:after {
424 | content: " (" attr(href) ")"; } }
425 | @media print {
426 | a[href^="javascript:"]:after, a[href^="#"]:after {
427 | content: ""; } }
428 | a:not([href]) {
429 | cursor: default; }
430 | @media print {
431 | a {
432 | text-decoration: underline; } }
433 |
434 | abbr[title] {
435 | cursor: help; }
436 | @media print {
437 | abbr[title]:after {
438 | content: " (" attr(title) ")"; } }
439 |
440 | address {
441 | font-style: normal; }
442 |
443 | blockquote {
444 | border: thin solid #767676;
445 | padding: 0 1rem; }
446 | blockquote blockquote {
447 | margin: 0 0 1rem; }
448 | @media print {
449 | blockquote {
450 | page-break-inside: avoid; } }
451 |
452 | dt {
453 | font-weight: bold; }
454 |
455 | @media print {
456 | h2,
457 | h3 {
458 | orphans: 3;
459 | widows: 3;
460 | page-break-after: avoid; } }
461 |
462 | hr {
463 | border: 0;
464 | border-top: thin solid #767676;
465 | clear: both;
466 | -moz-box-sizing: border-box;
467 | -webkit-box-sizing: border-box;
468 | box-sizing: border-box; }
469 |
470 | ol {
471 | list-style: decimal; }
472 | ol ol {
473 | list-style: lower-alpha; }
474 | ol ol ol {
475 | list-style: lower-roman; }
476 |
477 | nav ul,
478 | nav ol {
479 | list-style: none;
480 | margin: 0;
481 | padding: 0; }
482 |
483 | @media print {
484 | p {
485 | orphans: 3;
486 | widows: 3; } }
487 |
488 | pre {
489 | border: thin solid #767676;
490 | padding: 1rem;
491 | word-wrap: normal; }
492 | @media print {
493 | pre {
494 | page-break-inside: avoid; } }
495 |
496 | table {
497 | max-width: 100%;
498 | margin: 1rem 0; }
499 |
500 | @media print {
501 | thead {
502 | display: table-header-group; } }
503 |
504 | @media print {
505 | tr {
506 | page-break-inside: avoid; } }
507 |
508 | th,
509 | td {
510 | border: thin solid #767676;
511 | padding: .5rem; }
512 |
513 | ul {
514 | list-style: disc; }
515 | ul ul {
516 | list-style: square; }
517 | ul ul ul {
518 | list-style: circle; }
519 |
520 | audio,
521 | canvas,
522 | embed,
523 | iframe,
524 | img,
525 | object,
526 | svg,
527 | video {
528 | max-width: 100%;
529 | vertical-align: middle; }
530 |
531 | img,
532 | video {
533 | height: auto; }
534 | @media print {
535 | img,
536 | video {
537 | page-break-inside: avoid; } }
538 |
539 | fieldset {
540 | border: thin solid #767676; }
541 |
542 | label[for] {
543 | cursor: pointer; }
544 |
545 | input {
546 | background: #fff;
547 | border: thin solid #767676;
548 | -moz-box-sizing: border-box;
549 | -webkit-box-sizing: border-box;
550 | box-sizing: border-box;
551 | color: #000;
552 | line-height: 1.8;
553 | max-width: 100%;
554 | padding: 0 .5rem;
555 | transition: border-color .2s, box-shadow .2s; }
556 | input:focus, input:hover {
557 | border-color: #000; }
558 | input:focus {
559 | box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
560 | outline: 0; }
561 | input[type="search"] {
562 | -moz-box-sizing: border-box;
563 | -webkit-box-sizing: border-box;
564 | box-sizing: border-box; }
565 | input[type="radio"], input[type="checkbox"] {
566 | background: none;
567 | border: 0;
568 | line-height: 1;
569 | padding: 0; }
570 | label + input {
571 | display: block; }
572 |
573 | select {
574 | max-width: 100%; }
575 | select:focus {
576 | outline: thin dotted;
577 | outline-offset: .1rem; }
578 |
579 | textarea {
580 | background: #fff;
581 | border: thin solid #767676;
582 | -moz-box-sizing: border-box;
583 | -webkit-box-sizing: border-box;
584 | box-sizing: border-box;
585 | color: #000;
586 | height: 10rem;
587 | line-height: 1.4;
588 | max-width: 100%;
589 | padding: .5rem;
590 | resize: vertical;
591 | transition: border-color .2s, box-shadow .2s;
592 | width: 100%; }
593 | textarea:focus, textarea:hover {
594 | border-color: #000; }
595 | textarea:focus {
596 | box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
597 | outline: 0; }
598 |
599 | button, input[type="submit"], input[type="reset"], input[type="button"],
600 | input[type="reset"],
601 | input[type="submit"],
602 | input[type="button"] {
603 | border: 0;
604 | border-radius: .3rem;
605 | background: #000;
606 | color: #fff;
607 | display: inline-block;
608 | line-height: 1.8;
609 | padding: 0 .5rem;
610 | transition: background-color .2s, box-shadow .2s; }
611 | button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover,
612 | input[type="reset"]:focus,
613 | input[type="reset"]:hover,
614 | input[type="submit"]:focus,
615 | input[type="submit"]:hover,
616 | input[type="button"]:focus,
617 | input[type="button"]:hover {
618 | background: #767676; }
619 | button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus,
620 | input[type="reset"]:focus,
621 | input[type="submit"]:focus,
622 | input[type="button"]:focus {
623 | box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
624 | outline: 0; }
625 | button:active, input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active,
626 | input[type="reset"]:active,
627 | input[type="submit"]:active,
628 | input[type="button"]:active {
629 | box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2) inset; }
630 |
631 | body > a[href="#content"] {
632 | border: 0;
633 | clip: rect(0 0 0 0);
634 | height: 1px;
635 | margin: -1px;
636 | overflow: hidden;
637 | padding: 0;
638 | position: absolute;
639 | width: 1px; }
640 | body > a[href="#content"]:focus, body > a[href="#content"]:active {
641 | clip: auto;
642 | height: auto;
643 | margin: 0;
644 | overflow: visible;
645 | position: static;
646 | width: auto; }
647 | body > a[href="#content"]:focus, body > a[href="#content"]:hover {
648 | display: block;
649 | padding: 1rem;
650 | text-align: center; }
651 |
652 | .document-header,
653 | .document-footer {
654 | margin: auto; }
655 |
656 | .wrapper {
657 | background: #fff;
658 | box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
659 | margin: auto;
660 | padding: 1px;
661 | position: relative; }
662 | .wrapper a {
663 | color: #767676; }
664 | .wrapper a:focus, .wrapper a:hover {
665 | color: #000; }
666 |
667 | .content {
668 | display: -moz-flex;
669 | display: -ms-flex;
670 | display: -o-flex;
671 | display: -webkit-flex;
672 | display: flex;
673 | -moz-flex-wrap: wrap;
674 | -ms-flex-wrap: wrap;
675 | -o-flex-wrap: wrap;
676 | -webkit-flex-wrap: wrap;
677 | flex-wrap: wrap; }
678 | .content:before, .content:after {
679 | content: ' ';
680 | display: table; }
681 | .content:after {
682 | clear: both; }
683 | .content:focus {
684 | outline: 0; }
685 | .content-footer {
686 | -moz-order: 99;
687 | -ms-order: 99;
688 | -o-order: 99;
689 | -webkit-order: 99;
690 | order: 99; }
691 |
692 | main,
693 | .sidebar1,
694 | .sidebar2,
695 | .sidebar3 {
696 | display: none;
697 | padding: 1rem; }
698 |
699 | main {
700 | display: block; }
701 |
702 | .sidebar1 {
703 | -moz-order: 20;
704 | -ms-order: 20;
705 | -o-order: 20;
706 | -webkit-order: 20;
707 | order: 20; }
708 |
709 | .sidebar2 {
710 | -moz-order: 40;
711 | -ms-order: 40;
712 | -o-order: 40;
713 | -webkit-order: 40;
714 | order: 40; }
715 |
716 | .sidebar3 {
717 | -moz-order: 60;
718 | -ms-order: 60;
719 | -o-order: 60;
720 | -webkit-order: 60;
721 | order: 60; }
722 |
723 | .two-column.content-right main {
724 | -moz-order: 30;
725 | -ms-order: 30;
726 | -o-order: 30;
727 | -webkit-order: 30;
728 | order: 30; }
729 | .two-column .sidebar1 {
730 | display: block; }
731 |
732 | .three-column.content-center main {
733 | -moz-order: 30;
734 | -ms-order: 30;
735 | -o-order: 30;
736 | -webkit-order: 30;
737 | order: 30; }
738 | .three-column.content-right main {
739 | -moz-order: 50;
740 | -ms-order: 50;
741 | -o-order: 50;
742 | -webkit-order: 50;
743 | order: 50; }
744 | .three-column .sidebar1,
745 | .three-column .sidebar2 {
746 | display: block; }
747 |
748 | .four-column.content-left main {
749 | -moz-order: 30;
750 | -ms-order: 30;
751 | -o-order: 30;
752 | -webkit-order: 30;
753 | order: 30; }
754 | .four-column.content-right main {
755 | -moz-order: 50;
756 | -ms-order: 50;
757 | -o-order: 50;
758 | -webkit-order: 50;
759 | order: 50; }
760 | .four-column.content-far-right main {
761 | -moz-order: 70;
762 | -ms-order: 70;
763 | -o-order: 70;
764 | -webkit-order: 70;
765 | order: 70; }
766 | .four-column .sidebar1,
767 | .four-column .sidebar2,
768 | .four-column .sidebar3 {
769 | display: block; }
770 |
771 | .banner {
772 | position: relative; }
773 | .banner > a {
774 | color: #000;
775 | display: block;
776 | line-height: 1.4;
777 | padding: 0;
778 | white-space: normal; }
779 | .banner > a:focus, .banner > a:hover {
780 | color: #000;
781 | opacity: 0.8; }
782 | .banner > a:active {
783 | opacity: 0.4; }
784 | .banner h1 {
785 | line-height: 1;
786 | margin: 0;
787 | padding: 1rem 1rem 0 1rem; }
788 | .banner p {
789 | line-height: 2;
790 | margin: 0;
791 | padding: 0 1rem 1rem 1rem; }
792 | .banner nav {
793 | background: #000;
794 | color: #fff;
795 | position: relative; }
796 | .banner nav:before, .banner nav:after {
797 | content: ' ';
798 | display: table; }
799 | .banner nav:after {
800 | clear: both; }
801 | .banner nav:before {
802 | display: none;
803 | visibility: hidden;
804 | font: 100%/1 awesome;
805 | content: '\f0c9';
806 | line-height: 2.4;
807 | pointer-events: none;
808 | position: absolute;
809 | right: 1rem;
810 | top: 0; }
811 | .banner nav a {
812 | color: #767676;
813 | display: block;
814 | line-height: 2.4;
815 | padding: 0 1rem;
816 | white-space: pre; }
817 | .banner nav a:focus, .banner nav a:hover {
818 | color: #fff; }
819 | .banner ul {
820 | list-style: none;
821 | transition: opacity .2s, visibility .2s; }
822 | .banner ul ul {
823 | background: #000;
824 | box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
825 | color: #fff;
826 | opacity: 0;
827 | position: absolute;
828 | visibility: hidden;
829 | z-index: 99; }
830 | .banner ul ul ul {
831 | left: 100%;
832 | top: 0; }
833 | .banner li {
834 | float: left;
835 | position: relative; }
836 | .banner li.open > ul, .banner li:focus > ul, .banner li:hover > ul {
837 | opacity: 1;
838 | visibility: visible; }
839 | .banner li:focus > a, .banner li:hover > a, .banner li.current-menu-item > a, .banner li.current_page_item > a, .banner li.current_page_ancestor > a, .banner li.current-menu-ancestor > a {
840 | color: #fff; }
841 | .banner .menu-item-has-children > a:after,
842 | .banner .page_item_has_children > a:after {
843 | font: 100%/1 awesome;
844 | content: '\f13a';
845 | margin: 0 0 0 .5rem; }
846 | .banner .menu-item-has-children .menu-item-has-children > a:after,
847 | .banner .menu-item-has-children .page_item_has_children > a:after,
848 | .banner .page_item_has_children .menu-item-has-children > a:after,
849 | .banner .page_item_has_children .page_item_has_children > a:after {
850 | content: '\f138'; }
851 | .banner select {
852 | display: none;
853 | visibility: hidden;
854 | -moz-appearance: none;
855 | -ms-appearance: none;
856 | -o-appearance: none;
857 | -webkit-appearance: none;
858 | appearance: none;
859 | background: #000;
860 | border: 0;
861 | border-radius: 0;
862 | color: #fff;
863 | cursor: pointer;
864 | line-height: 2.4;
865 | padding: 0 1rem; }
866 |
867 | .contentinfo {
868 | background: #000;
869 | color: #fff;
870 | line-height: 1;
871 | padding: 1rem; }
872 | .contentinfo a {
873 | color: #767676; }
874 | .contentinfo a:focus, .contentinfo a:hover {
875 | color: #fff; }
876 |
877 | form.search input {
878 | width: 100%; }
879 |
880 | .widgets:before, .widgets:after {
881 | content: ' ';
882 | display: table; }
883 | .widgets:after {
884 | clear: both; }
885 | .widgets aside {
886 | float: left;
887 | word-wrap: break-word; }
888 | .widgets aside h2 {
889 | font-size: 100%;
890 | margin: 1rem 0; }
891 | .widgets.columns-1 aside {
892 | float: none; }
893 | .widgets.columns-2 aside {
894 | width: 50%; }
895 | .widgets.columns-3 aside {
896 | width: 33%; }
897 | .widgets.columns-4 aside {
898 | width: 25%; }
899 | .widgets.columns-5 aside {
900 | width: 20%; }
901 | .widgets.columns-6 aside {
902 | width: 16%; }
903 | .widgets.columns-7 aside {
904 | width: 14%; }
905 | .widgets.columns-8 aside {
906 | width: 12%; }
907 | .widgets.columns-9 aside {
908 | width: 11%; }
909 | .widgets.columns-10 aside {
910 | width: 10%; }
911 |
912 | .first-post {
913 | display: block;
914 | font-size: larger;
915 | margin: 1rem;
916 | text-align: center; }
917 | .first-post:after, .first-post:before {
918 | font: 100%/1 awesome;
919 | content: '';
920 | padding: 0 1rem; }
921 |
922 | .post-webcomic {
923 | width: 100%; }
924 | .post-webcomic nav {
925 | background: #000;
926 | color: #fff;
927 | text-align: center; }
928 | .post-webcomic nav.above {
929 | margin: 1px 0 0; }
930 | .post-webcomic nav a {
931 | color: #767676;
932 | font-size: 200%; }
933 | .post-webcomic nav a:focus, .post-webcomic nav a:hover {
934 | color: #fff; }
935 | .post-webcomic nav a.current-webcomic {
936 | opacity: 0.2; }
937 | .post-webcomic .webcomic-image {
938 | overflow: auto;
939 | text-align: center; }
940 | .post-webcomic .webcomic-image.scroll img {
941 | max-width: none; }
942 | .post-image {
943 | float: right;
944 | margin: 0 0 1rem 1rem; }
945 | .post-image img {
946 | border-radius: .3rem; }
947 | .post-header h1,
948 | .post-header h2 {
949 | margin: 0;
950 | word-wrap: break-word; }
951 | .post-header h2 a:before {
952 | font: 100%/1 awesome;
953 | padding: 0 .5rem 0 0;
954 | vertical-align: baseline; }
955 | .format-audio .post-header h2 a:before {
956 | content: '\f025'; }
957 | .format-image .post-header h2 a:before, .format-gallery .post-header h2 a:before {
958 | content: '\f03e'; }
959 | .format-video .post-header h2 a:before {
960 | content: '\f03d'; }
961 | .format-aside .post-header h2 a:before {
962 | content: '\f036'; }
963 | .format-status .post-header h2 a:before {
964 | content: '\f141'; }
965 | .format-link .post-header h2 a:before {
966 | content: '\f08e'; }
967 | .format-quote .post-header h2 a:before {
968 | content: '\f10d'; }
969 | .format-chat .post-header h2 a:before {
970 | content: '\f0e6'; }
971 | .sticky .post-header h2 a:before {
972 | content: '\f192'; }
973 | .post-details {
974 | font-size: smaller; }
975 | .post-details a {
976 | margin: 0 0 0 1rem; }
977 | .post-details a:first-child {
978 | margin: 0; }
979 | .post-details a:before {
980 | font: 100%/1 awesome;
981 | padding: 0 .3rem 0 0; }
982 | .post-details a[rel="author"]:before {
983 | content: '\f007'; }
984 | .post-details a[rel="bookmark"]:before {
985 | content: '\f133'; }
986 | .post-details a[rel="gallery"]:before {
987 | content: '\f00a'; }
988 | .post-details a[href*="#comments"]:before, .post-details a[href*="#respond"]:before, .post-details a[href*="#disqus"]:before {
989 | content: '\f086'; }
990 | .post-details a.image:before {
991 | content: '\f03e'; }
992 | .post-details a.post-edit-link:before {
993 | content: '\f044'; }
994 | .post-details a[href$="prints"]:before {
995 | content: '\f0d6'; }
996 | .post-details a[href*="?offset="]:before {
997 | content: '\f02e'; }
998 | .post-content {
999 | word-wrap: break-word; }
1000 | .post-content img {
1001 | border-radius: .3rem;
1002 | max-width: 100%; }
1003 | .post-footer {
1004 | border-bottom: thin solid #767676;
1005 | clear: both;
1006 | font-size: smaller;
1007 | margin: 0 0 1rem;
1008 | padding: 0 0 1rem; }
1009 | .post-footer span {
1010 | color: #767676;
1011 | padding: 0 0 0 1rem; }
1012 | .post-footer span:first-child {
1013 | padding: 0; }
1014 | .post-footer span:before {
1015 | font: 100%/1 awesome;
1016 | padding: 0 .3rem 0 0; }
1017 | .post-footer span.post-categories:before {
1018 | content: '\f07c'; }
1019 | .post-footer span.post-tags:before {
1020 | content: '\f02b'; }
1021 | .post-footer span.webcomic-collections:before {
1022 | content: '\f1c5'; }
1023 | .post-footer span.webcomic-storylines:before {
1024 | content: '\f02d'; }
1025 | .post-footer span.webcomic-characters:before {
1026 | content: '\f0c0'; }
1027 |
1028 | .attachment .post-image,
1029 | .webcomic-prints .post-image {
1030 | float: none;
1031 | margin: 0;
1032 | text-align: center; }
1033 | .attachment .post-image img,
1034 | .webcomic-prints .post-image img {
1035 | border-radius: .3rem; }
1036 | .attachment .post-excerpt,
1037 | .webcomic-prints .post-excerpt {
1038 | font-size: smaller;
1039 | text-align: center; }
1040 | .attachment .webcomic-print-form,
1041 | .webcomic-prints .webcomic-print-form {
1042 | display: inline-block;
1043 | margin: 0 1rem 1rem 0; }
1044 |
1045 | .more-link:after {
1046 | font: 100%/1 awesome;
1047 | content: '\f138'; }
1048 |
1049 | nav.post-navigation, nav.posts-navigation, nav.image-navigation, nav.comment-navigation {
1050 | clear: both;
1051 | margin: 1rem 0; }
1052 | nav.post-navigation:before, nav.post-navigation:after, nav.posts-navigation:before, nav.posts-navigation:after, nav.image-navigation:before, nav.image-navigation:after, nav.comment-navigation:before, nav.comment-navigation:after {
1053 | content: ' ';
1054 | display: table; }
1055 | nav.post-navigation:after, nav.posts-navigation:after, nav.image-navigation:after, nav.comment-navigation:after {
1056 | clear: both; }
1057 | nav.post-navigation .nav-previous, nav.posts-navigation .nav-previous, nav.image-navigation .nav-previous, nav.comment-navigation .nav-previous {
1058 | float: left; }
1059 | nav.post-navigation .nav-next, nav.posts-navigation .nav-next, nav.image-navigation .nav-next, nav.comment-navigation .nav-next {
1060 | float: right; }
1061 | nav.post-navigation img, nav.posts-navigation img, nav.image-navigation img, nav.comment-navigation img {
1062 | margin: 0 0 1rem;
1063 | transition: opacity .2s; }
1064 | nav.post-navigation a:focus img,
1065 | nav.post-navigation a:hover img, nav.posts-navigation a:focus img,
1066 | nav.posts-navigation a:hover img, nav.image-navigation a:focus img,
1067 | nav.image-navigation a:hover img, nav.comment-navigation a:focus img,
1068 | nav.comment-navigation a:hover img {
1069 | opacity: 0.8; }
1070 | nav.pagination {
1071 | clear: both;
1072 | color: #767676;
1073 | margin: 1rem 0;
1074 | text-align: center; }
1075 | nav.pagination a,
1076 | nav.pagination .current {
1077 | display: inline-block;
1078 | padding: 0 .3rem; }
1079 | nav.pagination.post .nav-links:before {
1080 | font: 100%/1 awesome;
1081 | content: '\f0c5';
1082 | padding: 0 .3rem 0 0; }
1083 |
1084 | .webcomic-prints div {
1085 | margin: 0 0 1rem; }
1086 |
1087 | .search .page-header h1:before, .archive .page-header h1:before {
1088 | font: 100%/1 awesome;
1089 | content: '\f187';
1090 | padding: 0 .5rem 0 0; }
1091 | .search .page-header h1:before {
1092 | content: '\f002'; }
1093 | .archive.author .page-header h1:before {
1094 | content: '\f007'; }
1095 | .archive.category .page-header h1:before {
1096 | content: '\f07c'; }
1097 | .archive.date .page-header h1:before {
1098 | content: '\f133'; }
1099 | .archive.tag .page-header h1:before, .archive.taxonomy .page-header h1:before {
1100 | content: '\f02b'; }
1101 | .archive.post-type-archive-webcomic .page-header h1:before {
1102 | content: '\f1c5'; }
1103 | .archive.tax-webcomic_storyline .page-header h1:before {
1104 | content: '\f02d'; }
1105 | .archive.tax-webcomic_character .page-header h1:before {
1106 | content: '\f0c0'; }
1107 | .page-image {
1108 | float: left;
1109 | margin: 0 1rem 1rem 0; }
1110 | .page-image img {
1111 | border-radius: .3rem; }
1112 | .page-content {
1113 | word-wrap: break-word; }
1114 | .page-content img {
1115 | border-radius: .3rem; }
1116 | .page-template-templatefull-width-php main {
1117 | -moz-order: 1;
1118 | -ms-order: 1;
1119 | -o-order: 1;
1120 | -webkit-order: 1;
1121 | order: 1; }
1122 | .page-template-templatefull-width-php main,
1123 | .page-template-templatefull-width-php .sidebar1,
1124 | .page-template-templatefull-width-php .sidebar2,
1125 | .page-template-templatefull-width-php .sidebar3 {
1126 | width: 100%; }
1127 |
1128 | .contributor {
1129 | margin: 0 0 1rem; }
1130 | .contributor:before, .contributor:after {
1131 | content: ' ';
1132 | display: table; }
1133 | .contributor:after {
1134 | clear: both; }
1135 | .contributor h2 {
1136 | margin: 0; }
1137 | .contributor-image {
1138 | float: left;
1139 | margin: 0 1rem 1rem 0; }
1140 | .contributor-image img {
1141 | border-radius: .3rem; }
1142 |
1143 | .comment, .pingback,
1144 | .trackback {
1145 | border-bottom: thin solid #767676;
1146 | margin: 0 0 1rem;
1147 | padding: 1rem; }
1148 | .comment-reply-title a {
1149 | font-weight: normal; }
1150 | .comment-reply-title a:before {
1151 | font: 100%/1 awesome;
1152 | content: '\f057';
1153 | padding: 0 .3rem 0 0; }
1154 | .comment-form label, .webcomic-transcribe-form label {
1155 | display: block; }
1156 | .comment-form .required, .webcomic-transcribe-form .required {
1157 | visibility: hidden; }
1158 | .comment-form .required:before, .webcomic-transcribe-form .required:before {
1159 | font: 100%/1 awesome;
1160 | content: '\f069';
1161 | visibility: visible; }
1162 | .comment-footer img {
1163 | border-radius: 100rem;
1164 | margin: 0 1rem 0 0; }
1165 | .comment-footer a {
1166 | margin: 0 0 0 1rem; }
1167 | .comment-footer a.url {
1168 | margin: 0; }
1169 | .comment-footer a:before {
1170 | font: 100%/1 awesome;
1171 | padding: 0 .3rem 0 0; }
1172 | .comment-footer a.time:before {
1173 | content: '\f133'; }
1174 | .comment-footer a.comment-edit-link:before {
1175 | content: '\f044'; }
1176 | .comment-footer a.comment-reply-link:before {
1177 | content: '\f112'; }
1178 | .comment .comment, .pingback .comment,
1179 | .trackback .comment, .comment .pingback, .pingback .pingback,
1180 | .trackback .pingback,
1181 | .comment .trackback,
1182 | .pingback .trackback,
1183 | .trackback .trackback {
1184 | border: 0;
1185 | border-left: thin solid #767676;
1186 | margin: 0 0 0 1rem;
1187 | padding: 1rem; }
1188 |
1189 | .moderating-comment {
1190 | font-size: smaller;
1191 | font-style: italic;
1192 | margin: 1rem 0; }
1193 |
1194 | .webcomic-transcript-error,
1195 | .webcomic-transcript-success {
1196 | font-size: smaller;
1197 | font-style: italic;
1198 | margin: 1rem 0 0; }
1199 |
1200 | .webcomic-transcript-authors:before {
1201 | font: 100%/1 awesome;
1202 | content: '\f007';
1203 | padding: 0 .3rem 0 1rem; }
1204 |
1205 | .webcomic-transcript-languages:before {
1206 | font: 100%/1 awesome;
1207 | content: '\f1ab';
1208 | padding: 0 .3rem 0 1rem; }
1209 |
1210 | .sticky {
1211 | /* . */ }
1212 |
1213 | .screen-reader-text {
1214 | border: 0;
1215 | clip: rect(0 0 0 0);
1216 | height: 1px;
1217 | margin: -1px;
1218 | overflow: hidden;
1219 | padding: 0;
1220 | position: absolute;
1221 | width: 1px; }
1222 |
1223 | .bypostauthor {
1224 | border: thin solid #767676; }
1225 |
1226 | .alignnone {
1227 | margin: 1rem 0; }
1228 | .aligncenter {
1229 | display: block;
1230 | margin: 0 auto 1rem; }
1231 | .alignright {
1232 | float: right;
1233 | margin: 0 0 1rem 1rem; }
1234 | .alignleft {
1235 | float: left;
1236 | margin: 0 1rem 1rem 0; }
1237 |
1238 | .wp-audio-shortcode {
1239 | margin: 1rem 0; }
1240 | .wp-caption {
1241 | max-width: 100%;
1242 | padding: .3rem;
1243 | text-align: center; }
1244 | .wp-caption img {
1245 | border-radius: .3rem; }
1246 | .wp-caption-text {
1247 | font-size: smaller;
1248 | margin: .5rem 0 0; }
1249 |
1250 | .gallery {
1251 | margin: auto;
1252 | padding: .3rem; }
1253 | .gallery:before, .gallery:after {
1254 | content: ' ';
1255 | display: table; }
1256 | .gallery:after {
1257 | clear: both; }
1258 | .gallery-item {
1259 | display: inline-block;
1260 | margin: 0;
1261 | padding: .3rem;
1262 | text-align: center;
1263 | vertical-align: top; }
1264 | .gallery-columns-1 .gallery-item {
1265 | display: block; }
1266 | .gallery-columns-2 .gallery-item {
1267 | width: 50%; }
1268 | .gallery-columns-3 .gallery-item {
1269 | width: 33%; }
1270 | .gallery-columns-4 .gallery-item {
1271 | width: 25%; }
1272 | .gallery-columns-5 .gallery-item {
1273 | width: 20%; }
1274 | .gallery-columns-6 .gallery-item {
1275 | width: 16%; }
1276 | .gallery-columns-7 .gallery-item {
1277 | width: 14%; }
1278 | .gallery-columns-8 .gallery-item {
1279 | width: 12%; }
1280 | .gallery-columns-9 .gallery-item {
1281 | width: 11%; }
1282 | .gallery-columns-10 .gallery-item {
1283 | width: 10%; }
1284 | .gallery-icon {
1285 | line-height: 1; }
1286 | .gallery-icon img {
1287 | border-radius: .3rem;
1288 | transition: opacity .2s; }
1289 | .gallery-icon a:focus img,
1290 | .gallery-icon a:hover img {
1291 | opacity: 0.8; }
1292 | .gallery-caption {
1293 | font-size: smaller;
1294 | margin: .5rem 0 0; }
1295 |
1296 | /*# sourceMappingURL=style.css.map */
1297 |
--------------------------------------------------------------------------------