jekyll-theme-lightning 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7c6b7fc6c088addc3f860e063867f8015e375938af0111e8eaeb560863bb8def
4
+ data.tar.gz: 50875711a852a2b87e10cae7c6d01150b0f6610095e207435421ef37926c14ea
5
+ SHA512:
6
+ metadata.gz: 3f199551e88ffb9eea7030582127335804f0c78522c2d8c194c44e1ddcd1004199730902ba21f1829cc663443f99f889cd5db40d4c61e1152c582e1aa8eefc9f
7
+ data.tar.gz: df5b00fd3b84f5b035ea41397a0da673047e5232be54d58f3f5666212117fd4bc64fc8c4534f206c13404c4e96a6c018df838803f0889ecefe5716062d116e75
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 paikwiki and Lighting contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,48 @@
1
+ # Lightning theme
2
+
3
+ Welcome to Lightning theme. In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
4
+
5
+ To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
+
7
+ ## Installation
8
+
9
+ Add this line to your Jekyll site's `Gemfile`:
10
+
11
+ ```ruby
12
+ gem "jekyll-theme-lightning"
13
+ ```
14
+
15
+ And add this line to your Jekyll site's `_config.yml`:
16
+
17
+ ```yaml
18
+ theme: jekyll-theme-lightning
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install jekyll-theme-lightning
28
+
29
+ ## Usage
30
+
31
+ See [the official website for Lighting](https://jekyll-theme-lightning.github.io).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at [https://github.com/jekyll-theme-lightning/lightning](https://github.com/jekyll-theme-lightning/lightning). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## Development
38
+
39
+ To set up your environment to develop this theme, run `bundle install`.
40
+
41
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
42
+
43
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
44
+ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-theme-lightning.gemspec` accordingly.
45
+
46
+ ## License
47
+
48
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,11 @@
1
+ <footer class="site-footer">
2
+ <p class="copyright">
3
+ {% if site.data.settings.footer.copyright %}
4
+ {{ site.data.settings.footer.copyright }}
5
+ {% else %}
6
+ &copy; {{ site.data.author.copyright_year }}.
7
+ <a href="mailto:{{ site.data.author.email }}">{{ site.data.author.name }}</a>
8
+ ALL RIGHTS RESERVED.
9
+ {% endif %}
10
+ </p>
11
+ </footer>
@@ -0,0 +1,29 @@
1
+ <head>
2
+ <meta charset="UTF-8">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
4
+ <title>{{ site.title }}</title>
5
+
6
+ {% if page.og %}
7
+ <meta property="og:title" content="{{ page.og.title }}">
8
+ <meta property="og:image" content="{{ page.og.image | absolute_url }}">
9
+ <meta property="og:description" content="{{ page.og.description }}">
10
+ <meta name="twitter:card" content="{{ page.og.card }}">
11
+ {% else %}
12
+ {% if page.image and page.caption %}
13
+ <meta property="og:title" content="{{ page.title }}">
14
+ <meta property="og:image" content="{{ page.image | absolute_url }}">
15
+ <meta property="og:description" content="{{ page.caption }}">
16
+ <meta name="twitter:card" content="summary_large_image">
17
+ {% else %}
18
+ <meta property="og:title" content="{{ page.title }}">
19
+ <meta property="og:description" content="{{ content | strip_newlines | strip_html | strip | truncate: 240 }}">
20
+ <meta name="twitter:card" content="summary">
21
+ {% endif %}
22
+ {% endif %}
23
+
24
+ <meta property="og:url" content="{{ page.url | absolute_url }}">
25
+
26
+ <link rel="stylesheet" type="text/css" href="{{ '/assets/lib/normalize/normalize.css' | relative_url }}">
27
+ <link rel="stylesheet" href="{{ '/assets/style.css' | relative_url }}">
28
+ <link rel="stylesheet" href="{{ '/assets/custom.css' | relative_url }}">
29
+ </head>
@@ -0,0 +1,28 @@
1
+ <section class="navigation">
2
+ <nav>
3
+ {% if site.data.navigation.items.size > 0 %}
4
+ <ul class="nav-main {% if site.data.settings.navigation.uppercase %}nav-uppercase{% endif %}">
5
+ {% for item in site.data.navigation.items %}
6
+ {% assign currentNavItemTitle = page.navItemTitle | downcase %}
7
+ {% assign targetNaveItemTitle = item.title | downcase %}
8
+ <li {% if currentNavItemTitle == targetNaveItemTitle %}class="active"{% endif %}>
9
+ <a href="{{ item.url | prepend:site.baseurl }}">{{ item.title }}</a>
10
+ {% if item.subitems.size > 0 %}
11
+ <ul class="nav-sub">
12
+ {% for sitem in item.subitems %}
13
+ <li><a href="{{ sitem.url | prepend:site.baseurl }}">{{ sitem.title }}</a></li>
14
+ {% endfor %}
15
+ </ul>
16
+ {% endif %}
17
+ </li>
18
+ {% endfor %}
19
+ </ul>
20
+ {% else %}
21
+ <ul>
22
+ <li>
23
+ <p>NOTICE: There're no items. You can add them on <code>_data/navigation</code>.</p>
24
+ </li>
25
+ </ul>
26
+ {% endif %}
27
+ </nav>
28
+ </section>
@@ -0,0 +1,23 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article class="post-wrapper artwork-wrapper">
6
+ <header>
7
+ <h1>{{ page.title }}</h1>
8
+ </header>
9
+ <section class="post-content artwork-content">
10
+ {% if page.image %}
11
+ <section class="post-image artwork-image">
12
+ <img src="{{ page.image | relative_url }}" alt="{{ page.title }}">
13
+ {% if page.caption %}
14
+ <p>{{ page.caption }}</p>
15
+ {% endif %}
16
+ </section>
17
+ {% endif %}
18
+ {{ content }}
19
+ </section>
20
+ <aside>
21
+ <p><a href="javascript:history.go(-1)">&lt; Back</a></p>
22
+ </aside>
23
+ </article>
@@ -0,0 +1,29 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article class="posts-wrapper artworks-wrapper">
6
+ <header>
7
+ <h1>{{ page.title }}</h1>
8
+ </header>
9
+ <section class="posts-content artworks-content">
10
+ {% assign sorted_posts = site.posts
11
+ | where:"categories", page.item
12
+ | sort:"order"
13
+ | reverse %}
14
+ {% if sorted_posts.size > 0 %}
15
+ <ul class="posts-list artworks-list">
16
+ {% for post in sorted_posts %}
17
+ <li>
18
+ <a href="{{ post.url | relative_url }}">
19
+ <div class="thumb-image" style="background-image: url('{{ post.thumb | relative_url }}')">{{ post.title }}</div>
20
+ </a>
21
+ <a href="{{ post.url | relative_url }}" class="caption">{{ post.title }}</a>
22
+ </li>
23
+ {% endfor %}
24
+ </ul>
25
+ {% else %}
26
+ <p>There's no post in "{{ page.item }}" yet.</p>
27
+ {% endif %}
28
+ </section>
29
+ </article>
@@ -0,0 +1,20 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article class="page-wrapper cover-wrapper">
6
+ <header>
7
+ <h1>{{ page.title }}</h1>
8
+ </header>
9
+ <section class="page-content cover-content">
10
+ {% if page.image %}
11
+ <section class="page-image cover-image">
12
+ <img src="{{ page.image | relative_url }}" alt="{{ page.title }}">
13
+ {% if page.caption %}
14
+ <p>{{ page.caption }}</p>
15
+ {% endif %}
16
+ </section>
17
+ {% endif %}
18
+ {{ content }}
19
+ </section>
20
+ </article>
@@ -0,0 +1,28 @@
1
+ ---
2
+ layout: page
3
+ ---
4
+
5
+ <article class="about-wrapper">
6
+ <section class="about-info">
7
+ {% if site.data.author.description %}
8
+ <p>{{ site.data.author.description }}</p>
9
+ {% endif %}
10
+ {% if site.data.author.email %}
11
+ <p><a href="mailto:{{ site.data.author.email }}">{{ site.data.author.email }}</a></p>
12
+ {% endif %}
13
+ {{ content }}
14
+ </section>
15
+ {% if site.data.author.exhibitions %}
16
+ <section class="about-exhibitions">
17
+ <h2>Exhibitions</h2>
18
+ {% for exgroup in site.data.author.exhibitions %}
19
+ <h3>{{ exgroup.title }}</h3>
20
+ <ul>
21
+ {% for exitem in exgroup.list %}
22
+ <li>{{ exitem }}</li>
23
+ {% endfor %}
24
+ </ul>
25
+ {% endfor %}
26
+ </section>
27
+ {% endif %}
28
+ </article>
@@ -0,0 +1,20 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{% if site.data.settings.locale %}{{ site.data.settings.locale }}{% else %}ko{% endif %}">
3
+ {% include head.html %}
4
+ <body>
5
+ <div class="global-wrapper">
6
+ <header class="site-header">
7
+ <h1><a href="{{ '/' | relative_url }}">{{ site.title }}</a></h1>
8
+ {% if site.description %}
9
+ <p class="tagline">{{ site.description }}</p>
10
+ {% endif %}
11
+ {% include navigation.html %}
12
+ </header>
13
+ <section class="site-content {% if page.class %}{{ page.class }}{% endif %}">
14
+ {{ content }}
15
+ </section>
16
+ {% include footer.html %}
17
+ </div>
18
+ <script type="text/javascript" src="{{ '/assets/custom.js' | relative_url }}"></script>
19
+ </body>
20
+ </html>
@@ -0,0 +1,17 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article class="page-wrapper">
6
+ <header>
7
+ <h1>{{ page.title }}</h1>
8
+ </header>
9
+ <section class="page-content">
10
+ {% if page.image %}
11
+ <section class="page-image">
12
+ <img src="{{ page.image | relative_url }}" alt="{{ page.title }}">
13
+ </section>
14
+ {% endif %}
15
+ {{ content }}
16
+ </section>
17
+ </article>
@@ -0,0 +1,20 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article class="post-wrapper text-wrapper">
6
+ <header>
7
+ <h1>{{ page.title }}</h1>
8
+ </header>
9
+ <section class="post-content text-content">
10
+ {% if page.image %}
11
+ <section class="post-image">
12
+ <img src="{{ page.image | relative_url }}" alt="{{ page.title }}">
13
+ </section>
14
+ {% endif %}
15
+ {{ content }}
16
+ </section>
17
+ <aside>
18
+ <p><a href="javascript:history.go(-1)">&lt; Back</a></p>
19
+ </aside>
20
+ </article>
@@ -0,0 +1,31 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article class="posts-wrapper texts-wrapper">
6
+ <header>
7
+ <h1>{{ page.title }}</h1>
8
+ </header>
9
+ <section class="posts-content texts-content">
10
+ {% assign sorted_posts = site.posts
11
+ | where:"categories", page.item
12
+ | sort:"order"
13
+ | reverse %}
14
+ {% if sorted_posts.size > 0 %}
15
+ <ul class="posts-list texts-list">
16
+ {% for post in sorted_posts %}
17
+ <li>
18
+ {% if site.data.settings.text.showDate %}
19
+ <span class="post-date">{{ post.date | date_to_string }}</span>
20
+ {% endif %}
21
+ <a href="{{ post.url | relative_url }}">
22
+ <span class="post-title">{{ post.title }}</span>
23
+ </a>
24
+ </li>
25
+ {% endfor %}
26
+ </ul>
27
+ {% else %}
28
+ <p>There's no post in "{{ page.item }}" yet.</p>
29
+ {% endif %}
30
+ </section>
31
+ </article>
@@ -0,0 +1,14 @@
1
+ @charset "utf-8";
2
+
3
+ $baseFontSize: 0.83rem;
4
+ $baseFontColor: #333333;
5
+ $dimFontColor: #555555;
6
+ $metaFontColor: dimgray;
7
+
8
+ // Import webfont
9
+ @import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css);
10
+
11
+ // Import partials
12
+ @import "jekyll-theme-lightning/base";
13
+ @import "jekyll-theme-lightning/fonts";
14
+ @import "jekyll-theme-lightning/layout";
@@ -0,0 +1,38 @@
1
+ div, section, article, p,
2
+ h1, h2, h3, h4, h5, h6, li {
3
+ box-sizing: border-box;
4
+ }
5
+
6
+ h1 {
7
+ margin-bottom: 1.4em;
8
+ }
9
+
10
+ h2, h3, h4 {
11
+ margin-bottom: 1em;
12
+ }
13
+
14
+ h3::before {
15
+ content: "-";
16
+ }
17
+
18
+ a {
19
+ text-decoration: none;
20
+ }
21
+
22
+ a:hover {
23
+ text-decoration: underline;
24
+ }
25
+
26
+ p {
27
+ line-height: 1.8rem;
28
+ }
29
+
30
+ img {
31
+ max-width: 100%;
32
+ }
33
+
34
+ ul {
35
+ li {
36
+ list-style: none;
37
+ }
38
+ }
@@ -0,0 +1,20 @@
1
+ html {
2
+ font-size: $baseFontSize;
3
+ }
4
+
5
+ h1, h2, h3, h4 {
6
+ font-size: 1rem;
7
+ }
8
+
9
+ h1, h2, h3, h4, h5, h6,
10
+ p, span, pre, a, blockquote {
11
+ font-family: 'Noto Sans KR', 'Nanum Barun Gothic', 'Nanum Gothic', 'Malgun Gothic', 'Dotum', sans-serif;
12
+ }
13
+
14
+ h1, p, span, pre, a, blockquote {
15
+ color: $baseFontColor;
16
+ }
17
+
18
+ h2, h3, h4, h5, h6 {
19
+ color: $dimFontColor;
20
+ }
@@ -0,0 +1,248 @@
1
+ .global-wrapper {
2
+ margin: 0 auto;
3
+ padding: 1rem 2rem;
4
+ max-width: 980px;
5
+ .site-header {
6
+ padding: 0.5rem 0;
7
+ overflow: auto;
8
+ h1 {
9
+ display: inline-block;
10
+ margin: 0;
11
+ margin-right: 0.5rem;
12
+ line-height: 1.8rem;
13
+ }
14
+ .tagline {
15
+ display: inline-block;
16
+ margin: 0;
17
+ font-size: 0.8rem;
18
+ color: $metaFontColor;
19
+ }
20
+ .tagline::before {
21
+ content: '— ';
22
+ }
23
+ .navigation {
24
+ .nav-main {
25
+ position: relative;
26
+ display: flex;
27
+ flex-wrap: wrap;
28
+ margin: 1rem 0 0 0;
29
+ padding-left: 0;
30
+ height: 3rem;
31
+ > li {
32
+ padding: 0.5rem;
33
+ padding-left: 0;
34
+ padding-top: 0;
35
+ .nav-sub {
36
+ display: none;
37
+ position: absolute;
38
+ margin-left: -2rem;
39
+ > li {
40
+ float: left;
41
+ margin-top: 0.5rem;
42
+ padding: 0.5rem;
43
+ padding-left: 0;
44
+ padding-top: 0;
45
+ }
46
+ }
47
+ }
48
+ > li:hover {
49
+ .nav-sub {
50
+ display: block;
51
+ }
52
+ }
53
+ .active {
54
+ text-decoration: underline;
55
+ .nav-sub {
56
+ display: block;
57
+ }
58
+ }
59
+ }
60
+ @media all and (max-width: 640px){
61
+ .nav-main {
62
+ height: inherit;
63
+ }
64
+ }
65
+ .nav-uppercase {
66
+ text-transform: uppercase;
67
+ }
68
+ }
69
+ }
70
+ .site-content {
71
+ position: relative;
72
+ margin: 1rem 1rem 4rem 1rem;
73
+ .posts-content {
74
+ .artworks-list {
75
+ display: flex;
76
+ flex-wrap: wrap;
77
+ flex-flow: row wrap;
78
+ margin: 0;
79
+ padding-left: 0;
80
+ li {
81
+ padding: 1rem 0;
82
+ margin-right: 2%;
83
+ width: 18%;
84
+ box-sizing: border-box;
85
+ a {
86
+ display: block;
87
+ overflow: hidden;
88
+ .thumb-image {
89
+ display: block;
90
+ margin: 0 auto;
91
+ width: 80%;
92
+ height: 120px;
93
+ background-size: contain;
94
+ background-repeat: no-repeat;
95
+ background-position: center;
96
+ text-indent: -9999px;
97
+ }
98
+ @media all and (max-width: 640px){
99
+ .thumb-image {
100
+ height: 80px;
101
+ }
102
+ }
103
+ }
104
+ .caption {
105
+ margin: 0.5rem 0;
106
+ text-align: center;
107
+ font-size: 0.8rem;
108
+ }
109
+ }
110
+ @media all and (max-width: 640px){
111
+ li {
112
+ width: 31.3%;
113
+ }
114
+ }
115
+ }
116
+ .texts-list {
117
+ padding-left: 0.5rem;
118
+ li {
119
+ line-height: 1.7rem;
120
+ .post-date {
121
+ margin-right: 0.3rem;
122
+ margin-left: -0.2rem;
123
+ font-size: 0.9rem;
124
+ color: $metaFontColor;
125
+ }
126
+ }
127
+ li::before {
128
+ content: '_';
129
+ }
130
+ }
131
+ }
132
+ .post-wrapper {
133
+ header {
134
+ height: 2rem;
135
+ }
136
+ aside {
137
+ position: absolute;
138
+ top: 0;
139
+ right: 0;
140
+ p {
141
+ margin: 0;
142
+ }
143
+ }
144
+ @media (max-width: 640px) {
145
+ aside {
146
+ top: -2rem;
147
+ }
148
+ }
149
+ }
150
+ .artwork-wrapper {
151
+ header {
152
+ h1 {
153
+ display: none;
154
+ }
155
+ }
156
+ .artwork-content {
157
+ margin-bottom: 4rem;
158
+ .artwork-image {
159
+ img {
160
+ display: block;
161
+ margin: 0 auto;
162
+ max-width: 80%;
163
+ max-height: 720px;
164
+ }
165
+ p {
166
+ text-align: center;
167
+ }
168
+ }
169
+ @media all and (max-width: 960px){
170
+ .artwork-image {
171
+ img {
172
+ max-width: 90%;
173
+ }
174
+ }
175
+ }
176
+ @media all and (max-width: 640px){
177
+ .artwork-image {
178
+ img {
179
+ max-width: 100%;
180
+ }
181
+ }
182
+ }
183
+ }
184
+ }
185
+ .page-wrapper {
186
+ .page-content {
187
+ h2 {
188
+ margin-top: 2rem;
189
+ margin-bottom: 1rem;
190
+ }
191
+ h3 {
192
+ margin-top: 1.8rem;
193
+ }
194
+ ul {
195
+ padding-left: 0;
196
+ li {
197
+ line-height: 1.6rem;
198
+ }
199
+ }
200
+ .about-info {
201
+ margin-bottom: 2rem;
202
+ }
203
+ }
204
+ }
205
+ .cover-wrapper {
206
+ h1 {
207
+ display: none;
208
+ }
209
+ .cover-image {
210
+ img {
211
+ display: block;
212
+ margin: 0 auto;
213
+ max-height: 720px;
214
+ }
215
+ p {
216
+ text-align: center;
217
+ }
218
+ }
219
+ @media all and (max-width: 960px){
220
+ .cover-image {
221
+ img {
222
+ max-width: 90%;
223
+ }
224
+ }
225
+ }
226
+ @media all and (max-width: 640px){
227
+ .cover-image {
228
+ img {
229
+ max-width: 100%;
230
+ }
231
+ }
232
+ }
233
+ }
234
+ }
235
+ .site-footer {
236
+ padding: 0.2em;
237
+ bottom: 0;
238
+ .copyright {
239
+ text-align: center;
240
+ color: $metaFontColor;
241
+ font-size: 0.8rem;
242
+ a {
243
+ text-decoration: underline;
244
+ color: $metaFontColor;
245
+ }
246
+ }
247
+ }
248
+ }
@@ -0,0 +1 @@
1
+ /* To customize, Write your code here. */
@@ -0,0 +1 @@
1
+ // To customize, Write your code here.
@@ -0,0 +1,8 @@
1
+ The MIT License (MIT)
2
+ Copyright © Nicolas Gallagher and Jonathan Neal
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5
+
6
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7
+
8
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,447 @@
1
+ /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
2
+
3
+ /* Document
4
+ ========================================================================== */
5
+
6
+ /**
7
+ * 1. Correct the line height in all browsers.
8
+ * 2. Prevent adjustments of font size after orientation changes in
9
+ * IE on Windows Phone and in iOS.
10
+ */
11
+
12
+ html {
13
+ line-height: 1.15; /* 1 */
14
+ -ms-text-size-adjust: 100%; /* 2 */
15
+ -webkit-text-size-adjust: 100%; /* 2 */
16
+ }
17
+
18
+ /* Sections
19
+ ========================================================================== */
20
+
21
+ /**
22
+ * Remove the margin in all browsers (opinionated).
23
+ */
24
+
25
+ body {
26
+ margin: 0;
27
+ }
28
+
29
+ /**
30
+ * Add the correct display in IE 9-.
31
+ */
32
+
33
+ article,
34
+ aside,
35
+ footer,
36
+ header,
37
+ nav,
38
+ section {
39
+ display: block;
40
+ }
41
+
42
+ /**
43
+ * Correct the font size and margin on `h1` elements within `section` and
44
+ * `article` contexts in Chrome, Firefox, and Safari.
45
+ */
46
+
47
+ h1 {
48
+ font-size: 2em;
49
+ margin: 0.67em 0;
50
+ }
51
+
52
+ /* Grouping content
53
+ ========================================================================== */
54
+
55
+ /**
56
+ * Add the correct display in IE 9-.
57
+ * 1. Add the correct display in IE.
58
+ */
59
+
60
+ figcaption,
61
+ figure,
62
+ main { /* 1 */
63
+ display: block;
64
+ }
65
+
66
+ /**
67
+ * Add the correct margin in IE 8.
68
+ */
69
+
70
+ figure {
71
+ margin: 1em 40px;
72
+ }
73
+
74
+ /**
75
+ * 1. Add the correct box sizing in Firefox.
76
+ * 2. Show the overflow in Edge and IE.
77
+ */
78
+
79
+ hr {
80
+ box-sizing: content-box; /* 1 */
81
+ height: 0; /* 1 */
82
+ overflow: visible; /* 2 */
83
+ }
84
+
85
+ /**
86
+ * 1. Correct the inheritance and scaling of font size in all browsers.
87
+ * 2. Correct the odd `em` font sizing in all browsers.
88
+ */
89
+
90
+ pre {
91
+ font-family: monospace, monospace; /* 1 */
92
+ font-size: 1em; /* 2 */
93
+ }
94
+
95
+ /* Text-level semantics
96
+ ========================================================================== */
97
+
98
+ /**
99
+ * 1. Remove the gray background on active links in IE 10.
100
+ * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
101
+ */
102
+
103
+ a {
104
+ background-color: transparent; /* 1 */
105
+ -webkit-text-decoration-skip: objects; /* 2 */
106
+ }
107
+
108
+ /**
109
+ * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
110
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
111
+ */
112
+
113
+ abbr[title] {
114
+ border-bottom: none; /* 1 */
115
+ text-decoration: underline; /* 2 */
116
+ text-decoration: underline dotted; /* 2 */
117
+ }
118
+
119
+ /**
120
+ * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
121
+ */
122
+
123
+ b,
124
+ strong {
125
+ font-weight: inherit;
126
+ }
127
+
128
+ /**
129
+ * Add the correct font weight in Chrome, Edge, and Safari.
130
+ */
131
+
132
+ b,
133
+ strong {
134
+ font-weight: bolder;
135
+ }
136
+
137
+ /**
138
+ * 1. Correct the inheritance and scaling of font size in all browsers.
139
+ * 2. Correct the odd `em` font sizing in all browsers.
140
+ */
141
+
142
+ code,
143
+ kbd,
144
+ samp {
145
+ font-family: monospace, monospace; /* 1 */
146
+ font-size: 1em; /* 2 */
147
+ }
148
+
149
+ /**
150
+ * Add the correct font style in Android 4.3-.
151
+ */
152
+
153
+ dfn {
154
+ font-style: italic;
155
+ }
156
+
157
+ /**
158
+ * Add the correct background and color in IE 9-.
159
+ */
160
+
161
+ mark {
162
+ background-color: #ff0;
163
+ color: #000;
164
+ }
165
+
166
+ /**
167
+ * Add the correct font size in all browsers.
168
+ */
169
+
170
+ small {
171
+ font-size: 80%;
172
+ }
173
+
174
+ /**
175
+ * Prevent `sub` and `sup` elements from affecting the line height in
176
+ * all browsers.
177
+ */
178
+
179
+ sub,
180
+ sup {
181
+ font-size: 75%;
182
+ line-height: 0;
183
+ position: relative;
184
+ vertical-align: baseline;
185
+ }
186
+
187
+ sub {
188
+ bottom: -0.25em;
189
+ }
190
+
191
+ sup {
192
+ top: -0.5em;
193
+ }
194
+
195
+ /* Embedded content
196
+ ========================================================================== */
197
+
198
+ /**
199
+ * Add the correct display in IE 9-.
200
+ */
201
+
202
+ audio,
203
+ video {
204
+ display: inline-block;
205
+ }
206
+
207
+ /**
208
+ * Add the correct display in iOS 4-7.
209
+ */
210
+
211
+ audio:not([controls]) {
212
+ display: none;
213
+ height: 0;
214
+ }
215
+
216
+ /**
217
+ * Remove the border on images inside links in IE 10-.
218
+ */
219
+
220
+ img {
221
+ border-style: none;
222
+ }
223
+
224
+ /**
225
+ * Hide the overflow in IE.
226
+ */
227
+
228
+ svg:not(:root) {
229
+ overflow: hidden;
230
+ }
231
+
232
+ /* Forms
233
+ ========================================================================== */
234
+
235
+ /**
236
+ * 1. Change the font styles in all browsers (opinionated).
237
+ * 2. Remove the margin in Firefox and Safari.
238
+ */
239
+
240
+ button,
241
+ input,
242
+ optgroup,
243
+ select,
244
+ textarea {
245
+ font-family: sans-serif; /* 1 */
246
+ font-size: 100%; /* 1 */
247
+ line-height: 1.15; /* 1 */
248
+ margin: 0; /* 2 */
249
+ }
250
+
251
+ /**
252
+ * Show the overflow in IE.
253
+ * 1. Show the overflow in Edge.
254
+ */
255
+
256
+ button,
257
+ input { /* 1 */
258
+ overflow: visible;
259
+ }
260
+
261
+ /**
262
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
263
+ * 1. Remove the inheritance of text transform in Firefox.
264
+ */
265
+
266
+ button,
267
+ select { /* 1 */
268
+ text-transform: none;
269
+ }
270
+
271
+ /**
272
+ * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
273
+ * controls in Android 4.
274
+ * 2. Correct the inability to style clickable types in iOS and Safari.
275
+ */
276
+
277
+ button,
278
+ html [type="button"], /* 1 */
279
+ [type="reset"],
280
+ [type="submit"] {
281
+ -webkit-appearance: button; /* 2 */
282
+ }
283
+
284
+ /**
285
+ * Remove the inner border and padding in Firefox.
286
+ */
287
+
288
+ button::-moz-focus-inner,
289
+ [type="button"]::-moz-focus-inner,
290
+ [type="reset"]::-moz-focus-inner,
291
+ [type="submit"]::-moz-focus-inner {
292
+ border-style: none;
293
+ padding: 0;
294
+ }
295
+
296
+ /**
297
+ * Restore the focus styles unset by the previous rule.
298
+ */
299
+
300
+ button:-moz-focusring,
301
+ [type="button"]:-moz-focusring,
302
+ [type="reset"]:-moz-focusring,
303
+ [type="submit"]:-moz-focusring {
304
+ outline: 1px dotted ButtonText;
305
+ }
306
+
307
+ /**
308
+ * Correct the padding in Firefox.
309
+ */
310
+
311
+ fieldset {
312
+ padding: 0.35em 0.75em 0.625em;
313
+ }
314
+
315
+ /**
316
+ * 1. Correct the text wrapping in Edge and IE.
317
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
318
+ * 3. Remove the padding so developers are not caught out when they zero out
319
+ * `fieldset` elements in all browsers.
320
+ */
321
+
322
+ legend {
323
+ box-sizing: border-box; /* 1 */
324
+ color: inherit; /* 2 */
325
+ display: table; /* 1 */
326
+ max-width: 100%; /* 1 */
327
+ padding: 0; /* 3 */
328
+ white-space: normal; /* 1 */
329
+ }
330
+
331
+ /**
332
+ * 1. Add the correct display in IE 9-.
333
+ * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
334
+ */
335
+
336
+ progress {
337
+ display: inline-block; /* 1 */
338
+ vertical-align: baseline; /* 2 */
339
+ }
340
+
341
+ /**
342
+ * Remove the default vertical scrollbar in IE.
343
+ */
344
+
345
+ textarea {
346
+ overflow: auto;
347
+ }
348
+
349
+ /**
350
+ * 1. Add the correct box sizing in IE 10-.
351
+ * 2. Remove the padding in IE 10-.
352
+ */
353
+
354
+ [type="checkbox"],
355
+ [type="radio"] {
356
+ box-sizing: border-box; /* 1 */
357
+ padding: 0; /* 2 */
358
+ }
359
+
360
+ /**
361
+ * Correct the cursor style of increment and decrement buttons in Chrome.
362
+ */
363
+
364
+ [type="number"]::-webkit-inner-spin-button,
365
+ [type="number"]::-webkit-outer-spin-button {
366
+ height: auto;
367
+ }
368
+
369
+ /**
370
+ * 1. Correct the odd appearance in Chrome and Safari.
371
+ * 2. Correct the outline style in Safari.
372
+ */
373
+
374
+ [type="search"] {
375
+ -webkit-appearance: textfield; /* 1 */
376
+ outline-offset: -2px; /* 2 */
377
+ }
378
+
379
+ /**
380
+ * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
381
+ */
382
+
383
+ [type="search"]::-webkit-search-cancel-button,
384
+ [type="search"]::-webkit-search-decoration {
385
+ -webkit-appearance: none;
386
+ }
387
+
388
+ /**
389
+ * 1. Correct the inability to style clickable types in iOS and Safari.
390
+ * 2. Change font properties to `inherit` in Safari.
391
+ */
392
+
393
+ ::-webkit-file-upload-button {
394
+ -webkit-appearance: button; /* 1 */
395
+ font: inherit; /* 2 */
396
+ }
397
+
398
+ /* Interactive
399
+ ========================================================================== */
400
+
401
+ /*
402
+ * Add the correct display in IE 9-.
403
+ * 1. Add the correct display in Edge, IE, and Firefox.
404
+ */
405
+
406
+ details, /* 1 */
407
+ menu {
408
+ display: block;
409
+ }
410
+
411
+ /*
412
+ * Add the correct display in all browsers.
413
+ */
414
+
415
+ summary {
416
+ display: list-item;
417
+ }
418
+
419
+ /* Scripting
420
+ ========================================================================== */
421
+
422
+ /**
423
+ * Add the correct display in IE 9-.
424
+ */
425
+
426
+ canvas {
427
+ display: inline-block;
428
+ }
429
+
430
+ /**
431
+ * Add the correct display in IE.
432
+ */
433
+
434
+ template {
435
+ display: none;
436
+ }
437
+
438
+ /* Hidden
439
+ ========================================================================== */
440
+
441
+ /**
442
+ * Add the correct display in IE 10-.
443
+ */
444
+
445
+ [hidden] {
446
+ display: none;
447
+ }
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "jekyll-theme-lightning";
metadata ADDED
@@ -0,0 +1,122 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-lightning
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - paikwiki
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-08-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.6'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-feed
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.9'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.9'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-seo-tag
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.1'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.1'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.15'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.15'
69
+ description:
70
+ email:
71
+ - paikwiki@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - LICENSE
77
+ - README.md
78
+ - _includes/footer.html
79
+ - _includes/head.html
80
+ - _includes/navigation.html
81
+ - _layouts/artwork.html
82
+ - _layouts/artworks.html
83
+ - _layouts/cover.html
84
+ - _layouts/cv.html
85
+ - _layouts/default.html
86
+ - _layouts/page.html
87
+ - _layouts/text.html
88
+ - _layouts/texts.html
89
+ - _sass/jekyll-theme-lightning.scss
90
+ - _sass/jekyll-theme-lightning/_base.scss
91
+ - _sass/jekyll-theme-lightning/_fonts.scss
92
+ - _sass/jekyll-theme-lightning/_layout.scss
93
+ - assets/custom.css
94
+ - assets/custom.js
95
+ - assets/lib/normalize/LICENSE
96
+ - assets/lib/normalize/normalize.css
97
+ - assets/style.scss
98
+ homepage: https://github.com/jekyll-theme-lightning/lightning
99
+ licenses:
100
+ - MIT
101
+ metadata: {}
102
+ post_install_message:
103
+ rdoc_options: []
104
+ require_paths:
105
+ - lib
106
+ required_ruby_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ required_rubygems_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ requirements: []
117
+ rubyforge_project:
118
+ rubygems_version: 2.7.6
119
+ signing_key:
120
+ specification_version: 4
121
+ summary: jekyll-theme-lightning - Jekyll theme for art portfolio website
122
+ test_files: []