jekyll-nagymaros 3.2.0 → 3.3.1

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: dafca4d5585272b6fb5f0b1fb37794247e9a1125ef49a240dfaea5e75977bd06
4
- data.tar.gz: b04be66d5a922b17fb11b467825574ba826e90ae63dd15b002c54f41142e82bc
3
+ metadata.gz: b0897aad091d33dd04eca0270dda6f0f5897d9074201b362fa03481974d69a34
4
+ data.tar.gz: d97075e49357f9b6beedb7ae00de3af9f57f7f2eb4b3115bd485686c6e318699
5
5
  SHA512:
6
- metadata.gz: 33e93e8db03d03d69b3385a6f79d657d4359a7416a0361f72e91f2a736f9c214f7b01c8dc3911b19eeb40a14b6379deaf6716151e3165c8d30dfd7a093f31f84
7
- data.tar.gz: 77c29f35c1faa355c44a5918142a1093149af49f33cf671ad061184f6fa9fc0eee62bc829589bf8cc229c7d30294de0931e21ef38e2a7ee7564678e8c6be5b08
6
+ metadata.gz: 91679b92e91092be4c95c284072b931c69669bf78c6c2da6f31c4438625729047e07b4cb6ff1137d56732620aee15c98d7c23c0ad7d82862253512687b0eaad9
7
+ data.tar.gz: ef73e4d318ccc6b5e0dcdee22cca954898f5f5878de97c8713fa0b63756b88d31b06202d82e983fee37202c4ae2e3d888796a74830a2f2463bcba7c48e47d2fa
data/README.md CHANGED
@@ -63,7 +63,7 @@ To customize hidden files, you can create new files with the same names and path
63
63
 
64
64
  Core customization occurs in `_config.yml`. Aside from the usual configuration variables, you can set a value for `home`, which will determine the destination of the site title button in the header, as well as the return link from the 404 page. Only use this if you want these buttons to lead somewhere different than the index.
65
65
 
66
- Next, you can set a value for `copyright`, which corresponds to the name of the copyright holder in the notice within the theme's footer. If no value is provided for this variable, the whole copyright notice is suppressed (default).
66
+ Next, you can set a value for `copyright`, which corresponds to the name of the copyright holder in the notice within the theme's footer. If no value is provided for this variable (default), the whole copyright notice is suppressed.
67
67
 
68
68
  Finally, you can set a value for `indexing`, which tells search engine crawlers whether to index your site. The default value is `false`, and in this case the following code is included in the head of every page:
69
69
 
@@ -82,83 +82,21 @@ Customizing the CSS is possible by creating a file `_sass/_custom.scss`. You can
82
82
  For convenience, customization of the theme's color scheme is also possible via YAML. In this case, create a file `_data/skin.yml` and assign new colors from the [Open Color](https://yeun.github.io/open-color) library to various HTML elements. Make sure to stick to the library's color-number naming convention. Here is an example:
83
83
 
