jekyll-theme-jt-alpha 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +48 -0
  4. data/_includes/footer.html +5 -0
  5. data/_includes/navigation.html +9 -0
  6. data/_layouts/artwork.html +23 -0
  7. data/_layouts/default.html +26 -0
  8. data/_layouts/page.html +12 -0
  9. data/_layouts/post.html +13 -0
  10. data/_layouts/text.html +20 -0
  11. data/_sass/jekyll-theme-jt-alpha.scss +13 -0
  12. data/_sass/jekyll-theme-jt-alpha/_base.scss +24 -0
  13. data/_sass/jekyll-theme-jt-alpha/_fonts.scss +9 -0
  14. data/_sass/jekyll-theme-jt-alpha/_layout.scss +162 -0
  15. data/assets/artworks/artwork1.jpg +0 -0
  16. data/assets/artworks/artwork10.jpg +0 -0
  17. data/assets/artworks/artwork11.jpg +0 -0
  18. data/assets/artworks/artwork12.jpg +0 -0
  19. data/assets/artworks/artwork13.jpg +0 -0
  20. data/assets/artworks/artwork14.jpg +0 -0
  21. data/assets/artworks/artwork15.jpg +0 -0
  22. data/assets/artworks/artwork16.jpg +0 -0
  23. data/assets/artworks/artwork17.jpg +0 -0
  24. data/assets/artworks/artwork18.jpg +0 -0
  25. data/assets/artworks/artwork19.jpg +0 -0
  26. data/assets/artworks/artwork2.jpg +0 -0
  27. data/assets/artworks/artwork20.jpg +0 -0
  28. data/assets/artworks/artwork21.jpg +0 -0
  29. data/assets/artworks/artwork22.jpg +0 -0
  30. data/assets/artworks/artwork3.jpg +0 -0
  31. data/assets/artworks/artwork4.jpg +0 -0
  32. data/assets/artworks/artwork5.jpg +0 -0
  33. data/assets/artworks/artwork6.jpg +0 -0
  34. data/assets/artworks/artwork7.jpg +0 -0
  35. data/assets/artworks/artwork8.jpg +0 -0
  36. data/assets/artworks/artwork9.jpg +0 -0
  37. data/assets/artworks/thumbs/artwork1.jpg +0 -0
  38. data/assets/artworks/thumbs/artwork10.jpg +0 -0
  39. data/assets/artworks/thumbs/artwork11.jpg +0 -0
  40. data/assets/artworks/thumbs/artwork12.jpg +0 -0
  41. data/assets/artworks/thumbs/artwork13.jpg +0 -0
  42. data/assets/artworks/thumbs/artwork14.jpg +0 -0
  43. data/assets/artworks/thumbs/artwork16.jpg +0 -0
  44. data/assets/artworks/thumbs/artwork17.jpg +0 -0
  45. data/assets/artworks/thumbs/artwork18.jpg +0 -0
  46. data/assets/artworks/thumbs/artwork19.jpg +0 -0
  47. data/assets/artworks/thumbs/artwork2.jpg +0 -0
  48. data/assets/artworks/thumbs/artwork20.jpg +0 -0
  49. data/assets/artworks/thumbs/artwork21.jpg +0 -0
  50. data/assets/artworks/thumbs/artwork22.jpg +0 -0
  51. data/assets/artworks/thumbs/artwork3.jpg +0 -0
  52. data/assets/artworks/thumbs/artwork4.jpg +0 -0
  53. data/assets/artworks/thumbs/artwork5.jpg +0 -0
  54. data/assets/artworks/thumbs/artwork6.jpg +0 -0
  55. data/assets/artworks/thumbs/artwork7.jpg +0 -0
  56. data/assets/artworks/thumbs/artwork8.jpg +0 -0
  57. data/assets/artworks/thumbs/artwork9.jpg +0 -0
  58. data/assets/lib/normalize/LICENSE +8 -0
  59. data/assets/lib/normalize/normalize.css +447 -0
  60. metadata +144 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 3c8b59a2712258c4a52a82930976ce41143edc74
