jekyll-theme-kindee-simple 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b2c621086876a7af5d22475275e077f6e7d712470d72d215a7228cb6308d271e
4
+ data.tar.gz: 8494dee0f96755fa5a11a7bc353fadcbf625e188f1514476c15f9b3d18ef3c11
5
+ SHA512:
6
+ metadata.gz: 3c0aecb01e111ae0eac1fca384b72d95c9d5b205b06b176cfb0c2d89fc24d738821719ece2a5cf75f3c8d0b9c798cf63d2c6eb8ab531903fb83c16b05ef8fb6f
7
+ data.tar.gz: 8e123d8780970e83c60e1bf4d84454807efcec3253c255a63adcffe0920c6a89de6d3840365198f7fe64ae74bd3cdf9a5872ca6ad1f63e721eae30991e39a661
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 qinchuan
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,47 @@
1
+ # jekyll-theme-kindee-simple
2
+
3
+ Jekyll-theme-kindee-simple is a simple but not simple theme for jekyll.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your Jekyll site's `Gemfile`:
8
+
9
+ ```ruby
10
+ gem "jekyll-theme-kindee-simple"
11
+ ```
12
+
13
+ And add this line to your Jekyll site's `_config.yml`:
14
+
15
+ ```yaml
16
+ theme: jekyll-theme-kindee-simple
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install jekyll-theme-kindee-simple
26
+
27
+ ## Usage
28
+
29
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/hatakawas/jekyll-theme-kindee-simple. 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.
34
+
35
+ ## Development
36
+
37
+ To set up your environment to develop this theme, run `bundle install`.
38
+
39
+ 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.
40
+
41
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
42
+ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-theme-kindee-simple.gemspec` accordingly.
43
+
44
+ ## License
45
+
46
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
47
+
@@ -0,0 +1,26 @@
1
+ <aside class="site-body-aside">
2
+ <section class="aside-module">
3
+ <h2>Categories</h2>
4
+ <div>
5
+ {%- for category in site.categories -%}
6
+ <span>{{ category | first }}</span><br>
7
+ {%- endfor -%}
8
+ </div>
9
+ </section>
10
+ <section class="aside-module">
11
+ <h2>Tags</h2>
12
+ <div>
13
+ {%- for tag in site.tags -%}
14
+ <span>{{ tag | first }}</span><br>
15
+ {%- endfor -%}
16
+ </div>
17
+ </section>
18
+ <section class="aside-module">
19
+ <h2>Recent Posts</h2>
20
+ <ul>
21
+ {%- for post in site.posts limit: 3 -%}
22
+ <li>- {{ post.title }}</li>
23
+ {%- endfor -%}
24
+ </ul>
25
+ </section>
26
+ </aside>
@@ -0,0 +1,5 @@
1
+ <footer class="site-footer clearfix">
2
+ <div class="copyright">
3
+ COPYRIGHT &copy; 2018 {{ site.author }} ALL RIGHTS RESERVED.
4
+ </div>
5
+ </footer>
@@ -0,0 +1,24 @@
1
+ <head>
2
+ <meta charset="UTF-8">
3
+ <base href="{{ site.baseurl | prepend: site.url }}">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
6
+ <!-- Set render engine for 360 browser -->
7
+ <meta name="renderer" content="webkit">
8
+ <!-- No Baidu Siteapp-->
9
+ <meta http-equiv="Cache-Control" content="no-siteapp" />
10
+ {%- seo -%}
11
+ <!-- Page title icon -->
12
+ <link rel="icon" type="image/png" href="{{ '/favicon.ico' | relative_url }}">
13
+ <!-- Favorites icon -->
14
+ <link rel="shortcut icon" type="image/x-icon" href="{{ '/favicon.ico' | relative_url }}">
15
+ <link rel="bookmark" type="image/x-icon" href="{{ '/favicon.ico' | relative_url }}">
16
+ <link rel="canonical" href="{{ page.url | replace:'index.html','' | relative_url }}">
17
+ <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ '/feed.xml' | relative_url }}">
18
+ <!-- Styles -->
19
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700">
20
+ <link rel="stylesheet" href="https://cdn.bootcss.com/font-awesome/4.5.0/css/font-awesome.min.css">
21
+ <!-- The theme is based on normalize.css -->
22
+ <link rel="stylesheet" href="{{ '/assets/css/normalize.css' | relative_url }}">
23
+ <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
24
+ </head>
@@ -0,0 +1,12 @@
1
+ <header class="site-header">
2
+ <nav>
3
+ <div class="logo"><a rel="author" href="{{ '/' | relative_url }}">{{ site.title | escape }}</a></div>
4
+ <ul>
5
+ <li><a href="#">首页</a></li>
6
+ <li><a href="#">分类</a></li>
7
+ <li><a href="#">归档</a></li>
8
+ <li><a href="{{ '/about.html' | relative_url }}">关于</a></li>
9
+ <li><a href="{{ '/feed.xml' | absolute_url }}">订阅</a></li>
10
+ </ul>
11
+ </nav>
12
+ </header>
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html lang="zh">
3
+
4
+ {%- include head.html -%}
5
+ <body>
6
+ <div class="wrapper">
7
+ {%- include header.html -%}
8
+ <main class="site-body clearfix">
9
+ {{ content }}
10
+ </main>
11
+ {%- include footer.html -%}
12
+ </div>
13
+ </body>
14
+
15
+ </html>
@@ -0,0 +1,22 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="site-body-content layout-home">
6
+ {%- for post in site.posts -%}
7
+ <article class="article-module">
8
+ <header>
9
+ <h2><a href="{{ post.url }}">{{ post.title | escape }}</a></h2>
10
+ <time>{{ post.date | date: site.kindee.date_format }}</time>
11
+ </header>
12
+ <article>
13
+ {{ post.excerpt }}
14
+ </article>
15
+ <footer>
16
+ <span><i class="fa fa-folder" aria-hidden="true"></i>:{{ post.categories }}</span>
17
+ <span><i class="fa fa-tags" aria-hidden="true"></i>:{{ post.tags }}</span>
18
+ </footer>
19
+ </article>
20
+ {%- endfor -%}
21
+ </div>
22
+ {%- include aside.html -%}
@@ -0,0 +1,14 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="site-body-content layout-page">
6
+ <article class="singlepage">
7
+ <header class="singlepage-header">
8
+ <h1 class="singlepage-title">{{ page.title }}</h1>
9
+ </header>
10
+ <div class="singlepage-content">
11
+ {{ content }}
12
+ </div>
13
+ </article>
14
+ </div>
@@ -0,0 +1,20 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="site-body-content layout-post">
6
+ <article class="blogpost" itemscope itemtype="http://schema.org/BlogPosting">
7
+ <header class="blogpost-header">
8
+ <h2 class="blogpost-title" itemprop="name headline">{{ page.title }}</h2>
9
+ <div class="blogpost-meta">
10
+ <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
11
+ {{ page.date | date: site.kindee.date_format }}
12
+ </time>
13
+ </div>
14
+ </header>
15
+ <div class="blogpost-content" itemprop="articleBody">
16
+ {{ content }}
17
+ </div>
18
+ </article>
19
+ </div>
20
+ {%- include aside.html -%}
data/_sass/kindee.scss ADDED
@@ -0,0 +1,7 @@
1
+ @charset "utf-8";
2
+
3
+ @import "kindee/variable";
4
+ @import "kindee/layout";
5
+ @import "kindee/highlight";
6
+
7
+
@@ -0,0 +1,65 @@
1
+ .highlight .hll { background-color: #ffffcc }
2
+ .highlight { background: #f0f3f3; }
3
+ .highlight .c { color: #0099FF; font-style: italic } /* Comment */
4
+ .highlight .err { color: #AA0000; background-color: #FFAAAA } /* Error */
5
+ .highlight .k { color: #006699; font-weight: bold } /* Keyword */
6
+ .highlight .o { color: #555555 } /* Operator */
7
+ .highlight .ch { color: #0099FF; font-style: italic } /* Comment.Hashbang */
8
+ .highlight .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
9
+ .highlight .cp { color: #009999 } /* Comment.Preproc */
10
+ .highlight .cpf { color: #0099FF; font-style: italic } /* Comment.PreprocFile */
11
+ .highlight .c1 { color: #0099FF; font-style: italic } /* Comment.Single */
12
+ .highlight .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
13
+ .highlight .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
14
+ .highlight .ge { font-style: italic } /* Generic.Emph */
15
+ .highlight .gr { color: #FF0000 } /* Generic.Error */
16
+ .highlight .gh { color: #003300; font-weight: bold } /* Generic.Heading */
17
+ .highlight .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
18
+ .highlight .go { color: #AAAAAA } /* Generic.Output */
19
+ .highlight .gp { color: #000099; font-weight: bold } /* Generic.Prompt */
20
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
21
+ .highlight .gu { color: #003300; font-weight: bold } /* Generic.Subheading */
22
+ .highlight .gt { color: #99CC66 } /* Generic.Traceback */
23
+ .highlight .kc { color: #006699; font-weight: bold } /* Keyword.Constant */
24
+ .highlight .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
25
+ .highlight .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
26
+ .highlight .kp { color: #006699 } /* Keyword.Pseudo */
27
+ .highlight .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
28
+ .highlight .kt { color: #007788; font-weight: bold } /* Keyword.Type */
29
+ .highlight .m { color: #FF6600 } /* Literal.Number */
30
+ .highlight .s { color: #CC3300 } /* Literal.String */
31
+ .highlight .na { color: #330099 } /* Name.Attribute */
32
+ .highlight .nb { color: #336666 } /* Name.Builtin */
33
+ .highlight .nc { color: #00AA88; font-weight: bold } /* Name.Class */
34
+ .highlight .no { color: #336600 } /* Name.Constant */
35
+ .highlight .nd { color: #9999FF } /* Name.Decorator */
36
+ .highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
37
+ .highlight .ne { color: #CC0000; font-weight: bold } /* Name.Exception */
38
+ .highlight .nf { color: #CC00FF } /* Name.Function */
39
+ .highlight .nl { color: #9999FF } /* Name.Label */
40
+ .highlight .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
41
+ .highlight .nt { color: #330099; font-weight: bold } /* Name.Tag */
42
+ .highlight .nv { color: #003333 } /* Name.Variable */
43
+ .highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
44
+ .highlight .w { color: #bbbbbb } /* Text.Whitespace */
45
+ .highlight .mb { color: #FF6600 } /* Literal.Number.Bin */
46
+ .highlight .mf { color: #FF6600 } /* Literal.Number.Float */
47
+ .highlight .mh { color: #FF6600 } /* Literal.Number.Hex */
48
+ .highlight .mi { color: #FF6600 } /* Literal.Number.Integer */
49
+ .highlight .mo { color: #FF6600 } /* Literal.Number.Oct */
50
+ .highlight .sb { color: #CC3300 } /* Literal.String.Backtick */
51
+ .highlight .sc { color: #CC3300 } /* Literal.String.Char */
52
+ .highlight .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
53
+ .highlight .s2 { color: #CC3300 } /* Literal.String.Double */
54
+ .highlight .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
55
+ .highlight .sh { color: #CC3300 } /* Literal.String.Heredoc */
56
+ .highlight .si { color: #AA0000 } /* Literal.String.Interpol */
57
+ .highlight .sx { color: #CC3300 } /* Literal.String.Other */
58
+ .highlight .sr { color: #33AAAA } /* Literal.String.Regex */
59
+ .highlight .s1 { color: #CC3300 } /* Literal.String.Single */
60
+ .highlight .ss { color: #FFCC33 } /* Literal.String.Symbol */
61
+ .highlight .bp { color: #336666 } /* Name.Builtin.Pseudo */
62
+ .highlight .vc { color: #003333 } /* Name.Variable.Class */
63
+ .highlight .vg { color: #003333 } /* Name.Variable.Global */
64
+ .highlight .vi { color: #003333 } /* Name.Variable.Instance */
65
+ .highlight .il { color: #FF6600 } /* Literal.Number.Integer.Long */
@@ -0,0 +1,207 @@
1
+ @import "variable";
2
+
3
+ body {
4
+ background: $themed-body-background;
5
+ font-family: "Consolas", "Monaco", "Helvetica Neue", Helvetica, Arial, sans-serif;
6
+ font-size: 12px;
7
+ line-height: 1.5;
8
+ box-sizing: border-box;
9
+ // overflow-y: scroll;
10
+ }
11
+
12
+ h1,
13
+ h2,
14
+ h3,
15
+ h4,
16
+ h5,
17
+ h6 {
18
+ font-weight: 400;
19
+ }
20
+
21
+ a {
22
+ text-decoration: none;
23
+ }
24
+
25
+ img {
26
+ max-width: 100%;
27
+ display: block;
28
+ margin: 0 auto;
29
+ padding: 10px 30px;
30
+ box-sizing: border-box;
31
+ }
32
+
33
+ .wrapper {
34
+ max-width: 1140px;
35
+ margin: 0 auto;
36
+ padding-left: calc(100vw - 100%);
37
+ }
38
+
39
+ .clearfix {
40
+ overflow: hidden;
41
+ }
42
+
43
+ // Site header
44
+ // ---------------------------------------------------------------------------
45
+ .site-header {
46
+ height: $themed-header-height;
47
+ background: $themed-header-background;
48
+ border-top: 5px solid #424242;
49
+ border-bottom: 1px solid #efefef;
50
+ box-sizing: border-box;
51
+
52
+ nav {
53
+ line-height: calc(56px - 5px - 1px);
54
+
55
+ .logo {
56
+ float: left;
57
+ margin-left: 20px;
58
+ font-size: 20px;
59
+ font-weight: 700px;
60
+ letter-spacing: 1px;
61
+ }
62
+
63
+ ul {
64
+ float: right;
65
+ margin: 0;
66
+ list-style: none;
67
+
68
+ li {
69
+ display: inline-block;
70
+ margin-right: 20px;
71
+ font-size: 14px;
72
+ }
73
+ }
74
+
75
+ a {
76
+ display: inline-block;
77
+ }
78
+ }
79
+ }
80
+
81
+ // Site body
82
+ // ---------------------------------------------------------------------------
83
+ .site-body {
84
+ margin: 0 auto;
85
+ box-sizing: border-box;
86
+ min-height: calc(100vh - #{$themed-header-height} - #{$themed-footer-height});
87
+ background: $themed-main-background;
88
+ }
89
+
90
+ .site-body-content,
91
+ .site-body-aside {
92
+ box-sizing: border-box;
93
+ min-height: inherit;
94
+ padding: 15px;
95
+ }
96
+
97
+ .site-body-aside {
98
+ float: right;
99
+ width: 30%;
100
+ padding-left: 10px;
101
+ }
102
+
103
+
104
+ .site-body-content.layout-home,
105
+ .site-body-content.layout-post {
106
+ float: left;
107
+ width: 70%;
108
+ padding-right: 10px;
109
+ }
110
+
111
+ .site-body-content.layout-page {
112
+ width: 100%;
113
+ }
114
+
115
+
116
+
117
+ @mixin module {
118
+ box-sizing: border-box;
119
+ margin-bottom: 10px;
120
+ padding: 15px 20px;
121
+ background: #fdfdfd;
122
+
123
+ &:last-child {
124
+ margin-bottom: 0;
125
+ }
126
+ }
127
+
128
+ @mixin page {
129
+ box-sizing: border-box;
130
+ padding: 15px 20px;
131
+ background: #fdfdfd;
132
+ // 30px is the padding-top and padding-bottom of .site-body-content
133
+ min-height: calc(100vh - #{$themed-header-height} - #{$themed-footer-height} - 30px);
134
+ }
135
+
136
+
137
+ // Site footer
138
+ // ---------------------------------------------------------------------------
139
+
140
+ .site-footer {
141
+ height: $themed-footer-height;
142
+ background: $themed-header-background;
143
+ border-top: 1px solid #efefef;
144
+ border-bottom: 5px solid #424242;
145
+ box-sizing: border-box;
146
+
147
+ .copyright {
148
+ line-height: calc(56px - 5px - 1px);
149
+ text-align: center;
150
+ }
151
+ }
152
+
153
+
154
+
155
+
156
+ // Blog Post
157
+ // ---------------------------------------------------------------------------
158
+ .layout-home>.article-module {
159
+ @include module();
160
+
161
+ header {
162
+
163
+ h2,
164
+ time {
165
+ display: inline-block;
166
+ }
167
+ }
168
+
169
+ i {
170
+ color: rgb(182, 211, 236);
171
+ }
172
+ }
173
+
174
+ .site-body-aside>.aside-module {
175
+ @include module();
176
+
177
+ ul {
178
+ margin: 0;
179
+ padding: 0;
180
+ list-style: none;
181
+ }
182
+ }
183
+
184
+ .layout-post>.blogpost {
185
+ @include page();
186
+
187
+ .blogpost-title,
188
+ .blogpost-meta {
189
+ display: inline-block;
190
+ }
191
+ }
192
+
193
+ .layout-page>.singlepage {
194
+ @include page();
195
+
196
+ .singlepage-header {
197
+ margin: 30px 0;
198
+ }
199
+
200
+ .singlepage-title {
201
+ font-size: 32px;
202
+ }
203
+
204
+ .singlepage-content {
205
+ margin-bottom: 30px;
206
+ }
207
+ }
@@ -0,0 +1,36 @@
1
+ // Themed variables
2
+ // ---------------------------------------------------------------------------
3
+ // $themed-body-bgcolor: rgb(235, 235, 235);
4
+
5
+
6
+
7
+ // Variables
8
+ // ---------------------------------------------------------------------------
9
+ $theme_name: theme-yellow;
10
+ $base-body-bgcolor: rgb(235, 235, 235);
11
+
12
+
13
+
14
+
15
+
16
+ // Themes
17
+ // ---------------------------------------------------------------------------
18
+ @mixin theme-yellow {
19
+ font-weight: 100;
20
+ $base-body-bgcolor: rgb(235, 235, 0);
21
+ }
22
+
23
+ @mixin theme-purple {
24
+ $base-body-bgcolor: rgb(235, 0, 235);
25
+ }
26
+
27
+
28
+ // Use theme
29
+ @mixin themify($theme_name) {
30
+ @if $theme_name == theme-yellow {
31
+ @include theme-yellow;
32
+ }
33
+ @if $theme_name == theme-purple {
34
+ @include theme-purple;
35
+ }
36
+ }
@@ -0,0 +1,12 @@
1
+ // Themed variables
2
+ // ---------------------------------------------------------------------------
3
+ $themed-body-background: rgb(235, 235, 235);
4
+ $themed-main-background: rgba(218, 209, 209, 0.7);
5
+
6
+ $themed-header-height: 56px;
7
+ $themed-header-background: rgba(230, 223, 223, 0.7);
8
+
9
+ $themed-footer-height: 56px;
10
+ $themed-footer-background: rgba(230, 223, 223, 0.7);
11
+
12
+ $themed-singlepage-content-background: rgba(240, 239, 239, 0.993);
@@ -0,0 +1,6 @@
1
+ ---
2
+ # "Only the main Sass file needs front matter (the dashes are enough)"
3
+ ---
4
+
5
+ @import "kindee";
6
+
@@ -0,0 +1,341 @@
1
+ /*! normalize.css v8.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 iOS.
9
+ */
10
+
11
+ html {
12
+ line-height: 1.15; /* 1 */
13
+ -webkit-text-size-adjust: 100%; /* 2 */
14
+ }
15
+
16
+ /* Sections
17
+ ========================================================================== */
18
+
19
+ /**
20
+ * Remove the margin in all browsers.
21
+ */
22
+
23
+ body {
24
+ margin: 0;
25
+ }
26
+
27
+ /**
28
+ * Correct the font size and margin on `h1` elements within `section` and
29
+ * `article` contexts in Chrome, Firefox, and Safari.
30
+ */
31
+
32
+ h1 {
33
+ font-size: 2em;
34
+ margin: 0.67em 0;
35
+ }
36
+
37
+ /* Grouping content
38
+ ========================================================================== */
39
+
40
+ /**
41
+ * 1. Add the correct box sizing in Firefox.
42
+ * 2. Show the overflow in Edge and IE.
43
+ */
44
+
45
+ hr {
46
+ box-sizing: content-box; /* 1 */
47
+ height: 0; /* 1 */
48
+ overflow: visible; /* 2 */
49
+ }
50
+
51
+ /**
52
+ * 1. Correct the inheritance and scaling of font size in all browsers.
53
+ * 2. Correct the odd `em` font sizing in all browsers.
54
+ */
55
+
56
+ pre {
57
+ font-family: monospace, monospace; /* 1 */
58
+ font-size: 1em; /* 2 */
59
+ }
60
+
61
+ /* Text-level semantics
62
+ ========================================================================== */
63
+
64
+ /**
65
+ * Remove the gray background on active links in IE 10.
66
+ */
67
+
68
+ a {
69
+ background-color: transparent;
70
+ }
71
+
72
+ /**
73
+ * 1. Remove the bottom border in Chrome 57-
74
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
75
+ */
76
+
77
+ abbr[title] {
78
+ border-bottom: none; /* 1 */
79
+ text-decoration: underline; /* 2 */
80
+ text-decoration: underline dotted; /* 2 */
81
+ }
82
+
83
+ /**
84
+ * Add the correct font weight in Chrome, Edge, and Safari.
85
+ */
86
+
87
+ b,
88
+ strong {
89
+ font-weight: bolder;
90
+ }
91
+
92
+ /**
93
+ * 1. Correct the inheritance and scaling of font size in all browsers.
94
+ * 2. Correct the odd `em` font sizing in all browsers.
95
+ */
96
+
97
+ code,
98
+ kbd,
99
+ samp {
100
+ font-family: monospace, monospace; /* 1 */
101
+ font-size: 1em; /* 2 */
102
+ }
103
+
104
+ /**
105
+ * Add the correct font size in all browsers.
106
+ */
107
+
108
+ small {
109
+ font-size: 80%;
110
+ }
111
+
112
+ /**
113
+ * Prevent `sub` and `sup` elements from affecting the line height in
114
+ * all browsers.
115
+ */
116
+
117
+ sub,
118
+ sup {
119
+ font-size: 75%;
120
+ line-height: 0;
121
+ position: relative;
122
+ vertical-align: baseline;
123
+ }
124
+
125
+ sub {
126
+ bottom: -0.25em;
127
+ }
128
+
129
+ sup {
130
+ top: -0.5em;
131
+ }
132
+
133
+ /* Embedded content
134
+ ========================================================================== */
135
+
136
+ /**
137
+ * Remove the border on images inside links in IE 10.
138
+ */
139
+
140
+ img {
141
+ border-style: none;
142
+ }
143
+
144
+ /* Forms
145
+ ========================================================================== */
146
+
147
+ /**
148
+ * 1. Change the font styles in all browsers.
149
+ * 2. Remove the margin in Firefox and Safari.
150
+ */
151
+
152
+ button,
153
+ input,
154
+ optgroup,
155
+ select,
156
+ textarea {
157
+ font-family: inherit; /* 1 */
158
+ font-size: 100%; /* 1 */
159
+ line-height: 1.15; /* 1 */
160
+ margin: 0; /* 2 */
161
+ }
162
+
163
+ /**
164
+ * Show the overflow in IE.
165
+ * 1. Show the overflow in Edge.
166
+ */
167
+
168
+ button,
169
+ input { /* 1 */
170
+ overflow: visible;
171
+ }
172
+
173
+ /**
174
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
175
+ * 1. Remove the inheritance of text transform in Firefox.
176
+ */
177
+
178
+ button,
179
+ select { /* 1 */
180
+ text-transform: none;
181
+ }
182
+
183
+ /**
184
+ * Correct the inability to style clickable types in iOS and Safari.
185
+ */
186
+
187
+ button,
188
+ [type="button"],
189
+ [type="reset"],
190
+ [type="submit"] {
191
+ -webkit-appearance: button;
192
+ }
193
+
194
+ /**
195
+ * Remove the inner border and padding in Firefox.
196
+ */
197
+
198
+ button::-moz-focus-inner,
199
+ [type="button"]::-moz-focus-inner,
200
+ [type="reset"]::-moz-focus-inner,
201
+ [type="submit"]::-moz-focus-inner {
202
+ border-style: none;
203
+ padding: 0;
204
+ }
205
+
206
+ /**
207
+ * Restore the focus styles unset by the previous rule.
208
+ */
209
+
210
+ button:-moz-focusring,
211
+ [type="button"]:-moz-focusring,
212
+ [type="reset"]:-moz-focusring,
213
+ [type="submit"]:-moz-focusring {
214
+ outline: 1px dotted ButtonText;
215
+ }
216
+
217
+ /**
218
+ * Correct the padding in Firefox.
219
+ */
220
+
221
+ fieldset {
222
+ padding: 0.35em 0.75em 0.625em;
223
+ }
224
+
225
+ /**
226
+ * 1. Correct the text wrapping in Edge and IE.
227
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
228
+ * 3. Remove the padding so developers are not caught out when they zero out
229
+ * `fieldset` elements in all browsers.
230
+ */
231
+
232
+ legend {
233
+ box-sizing: border-box; /* 1 */
234
+ color: inherit; /* 2 */
235
+ display: table; /* 1 */
236
+ max-width: 100%; /* 1 */
237
+ padding: 0; /* 3 */
238
+ white-space: normal; /* 1 */
239
+ }
240
+
241
+ /**
242
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
243
+ */
244
+
245
+ progress {
246
+ vertical-align: baseline;
247
+ }
248
+
249
+ /**
250
+ * Remove the default vertical scrollbar in IE 10+.
251
+ */
252
+
253
+ textarea {
254
+ overflow: auto;
255
+ }
256
+
257
+ /**
258
+ * 1. Add the correct box sizing in IE 10.
259
+ * 2. Remove the padding in IE 10.
260
+ */
261
+
262
+ [type="checkbox"],
263
+ [type="radio"] {
264
+ box-sizing: border-box; /* 1 */
265
+ padding: 0; /* 2 */
266
+ }
267
+
268
+ /**
269
+ * Correct the cursor style of increment and decrement buttons in Chrome.
270
+ */
271
+
272
+ [type="number"]::-webkit-inner-spin-button,
273
+ [type="number"]::-webkit-outer-spin-button {
274
+ height: auto;
275
+ }
276
+
277
+ /**
278
+ * 1. Correct the odd appearance in Chrome and Safari.
279
+ * 2. Correct the outline style in Safari.
280
+ */
281
+
282
+ [type="search"] {
283
+ -webkit-appearance: textfield; /* 1 */
284
+ outline-offset: -2px; /* 2 */
285
+ }
286
+
287
+ /**
288
+ * Remove the inner padding in Chrome and Safari on macOS.
289
+ */
290
+
291
+ [type="search"]::-webkit-search-decoration {
292
+ -webkit-appearance: none;
293
+ }
294
+
295
+ /**
296
+ * 1. Correct the inability to style clickable types in iOS and Safari.
297
+ * 2. Change font properties to `inherit` in Safari.
298
+ */
299
+
300
+ ::-webkit-file-upload-button {
301
+ -webkit-appearance: button; /* 1 */
302
+ font: inherit; /* 2 */
303
+ }
304
+
305
+ /* Interactive
306
+ ========================================================================== */
307
+
308
+ /*
309
+ * Add the correct display in Edge, IE 10+, and Firefox.
310
+ */
311
+
312
+ details {
313
+ display: block;
314
+ }
315
+
316
+ /*
317
+ * Add the correct display in all browsers.
318
+ */
319
+
320
+ summary {
321
+ display: list-item;
322
+ }
323
+
324
+ /* Misc
325
+ ========================================================================== */
326
+
327
+ /**
328
+ * Add the correct display in IE 10+.
329
+ */
330
+
331
+ template {
332
+ display: none;
333
+ }
334
+
335
+ /**
336
+ * Add the correct display in IE 10.
337
+ */
338
+
339
+ [hidden] {
340
+ display: none;
341
+ }
Binary file
metadata ADDED
@@ -0,0 +1,146 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-kindee-simple
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.6
5
+ platform: ruby
6
+ authors:
7
+ - hatakawas
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-11-08 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.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.8'
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.11'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.11'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-sitemap
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.2'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-seo-tag
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.5'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.5'
69
+ - !ruby/object:Gem::Dependency
70
+ name: bundler
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.16'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.16'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '12.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '12.0'
97
+ description:
98
+ email:
99
+ - hatakawas@163.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - LICENSE.txt
105
+ - README.md
106
+ - _includes/aside.html
107
+ - _includes/footer.html
108
+ - _includes/head.html
109
+ - _includes/header.html
110
+ - _layouts/default.html
111
+ - _layouts/home.html
112
+ - _layouts/page.html
113
+ - _layouts/post.html
114
+ - _sass/kindee.scss
115
+ - _sass/kindee/_highlight.scss
116
+ - _sass/kindee/_layout.scss
117
+ - _sass/kindee/_theme.scss
118
+ - _sass/kindee/_variable.scss
119
+ - assets/css/main.scss
120
+ - assets/css/normalize.css
121
+ - assets/images/jvm-memory-model.png
122
+ homepage: https://github.com/hatakawas/jekyll-theme-kindee-simple.git
123
+ licenses:
124
+ - MIT
125
+ metadata: {}
126
+ post_install_message:
127
+ rdoc_options: []
128
+ require_paths:
129
+ - lib
130
+ required_ruby_version: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: '0'
135
+ required_rubygems_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ requirements: []
141
+ rubyforge_project:
142
+ rubygems_version: 2.7.3
143
+ signing_key:
144
+ specification_version: 4
145
+ summary: Jekyll-theme-kindee-simple is a simple but not simple theme for jekyll.
146
+ test_files: []