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 +4 -4
- data/README.md +6 -1
- data/_layouts/default.html +1 -0
- data/_sass/core/_base.scss +64 -0
- data/_sass/core/_color-palette.scss +8 -0
- data/_sass/core/_generic.scss +56 -0
- data/_sass/core/_objects.scss +0 -0
- data/_sass/core/_typography.scss +7 -0
- data/_sass/nettoyer.scss +5 -0
- data/assets/css/style.scss +5 -0
- metadata +8 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5706721d3b51c87465118d01afd903b2a11b8b84
|
4
|
+
data.tar.gz: 87954ab1219aad6dc3f19ef4888452edfd7c13d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa185917850b182b1e38997fa182fec4096aeb6d12d419bc28a7b6d7301c397ac5e8b40469394f724af0052d8d9d0e18011424bd224c58991cfafdacd3588d98
|
7
|
+
data.tar.gz: 0e43f87a4ce0d03e77b7ca168da916a19225c6f7ab2be535dbabf56db108bf8322253ae53ccbf11db5ad5bd666565c53269200cdd50dc6ca2df5cf12ea9e4643
|
data/README.md
CHANGED
@@ -1,8 +1,13 @@
|
|
1
|
-
# nettoyer
|
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`:
|
data/_layouts/default.html
CHANGED
@@ -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,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
|
data/_sass/nettoyer.scss
ADDED
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.
|
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
|