4
+ data.tar.gz: c8a8b8a36a5992dd0dd35c83a9eb5e6cde70cf5e
5
+ SHA512:
6
+ metadata.gz: 5c5e4ca3aaf73086a918d1ef63b169abe69478da943ff0c65bfed8c07d3e8de77ddb76104861b65655eba85046e7925f4a7bc5a27c97d1530ae68f4dd6be78d9
7
+ data.tar.gz: c69895f524f02ea79467c8fd8f3c3b68ab017746d44406528059781e68794a4c4a1413169846c3c96f5eac83ed2ce68072d529894aac9e3b2360ff335904a3e2
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 paikwiki
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
+ # JT-Alpha
2
+
3
+ Welcome to your new Jekyll 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-jt-alpha"
13
+ ```
14
+
15
+ And add this line to your Jekyll site's `_config.yml`:
16
+
17
+ ```yaml
18
+ theme: jekyll-theme-jt-alpha
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install jt-alpha
28
+
29
+ ## Usage
30
+
31
+ I'm preparing a usage.
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at [https://github.com/paikwiki/jekyll-theme-jt-alpha](https://github.com/paikwiki/jekyll-theme-jt-alpha). 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-jt-alpha.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,5 @@
1
+ <footer class="site-footer">
2
+ <p class="copyright">
3
+ &copy; {{ site.data.author.copyright_year }}. <a href="mailto://{{ site.data.author.email }}">{{ site.data.author.name }}</a> ALL RIGHTS RESERVED.
4
+ </p>
5
+ </footer>
@@ -0,0 +1,9 @@
1
+ <section class="navigation">
2
+ <nav>
3
+ <ul>
4
+ {% for item in site.data.navigation.items %}
5
+ <li><a href="{{ item.url | prepend:site.baseurl }}">{{ item.title }}</a></li>
6
+ {% endfor %}
7
+ </ul>
8
+ </nav>
9
+ </section>
@@ -0,0 +1,23 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article class="post-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 | prepend:site.baseurl }}" 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="{{ '/' | prepend:site.baseurl }}">&lt; Back</a></p>
22
+ </aside>
23
+ </article>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html lang="ko">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
7
+ <title>{{ site.title }}</title>
8
+ <link rel="stylesheet" type="text/css" href="{{ '/assets/lib/normalize/normalize.css' | prepend:site.baseurl }}">
9
+ <link rel="stylesheet" type="text/css" href="{{ '/css/styles.css' | prepend:site.baseurl }}">
10
+ </head>
11
+ <body>
12
+ <article class="global-wrapper">
13
+ <header class="site-header">
14
+ <h1><a href="{{ '/' | prepend:site.baseurl }}">{{ site.title }}</a></h1>
15
+ {% if site.description %}
16
+ <p class="tagline">{{ site.description }}</p>
17
+ {% endif %}
18
+ {% include navigation.html %}
19
+ </header>
20
+ <section class="site-content">
21
+ {{ content }}
22
+ </section>
23
+ {% include footer.html %}
24
+ </article>
25
+ </body>
26
+ </html>
@@ -0,0 +1,12 @@
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
+ {{ content }}
11
+ </section>
12
+ </article>
@@ -0,0 +1,13 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ {% if page.image %}
5
+ <img src="{{ page.image }}" alt="">
6
+ {% endif %}
7
+ {% if page.caption %}
8
+ <p>{{ page.caption}}</p>
9
+ {% endif %}
10
+
11
+ <div>
12
+ {{ content }}
13
+ </div>
@@ -0,0 +1,20 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article class="post-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 | prepend:site.baseurl }}" alt="{{ page.title }}">
13
+ </section>
14
+ {% endif %}
15
+ {{ content }}
16
+ </section>
17
+ <aside>
18
+ <p><a href="{{ '/texts' | prepend:site.baseurl }}">&lt; Back</a></p>
19
+ </aside>
20
+ </article>
@@ -0,0 +1,13 @@
1
+ @charset "utf-8";
2
+
3
+ $baseFontSize: 10pt;
4
+ $baseFontColor: #333333;
5
+ $metaFontColor: dimgray;
6
+
7
+ // Import webfont
8
+ @import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css);
9
+
10
+ // Import partials
11
+ @import "jekyll-theme-jt-alpha/base";
12
+ @import "jekyll-theme-jt-alpha/fonts";
13
+ @import "jekyll-theme-jt-alpha/layout";
@@ -0,0 +1,24 @@
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 {
11
+ margin-bottom: 1em;
12
+ }
13
+
14
+ h2:before {
15
+ content: "-";
16
+ }
17
+
18
+ a {
19
+ text-decoration: none;
20
+ }
21
+
22
+ a:hover {
23
+ text-decoration: underline;
24
+ }
@@ -0,0 +1,9 @@
1
+ html {
2
+ font-size: $baseFontSize;
3
+ }
4
+
5
+ h1, h2, h3, h4, h5, h6,
6
+ p, span, pre, a, blockquote {
7
+ font-family: 'Noto Sans KR', 'Nanum Barun Gothic', 'Nanum Gothic', 'Malgun Gothic', 'Dotum', sans-serif;
8
+ color: $baseFontColor;
9
+ }
@@ -0,0 +1,162 @@
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
+ font-size: 1rem;
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
+ ul {
25
+ display: flex;
26
+ flex-wrap: wrap;
27
+ margin: 1rem 0 0 0;
28
+ padding-left: 0;
29
+ li {
30
+ padding: 0.5rem;
31
+ padding-left: 0 ;
32
+ padding-top: 0;
33
+ list-style: none;
34
+ }
35
+ }
36
+ }
37
+ }
38
+ .site-content {
39
+ position: relative;
40
+ margin-bottom: 4rem;
41
+ h1 {
42
+ font-size: 1rem;
43
+ }
44
+ h2 {
45
+ font-size: 1rem;
46
+ }
47
+ .posts-content {
48
+ .artworks-list {
49
+ display: flex;
50
+ flex-wrap: wrap;
51
+ flex-flow: row wrap;
52
+ margin: 0;
53
+ padding-left: 0;
54
+ li {
55
+ padding: 1rem 0;
56
+ margin-right: 2%;
57
+ width: 18%;
58
+ list-style: none;
59
+ box-sizing: border-box;
60
+ a {
61
+ display: block;
62
+ overflow: hidden;
63
+ .thumb-image {
64
+ display: block;
65
+ margin: 0 auto;
66
+ width: 80%;
67
+ height: 120px;
68
+ background-size: contain;
69
+ background-repeat: no-repeat;
70
+ background-position: top center;
71
+ text-indent: -9999px;
72
+ }
73
+ @media all and (max-width: 640px){
74
+ .thumb-image {
75
+ height: 80px;
76
+ }
77
+ }
78
+ }
79
+ .caption {
80
+ margin: 0.5rem 0;
81
+ text-align: center;
82
+ font-size: 0.8rem;
83
+ }
84
+ }
85
+ @media all and (max-width: 640px){
86
+ li {
87
+ width: 31.3%;
88
+ }
89
+ }
90
+ }
91
+ .texts-list {
92
+ list-style: none;
93
+ padding-left: 0.5rem;
94
+ li {
95
+ line-height: 1.7rem;
96
+ .post-date {
97
+ margin-right: 0.3rem;
98
+ margin-left: -0.2rem;
99
+ font-size: 0.9rem;
100
+ color: $metaFontColor;
101
+ }
102
+ }
103
+ li:before {
104
+ content: '_';
105
+ }
106
+ }
107
+ }
108
+ .post-wrapper {
109
+ .artwork-content {
110
+ margin-bottom: 4rem;
111
+ .artwork-image {
112
+ img {
113
+ display: block;
114
+ margin: 0 auto;
115
+ max-width: 100%;
116
+ }
117
+ p {
118
+ text-align: center;
119
+ }
120
+ }
121
+ }
122
+ @media all and (max-width: 960px){
123
+ .text-content {
124
+ columns: 2;
125
+ }
126
+ }
127
+ @media all and (max-width: 640px){
128
+ .text-content {
129
+ columns: unset;
130
+ padding: 0 2rem;
131
+ }
132
+ }
133
+ aside {
134
+ position: absolute;
135
+ top: 0;
136
+ right: 0;
137
+ p {
138
+ margin: 0;
139
+ }
140
+ }
141
+ }
142
+ .page-content {
143
+ ul {
144
+ list-style: none;
145
+ padding-left: 0;
146
+ li {
147
+ line-height: 1.4rem;
148
+ }
149
+ }
150
+ .about-info {
151
+ margin-bottom: 2rem;
152
+ }
153
+ }
154
+ }
155
+ .site-footer {
156
+ padding: 0.2em;
157
+ bottom: 0;
158
+ p {
159
+ text-align: center;
160
+ }
161
+ }
162
+ }
@@ -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
+ }
metadata ADDED
@@ -0,0 +1,144 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-jt-alpha
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-04-13 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: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.12'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description:
56
+ email:
57
+ - paikwiki@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE
63
+ - README.md
64
+ - _includes/footer.html
65
+ - _includes/navigation.html
66
+ - _layouts/artwork.html
67
+ - _layouts/default.html
68
+ - _layouts/page.html
69
+ - _layouts/post.html
70
+ - _layouts/text.html
71
+ - _sass/jekyll-theme-jt-alpha.scss
72
+ - _sass/jekyll-theme-jt-alpha/_base.scss
73
+ - _sass/jekyll-theme-jt-alpha/_fonts.scss
74
+ - _sass/jekyll-theme-jt-alpha/_layout.scss
75
+ - assets/artworks/artwork1.jpg
76
+ - assets/artworks/artwork10.jpg
77
+ - assets/artworks/artwork11.jpg
78
+ - assets/artworks/artwork12.jpg
79
+ - assets/artworks/artwork13.jpg
80
+ - assets/artworks/artwork14.jpg
81
+ - assets/artworks/artwork15.jpg
82
+ - assets/artworks/artwork16.jpg
83
+ - assets/artworks/artwork17.jpg
84
+ - assets/artworks/artwork18.jpg
85
+ - assets/artworks/artwork19.jpg
86
+ - assets/artworks/artwork2.jpg
87
+ - assets/artworks/artwork20.jpg
88
+ - assets/artworks/artwork21.jpg
89
+ - assets/artworks/artwork22.jpg
90
+ - assets/artworks/artwork3.jpg
91
+ - assets/artworks/artwork4.jpg
92
+ - assets/artworks/artwork5.jpg
93
+ - assets/artworks/artwork6.jpg
94
+ - assets/artworks/artwork7.jpg
95
+ - assets/artworks/artwork8.jpg
96
+ - assets/artworks/artwork9.jpg
97
+ - assets/artworks/thumbs/artwork1.jpg
98
+ - assets/artworks/thumbs/artwork10.jpg
99
+ - assets/artworks/thumbs/artwork11.jpg
100
+ - assets/artworks/thumbs/artwork12.jpg
101
+ - assets/artworks/thumbs/artwork13.jpg
102
+ - assets/artworks/thumbs/artwork14.jpg
103
+ - assets/artworks/thumbs/artwork16.jpg
104
+ - assets/artworks/thumbs/artwork17.jpg
105
+ - assets/artworks/thumbs/artwork18.jpg
106
+ - assets/artworks/thumbs/artwork19.jpg
107
+ - assets/artworks/thumbs/artwork2.jpg
108
+ - assets/artworks/thumbs/artwork20.jpg
109
+ - assets/artworks/thumbs/artwork21.jpg
110
+ - assets/artworks/thumbs/artwork22.jpg
111
+ - assets/artworks/thumbs/artwork3.jpg
112
+ - assets/artworks/thumbs/artwork4.jpg
113
+ - assets/artworks/thumbs/artwork5.jpg
114
+ - assets/artworks/thumbs/artwork6.jpg
115
+ - assets/artworks/thumbs/artwork7.jpg
116
+ - assets/artworks/thumbs/artwork8.jpg
117
+ - assets/artworks/thumbs/artwork9.jpg
118
+ - assets/lib/normalize/LICENSE
119
+ - assets/lib/normalize/normalize.css
120
+ homepage: https://github.com/paikwiki/jekyll-theme-jt-alpha
121
+ licenses:
122
+ - MIT
123
+ metadata: {}
124
+ post_install_message:
125
+ rdoc_options: []
126
+ require_paths:
127
+ - lib
128
+ required_ruby_version: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
+ required_rubygems_version: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ requirements: []
139
+ rubyforge_project:
140
+ rubygems_version: 2.6.13
141
+ signing_key:
142
+ specification_version: 4
143
+ summary: JT Alpha - Jekyll theme for a portfolio website
144
+ test_files: []