jekyll-theme-nettoyer 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eb9cffd0aba51457b83ff41223cc55082a8b9d09
4
- data.tar.gz: '0568fedd6288f388542e3d50bf7321177df0b1b5'
3
+ metadata.gz: 5706721d3b51c87465118d01afd903b2a11b8b84
4
+ data.tar.gz: 87954ab1219aad6dc3f19ef4888452edfd7c13d7
5
5
  SHA512:
6
- metadata.gz: 110e79bad8d151e2c8adc688b8923357f1c2e5c75afca31e3e5f4a597f0ee7adcb53b4a327205a24a27b02e91facfb9bea208f879545715908f3134ccbd05155
7
- data.tar.gz: 0c70a8e237794f8570256aa860fea199cc4500c8c2b28eeb05850104be10f8cd76f780299f817229e44c3127e08bc56ce6d9603f1cb3d765e90cfa26ed55fcd6
6
+ metadata.gz: fa185917850b182b1e38997fa182fec4096aeb6d12d419bc28a7b6d7301c397ac5e8b40469394f724af0052d8d9d0e18011424bd224c58991cfafdacd3588d98
7
+ data.tar.gz: 0e43f87a4ce0d03e77b7ca168da916a19225c6f7ab2be535dbabf56db108bf8322253ae53ccbf11db5ad5bd666565c53269200cdd50dc6ca2df5cf12ea9e4643
data/README.md CHANGED
@@ -1,8 +1,13 @@
1
- # nettoyer [![Build Status][cibuild-badge]][cibuild]
1
+ # nettoyer
2
+
3
+ [![Build Status][cibuild-badge]][cibuild] [![Gem Version][gem-badge]][gem]
2
4
 
3
5
  [cibuild]: https://travis-ci.org/idlua/jekyll-theme-nettoyer
4
6
  [cibuild-badge]: https://travis-ci.org/idlua/jekyll-theme-nettoyer.svg?branch=master
5
7
 
8
+ [gem]: https://badge.fury.io/rb/jekyll-theme-nettoyer
9
+ [gem-badge]: https://badge.fury.io/rb/jekyll-theme-nettoyer.svg
10
+
6
11
 
7
12
  ## Installation
8
13
  Add this line to your Jekyll site's `Gemfile`:
@@ -3,6 +3,7 @@
3
3
  <head>
4
4
  <meta charset="utf-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
6
7
  </head>
7
8
  <body>
8
9
  <h1>nettoyer</h1>
