jekyll-theme-paperwiki 0.1.6 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 321036f72a9d805db92165279bb88689b9b2a63e367d15867c3eb4afcf199943
4
- data.tar.gz: 5919cbae0be23eac58238f9515807193624bda8ed78bf8990339c6f5224ae3bd
3
+ metadata.gz: 0d7088224b53b88e5d0f5d0ee3ec2b55ac2cf9e2b882b61381ef8091d1cbbad0
4
+ data.tar.gz: 9a77ad7e881558de058e943372a6c0d5b6a4eb9c3499f845e8a20e0f4800b1d7
5
5
  SHA512:
6
- metadata.gz: 848b16fa956bacb3adbb82d3737845013066c5525d3d5b2b62504de3daed2d0aa049858678ccdafe32b41672d9da7b01c6e00f29488fb16bbfd9010e61d59318
7
- data.tar.gz: 41ab50cefb113dff3f5363565d5842303c1d983c1a65dc5d23e1ee2b2931c82e2033eefa89bb8270c6aadbfa9494d5faf9a51ca6464097521114fe43dc2a3c99
6
+ metadata.gz: 3fd3d64a04e3226d66f09dd91afa30955030677f938a6831d04c8fd827bff37a9b2126daf4f4ce94ff337143bab2c3525261ac4709fddd79b9ebb743007b438d
7
+ data.tar.gz: '0076686a08e9fc74cf124e2b0c465bfec2bdbfa0434105a442857a09d97f12f55067af2b7dbdd925c4f1d1e534f761ee46bb7a459352873a0811e656a5477718'
@@ -0,0 +1,12 @@
1
+ // Standard transition time.
2
+ $transition: 0.25s;
3
+
4
+ $border_radius-block: 1em;
5
+ $border_radius-inline: 0.25em;
6
+
7
+ //pre: 6px
8
+ //launchpad-search: 1.5rem
9
+ //launchpad-searchbar: 1rem
10
+ //launchpad-search_submit: 1rem
11
+
12
+ //launchpad-card: 1.5rem
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-paperwiki
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - pomeloshark
@@ -32,7 +32,6 @@ extra_rdoc_files: []
32
32
  files:
33
33
  - LICENSE.txt
34
34
  - README.md
35
- - _config.yml
36
35
  - _data/navigation.yml
37
36
  - _includes/collections_header.html
38
37
  - _includes/collections_sidebar.html
@@ -73,6 +72,7 @@ files:
73
72
  - _sass/style.scss
74
73
  - _sass/variables/_colors.scss
75
74
  - _sass/variables/_fonts.scss
75
+ - _sass/variables/_misc.scss
76
76
  - assets/.DS_Store
77
77
  - assets/css/style.scss
78
78
  - assets/fonts/Inter/.DS_Store
data/_config.yml DELETED
@@ -1,65 +0,0 @@
1
- # Build settings
2
- include: ['_pages'] # forces custom pages to be organized into their own directory
3
-
4
- # Plugins
5
- # plugins:
6
- # - jekyll-ipa
7
-
8
- random_redirect:
9
- pages: true
10
-
11
- multi_projects: false
12
- entry_tags_top: true
13
-
14
-
15
-
16
- # Sets the collections directory and defines your collections.
17
- collections_dir: collections
18
- collections:
19
- wiki:
20
- output: true
21
- permalink: /:collection/:name
22
- works:
23
- output: true
24
- permalink: /:collection/:name
25
- grammars:
26
- output: true
27
- permalink: /:collection/:name
28
-
29
-
30
-
31
- # Front matter defaults, so you don't need to set layouts on every new page.
32
- # As long as pages are in the correct folder, they'll automatically have the
33
- # correct layout. You can override this via each page's front matter.
34
- defaults:
35
- -
36
- scope:
37
- path: "" # an empty string here means all files in the project
38
- type: "pages"
39
- values:
40
- layout: "page" # all pages will have the page.html layout unless overridden
41
- permalink: "/:path/:basename"
42
- -
43
- scope:
44
- path: "" # an empty string here means all files in the project
45
- type: "posts"
46
- values:
47
- layout: "post"
48
- -
49
- scope:
50
- path: "_wiki" # all pages in the wiki folder
51
- type: "wiki"
52
- values:
53
- layout: "wiki"
54
- -
55
- scope:
56
- path: "_works" # all pages in the works folder
57
- type: "works"
58
- values:
59
- layout: "work"
60
- -
61
- scope:
62
- path: "_grammars" # all pages in the grammars folder
63
- type: "grammars"
64
- values:
65
- layout: "grammar"