jekyll-theme-ichi 0.4.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 736241bd25f9df6e5a26f25dcb5ed131c39a0927
4
+ data.tar.gz: e751aa633a56a206313346ab4f28c7c52c31c792
5
+ SHA512:
6
+ metadata.gz: 519709cf24cc21389f6dc5e6e03968e7a30640bc6ad812181bf90d671845a5519e0906a2be2c54c0572cdf14c81dabf4e160d7287f0847ffcf8b3aca5f6dba38
7
+ data.tar.gz: 5e59289024ea36a3839a350fecc300036015e2cf795471dda157660a947c6bf22ba4b84d1603cc3d5939761880cb893d4c550dc76dad098768b5df6e6f6fab98
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Tuan Bui
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.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # Jekyll - Theme - Ichi
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
+ ## Installation
6
+
7
+ Add this line to your Jekyll site's `Gemfile`:
8
+
9
+ ```ruby
10
+ gem "jekyll-theme-ichi"
11
+ ```
12
+
13
+ And add this line to your Jekyll site's `_config.yml`:
14
+
15
+ ```yaml
16
+ theme: jekyll-theme-ichi
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install jekyll-theme-ichi
26
+
27
+ ## Contributing
28
+
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/ntuanb/jekyll-theme-ichi. 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.
30
+
31
+ ## Development
32
+
33
+ To set up your environment to develop this theme, run `bundle install`.
34
+
35
+ 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.
36
+
37
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
38
+ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-ichi.gemspec` accordingly.
39
+
40
+ ## Deploy
41
+ - Update version of gemspec
42
+ - `gem build jekyll-theme-ichi.gemspec`
43
+ - `gem push jekyll-theme-ichi-VERSION.gem`
44
+ - Visit [https://rubygems.org/gems/jekyll-theme-ichi](https://rubygems.org/gems/jekyll-theme-ichi) to see gem.
45
+
46
+ ## Demo
47
+ - Visit [https://ntuanb.github.io/jekyll-theme-ichi/](https://ntuanb.github.io/jekyll-theme-ichi/) to see it live.
48
+
49
+ ## License
50
+
51
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
52
+
File without changes
data/assets/style.css ADDED
@@ -0,0 +1,187 @@
1
+ @import url('https://fonts.googleapis.com/css?family=Montserrat');
2
+
3
+ /* Reset */
4
+ html, body, div, span, applet, object, iframe,
5
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
6
+ a, abbr, acronym, address, big, cite, code,
7
+ del, dfn, em, img, ins, kbd, q, s, samp,
8
+ small, strike, strong, sub, sup, tt, var,
9
+ b, u, i, center,
10
+ dl, dt, dd, ol, ul, li,
11
+ fieldset, form, label, legend,
12
+ table, caption, tbody, tfoot, thead, tr, th, td,
13
+ article, aside, canvas, details, embed,
14
+ figure, figcaption, footer, header, hgroup,
15
+ menu, nav, output, ruby, section, summary,
16
+ time, mark, audio, video {
17
+ margin: 0;
18
+ padding: 0;
19
+ border: 0;
20
+ font-size: 100%;
21
+ font: inherit;
22
+ vertical-align: baseline;
23
+ }
24
+ /* HTML5 display-role reset for older browsers */
25
+ article, aside, details, figcaption, figure,
26
+ footer, header, hgroup, menu, nav, section {
27
+ display: block;
28
+ }
29
+ body {
30
+ line-height: 1;
31
+ }
32
+ ol, ul {
33
+ list-style: none;
34
+ }
35
+ blockquote, q {
36
+ quotes: none;
37
+ }
38
+ blockquote:before, blockquote:after,
39
+ q:before, q:after {
40
+ content: '';
41
+ content: none;
42
+ }
43
+ table {
44
+ border-collapse: collapse;
45
+ border-spacing: 0;
46
+ }
47
+
48
+ /* Style */
49
+ body {
50
+ background: #3498db;
51
+ font-size: 16px;
52
+ color: #fff;
53
+ text-shadow: #fff 0px 0px 10px;
54
+ position: absolute;
55
+ top: 0;
56
+ bottom: 0;
57
+ right: 0;
58
+ left: 0;
59
+ margin: 0;
60
+ background-size: cover;
61
+ background-repeat: no-repeat;
62
+ background-position: center center;
63
+ background-attachment: fixed;
64
+ font-family: 'Montserrat', sans-serif;
65
+ }
66
+
67
+ .container {
68
+ height: 100vh;
69
+ width: 100vw;
70
+ display: flex;
71
+ justify-content: center;
72
+ align-items: center;
73
+ }
74
+
75
+ .name {
76
+ display: block;
77
+ text-align: center;
78
+ font-size: 3rem;
79
+ line-height: 3rem;
80
+ margin-bottom: 1rem;
81
+ text-shadow: #fff 0px 0px 10px;
82
+ }
83
+
84
+ .description {
85
+ display: block;
86
+ text-align: center;
87
+ font-size: 1.5rem;
88
+ line-height: 1.5rem;
89
+ margin-bottom: 1rem;
90
+ text-shadow: #fff 0px 0px 10px;
91
+ }
92
+
93
+ .buttons {
94
+ display: flex;
95
+ justify-content: center;
96
+ flex-wrap: wrap;
97
+ max-width: 75vw;
98
+ }
99
+
100
+ .button,
101
+ .button:before,
102
+ .button .fab {
103
+ transition: all 0.35s;
104
+ transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
105
+ }
106
+ .button:before {
107
+ top: 90%;
108
+ left: -110%;
109
+ }
110
+ .button .fab {
111
+ transform: scale(0.8);
112
+ }
113
+
114
+ /* Brand */
115
+ .button.facebook:before {
116
+ background-color: #3b5998;
117
+ }
118
+ .button.facebook .fab {
119
+ color: #3b5998;
120
+ }
121
+ .button.twitter:before {
122
+ background-color: #3cf;
123
+ }
124
+ .button.twitter .fab {
125
+ color: #3cf;
126
+ }
127
+ .button.google:before {
128
+ background-color: #dc4a38;
129
+ }
130
+ .button.google .fab {
131
+ color: #dc4a38;
132
+ }
133
+ .button.dribbble:before {
134
+ background-color: #f26798;
135
+ }
136
+ .button.dribbble .fab {
137
+ color: #f26798;
138
+ }
139
+ .button.github:before {
140
+ background-color: #1f1f1f;
141
+ }
142
+ .button.github .fab {
143
+ color: #1f1f1f;
144
+ }
145
+ .button.instagram:before {
146
+ background-color: #125688;
147
+ }
148
+ .button.instagram .fab {
149
+ color: #125688;
150
+ }
151
+
152
+ .button:focus:before,
153
+ .button:hover:before {
154
+ top: -10%;
155
+ left: -10%;
156
+ }
157
+ .button:focus .fab,
158
+ .button:hover .fab {
159
+ color: #fff;
160
+ transform: scale(1);
161
+ }
162
+ .button {
163
+ display: inline-block;
164
+ background-color: #fff;
165
+ width: 5rem;
166
+ height: 5rem;
167
+ line-height: 5rem;
168
+ margin: 1rem;
169
+ text-align: center;
170
+ position: relative;
171
+ overflow: hidden;
172
+ border-radius: 28%;
173
+ border: none;
174
+ box-shadow: 0 0 10px 1px white;
175
+ }
176
+ .button:before {
177
+ content: '';
178
+ width: 120%;
179
+ height: 120%;
180
+ position: absolute;
181
+ transform: rotate(45deg);
182
+ }
183
+ .button .fab {
184
+ font-size: 38px;
185
+ vertical-align: middle;
186
+ }
187
+
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-ichi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.0
5
+ platform: ruby
6
+ authors:
7
+ - Tuan Bui
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-02-16 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.7'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.7'
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.16'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.16'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '12.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '12.0'
55
+ description:
56
+ email:
57
+ - ntuanb@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.txt
63
+ - README.md
64
+ - _layouts/default.html
65
+ - assets/style.css
66
+ homepage: https://github.com/ntuanb/jekyll-theme-ichi
67
+ licenses:
68
+ - MIT
69
+ metadata: {}
70
+ post_install_message:
71
+ rdoc_options: []
72
+ require_paths:
73
+ - lib
74
+ required_ruby_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ required_rubygems_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ requirements: []
85
+ rubyforge_project:
86
+ rubygems_version: 2.5.2.3
87
+ signing_key:
88
+ specification_version: 4
89
+ summary: Simple Jekyll theme for a single page website. Visit https://ntuanb.github.io/jekyll-theme-ichi/
90
+ to see it live.
91
+ test_files: []