84
84
  ```yaml
85
- a:
86
- color: blue-7 # links
87
- hover: blue-9 # links when hovering
88
- accordion-button:
89
- bg: gray-2 # button in accordion component
90
- accordion-item:
91
- border: gray-2 # border of button in accordion component
92
- alert-primary:
93
- bg: blue-1 # primary alert
94
85
  body:
95
86
  bg: gray-0 # background
96
87
  color: gray-8 # body text
97
- btn-outline-primary:
98
- border: blue-5 # outline primary button border
99
- color: blue-5 # outline primary button
100
- hover:
101
- bg: blue-5 # outline primary button when hovering
102
- color: gray-0 # outline primary button text when hovering
103
- disabled:
104
- bg: blue-3 # disabled outline primary button
105
- color: blue-3 # disabled outline primary button text
106
- btn-primary:
107
- bg: blue-5 # primary button
108
- color: gray-0 # primary button text
109
- hover: blue-7 # primary button when hovering
110
- disabled: blue-3 # disabled primary button
111
- btn-secondary:
112
- bg: gray-4 # secondary button
113
- color: gray-0 # secondary button text
114
- hover: gray-6 # secondary button when hovering
115
- caption:
116
- cikir: gray-6 # caption text
117
- card:
118
- border: gray-2 # card component border
119
- card-header:
120
- bg: gray-2 # header of card component
121
- dropdown-menu:
122
- bg: gray-2 # dropdown menu
123
- color: gray-7 # dropdown menu text
124
- dropdown-item:
125
- color: gray-7 # dropdown link
126
- hover: gray-9 # dropdown link when hovering
127
- disabled: gray-6 # disabled dropdown link
88
+ a:
89
+ color: blue-7 # links
90
+ hover: blue-9 # links when hovering
128
91
  digit:
129
92
  bg: gray-3 # background of digit on 404 page
130
- form-control:
131
- bg: gray-0 # form field
132
- color: gray-9 # form field text
133
- border: gray-3 # form field border
134
- focus:
135
- bg: gray-0 # focused form field
136
- color: gray-9 # focused form field text
137
- border: blue-2 # focused form field border
138
- shadow: blue-1 # focused form field shadow
139
- placeholder: gray-6 # form placeholder text
140
93
  header:
141
94
  bg: gray-4 # background of navigation bar
142
95
  index:
143
96
  bg: gray-2 # background of index container
144
- invalid-feedback: red-9 # form input warning
145
- navbar-brand:
146
- color: gray-8 # website name in header
147
- hover: gray-9 # website name in header when hovering
148
- nav-link:
149
- color: gray-7 # navigation links in header
150
- hover: gray-9 # navigation links in header when hovering
151
- svg:
152
- fill: # svg icons
153
- table:
154
- td:
155
- border: # table row dividers
156
- text-muted:
157
- color: gray-6 # light text
158
- hover: gray-9 # light text when hovering (if link)
159
97
  ```
160
98
 
161
- The variables are named after the HTML elements they style. The colors to which they are set in this example are actually the theme's defaults. If no value is provided for some variables, or if `_data/skin.yml` does not exist, the theme assumes the color scheme above.
99
+ The variables are named after the HTML elements they style. The colors to which they are set in this example are actually the theme's defaults. If no value is provided for some variables, or if `_data/skin.yml` does not exist, the theme assumes the default colors. See `assets/css/styles.scss` for a complete list of defaults.
162
100
 
163
101
  ## Credits
164
102
 
@@ -1,6 +1,6 @@
1
1
  {% assign year = site.time | date: '%Y' %}
2
2
  {% if site.copyright and site.copyright != '' %}
3
3
  <footer class="container mb-4">
4
- <small class="text-muted">&copy;{{ year }} {{ site.copyright }}. All rights reserved.</small>
4
+ <small class="text-muted">&copy; {{ year }} {{ site.copyright }}. All rights reserved.</small>
5
5
  </footer>
6
6
  {% endif %}
data/_sass/_fonts.scss CHANGED
@@ -1,6 +1,7 @@
1
1
  $weights: (
2
2
  "Light": 300,
3
3
  "Medium": 500,
4
+ "SemiBold": 600,
4
5
  "Bold": 700,
5
6
  );
6
7
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-nagymaros
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - piazzai
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-17 00:00:00.000000000 Z
11
+ date: 2024-10-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: github-pages
@@ -72,6 +72,8 @@ files:
72
72
  - assets/fonts/Inter-Medium.woff2
73
73
  - assets/fonts/Inter-MediumItalic.woff2
74
74
  - assets/fonts/Inter-Regular.woff2
75
+ - assets/fonts/Inter-SemiBold.woff2
76
+ - assets/fonts/Inter-SemiBoldItalic.woff2
75
77
  - assets/fonts/ZillaSlab-Light.woff2
76
78
  - assets/fonts/ZillaSlab-LightItalic.woff2
77
79
  - assets/icons/android-chrome-192x192.png