@@ -0,0 +1,64 @@
1
+ body {
2
+ font-family: $f_primary;
3
+ font-size: 18px;
4
+ color: $c_darkgray;
5
+ }
6
+
7
+ a {
8
+ text-decoration: none;
9
+ color: $c_red;
10
+
11
+ &:hover { opacity: .7; }
12
+ }
13
+
14
+ strong,
15
+ em {
16
+ color: $c_red;
17
+ }
18
+
19
+ del { color: $c_gray; }
20
+
21
+ blockquote {
22
+ padding-left: 10px;
23
+ font-style: italic;
24
+ border-left: 3px solid $c_gray;
25
+ }
26
+
27
+ code {
28
+ padding: 2px 5px;
29
+ font-size: 14px;
30
+ background-color: $c_smoke-gray;
31
+ }
32
+
33
+ h2,
34
+ h3,
35
+ h4,
36
+ h5,
37
+ h6 {
38
+ font-family: $f_primary;
39
+ }
40
+
41
+ img { max-width: 100%; }
42
+
43
+ table {
44
+ width: 100%;
45
+ border-collapse: collapse;
46
+ }
47
+
48
+ th { color: $c_red; }
49
+
50
+ td {
51
+ padding: 5px;
52
+ border-bottom: 1px solid $c_lightgray;
53
+ }
54
+
55
+ tr {
56
+ &:nth-child(even) { background-color: $c_smoke-lightgray; }
57
+
58
+ &:hover { background-color: $c_smoke-gray; }
59
+ }
60
+
61
+ hr {
62
+ border: none;
63
+ border-top: 1px solid $c_lightgray;
64
+ }
@@ -0,0 +1,8 @@
1
+ $c_gray: #aaa;
2
+ $c_darkgray: #333;
3
+ $c_lightgray: #ddd;
4
+
5
+ $c_smoke-gray: #f3f3f3;
6
+ $c_smoke-lightgray: #f9f9f9;
7
+
8
+ $c_red: #b30000;
@@ -0,0 +1,56 @@
1
+ // Box Sizing.
2
+ *,
3
+ *:before,
4
+ *:after {
5
+ box-sizing: border-box;
6
+ }
7
+
8
+
9
+ // Meyer's CSS Reset.
10
+ /* http://meyerweb.com/eric/tools/css/reset/
11
+ v2.0 | 20110126
12
+ License: none (public domain)
13
+ */
14
+ html, body, div, span, applet, object, iframe,
15
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
16
+ a, abbr, acronym, address, big, cite, code,
17
+ del, dfn, em, img, ins, kbd, q, s, samp,
18
+ small, strike, strong, sub, sup, tt, var,
19
+ b, u, i, center,
20
+ dl, dt, dd, ol, ul, li,
21
+ fieldset, form, label, legend,
22
+ table, caption, tbody, tfoot, thead, tr, th, td,
23
+ article, aside, canvas, details, embed,
24
+ figure, figcaption, footer, header, hgroup,
25
+ menu, nav, output, ruby, section, summary,
26
+ time, mark, audio, video {
27
+ margin: 0;
28
+ padding: 0;
29
+ border: 0;
30
+ font-size: 100%;
31
+ font: inherit;
32
+ vertical-align: baseline;
33
+ }
34
+ /* HTML5 display-role reset for older browsers */
35
+ article, aside, details, figcaption, figure,
36
+ footer, header, hgroup, menu, nav, section {
37
+ display: block;
38
+ }
39
+ body {
40
+ line-height: 1;
41
+ }
42
+ ol, ul {
43
+ list-style: none;
44
+ }
45
+ blockquote, q {
46
+ quotes: none;
47
+ }
48
+ blockquote:before, blockquote:after,
49
+ q:before, q:after {
50
+ content: '';
51
+ content: none;
52
+ }
53
+ table {
54
+ border-collapse: collapse;
55
+ border-spacing: 0;
56
+ }
File without changes
@@ -0,0 +1,7 @@
1
+ @import url('https://fonts.googleapis.com/css?family=Belleza|Inconsolata:400,700');
2
+
3
+ $f_primary: 'Inconsolata', sans-serif;
4
+ $f_secondary: 'Belleza', serif;
5
+
6
+ $f_weight-regular: 400;
7
+ $f_weight-bold: 700;
@@ -0,0 +1,5 @@
1
+ @import 'core/color-palette';
2
+ @import 'core/typography';
3
+ @import 'core/generic';
4
+ @import 'core/objects';
5
+ @import 'core/base';
@@ -0,0 +1,5 @@
1
+ ---
2
+ # Import of the main nettoyer Sass file.
3
+ ---
4
+
5
+ @import 'nettoyer';
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-nettoyer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luan Vicente
@@ -62,6 +62,13 @@ files:
62
62
  - LICENSE.txt
63
63
  - README.md
64
64
  - _layouts/default.html
65
+ - _sass/core/_base.scss
66
+ - _sass/core/_color-palette.scss
67
+ - _sass/core/_generic.scss
68
+ - _sass/core/_objects.scss
69
+ - _sass/core/_typography.scss
70
+ - _sass/nettoyer.scss
71
+ - assets/css/style.scss
65
72
  homepage: https://github.com/idlua/jekyll-theme-nettoyer
66
73
  licenses:
67
74
  - MIT