minima 2.5.1 → 2.5.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/_sass/minima/_base.scss +5 -5
- data/_sass/minima/_layout.scss +6 -6
- metadata +4 -18
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7b02f11d180bb4817f99c80e9fa9d4a2445197c503c65f7fc3d47d07171406b3
|
|
4
|
+
data.tar.gz: bb8c120c9dbb4b4a41e0d6c5d484de270aa37b2953f89f11a934a1e9973d38bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1b02a392bc30df8cb11585988d4dddd5e5978163dff6842b4b2addce789e695de7350820d64a5b1afda796018e9926622ee375a86e0efd96374faffe2129c91
|
|
7
|
+
data.tar.gz: ad65a6bbde7594085ebc17138fb9a7d3dd5cd314aca905dcac73e9b4062ef569abc2db30d048a515079f23f5fd3f1a4d94b12db835121c14ecc2bbe417d720bb
|
data/_sass/minima/_base.scss
CHANGED
|
@@ -37,7 +37,7 @@ h1, h2, h3, h4, h5, h6,
|
|
|
37
37
|
p, blockquote, pre,
|
|
38
38
|
ul, ol, dl, figure,
|
|
39
39
|
%vertical-rhythm {
|
|
40
|
-
margin-bottom: $spacing-unit
|
|
40
|
+
margin-bottom: $spacing-unit * 0.5;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
|
|
@@ -131,7 +131,7 @@ a {
|
|
|
131
131
|
blockquote {
|
|
132
132
|
color: $grey-color;
|
|
133
133
|
border-left: 4px solid $grey-color-light;
|
|
134
|
-
padding-left: $spacing-unit
|
|
134
|
+
padding-left: $spacing-unit * 0.5;
|
|
135
135
|
@include relative-font-size(1.125);
|
|
136
136
|
letter-spacing: -1px;
|
|
137
137
|
font-style: italic;
|
|
@@ -186,8 +186,8 @@ pre {
|
|
|
186
186
|
@include media-query($on-laptop) {
|
|
187
187
|
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
|
|
188
188
|
max-width: calc(#{$content-width} - (#{$spacing-unit}));
|
|
189
|
-
padding-right: $spacing-unit
|
|
190
|
-
padding-left: $spacing-unit
|
|
189
|
+
padding-right: $spacing-unit * 0.5;
|
|
190
|
+
padding-left: $spacing-unit * 0.5;
|
|
191
191
|
}
|
|
192
192
|
}
|
|
193
193
|
|
|
@@ -241,7 +241,7 @@ table {
|
|
|
241
241
|
}
|
|
242
242
|
}
|
|
243
243
|
th, td {
|
|
244
|
-
padding: ($spacing-unit
|
|
244
|
+
padding: ($spacing-unit * 0.3333333333) ($spacing-unit * 0.5);
|
|
245
245
|
}
|
|
246
246
|
th {
|
|
247
247
|
background-color: lighten($grey-color-light, 3%);
|
data/_sass/minima/_layout.scss
CHANGED
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
@include media-query($on-palm) {
|
|
50
50
|
position: absolute;
|
|
51
51
|
top: 9px;
|
|
52
|
-
right: $spacing-unit
|
|
52
|
+
right: $spacing-unit * 0.5;
|
|
53
53
|
background-color: $background-color;
|
|
54
54
|
border: 1px solid $grey-color-light;
|
|
55
55
|
border-radius: 5px;
|
|
@@ -90,12 +90,12 @@
|
|
|
90
90
|
|
|
91
91
|
.page-link {
|
|
92
92
|
display: block;
|
|
93
|
+
margin-left: 20px;
|
|
93
94
|
padding: 5px 10px;
|
|
94
95
|
|
|
95
96
|
&:not(:last-child) {
|
|
96
97
|
margin-right: 0;
|
|
97
98
|
}
|
|
98
|
-
margin-left: 20px;
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
101
|
}
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
|
|
113
113
|
.footer-heading {
|
|
114
114
|
@include relative-font-size(1.125);
|
|
115
|
-
margin-bottom: $spacing-unit
|
|
115
|
+
margin-bottom: $spacing-unit * 0.5;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
.contact-list,
|
|
@@ -124,14 +124,14 @@
|
|
|
124
124
|
.footer-col-wrapper {
|
|
125
125
|
@include relative-font-size(0.9375);
|
|
126
126
|
color: $grey-color;
|
|
127
|
-
margin-left: -$spacing-unit
|
|
127
|
+
margin-left: -$spacing-unit * 0.5;
|
|
128
128
|
@extend %clearfix;
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
.footer-col {
|
|
132
132
|
float: left;
|
|
133
|
-
margin-bottom: $spacing-unit
|
|
134
|
-
padding-left: $spacing-unit
|
|
133
|
+
margin-bottom: $spacing-unit * 0.5;
|
|
134
|
+
padding-left: $spacing-unit * 0.5;
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
.footer-col-1 {
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: minima
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.5.
|
|
4
|
+
version: 2.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joel Glovier
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-09-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -58,20 +58,6 @@ dependencies:
|
|
|
58
58
|
- - "~>"
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
60
|
version: '2.1'
|
|
61
|
-
- !ruby/object:Gem::Dependency
|
|
62
|
-
name: bundler
|
|
63
|
-
requirement: !ruby/object:Gem::Requirement
|
|
64
|
-
requirements:
|
|
65
|
-
- - ">="
|
|
66
|
-
- !ruby/object:Gem::Version
|
|
67
|
-
version: '1.15'
|
|
68
|
-
type: :development
|
|
69
|
-
prerelease: false
|
|
70
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
71
|
-
requirements:
|
|
72
|
-
- - ">="
|
|
73
|
-
- !ruby/object:Gem::Version
|
|
74
|
-
version: '1.15'
|
|
75
61
|
description:
|
|
76
62
|
email:
|
|
77
63
|
- jglovier@github.com
|
|
@@ -114,14 +100,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
114
100
|
requirements:
|
|
115
101
|
- - ">="
|
|
116
102
|
- !ruby/object:Gem::Version
|
|
117
|
-
version:
|
|
103
|
+
version: 2.7.0
|
|
118
104
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
105
|
requirements:
|
|
120
106
|
- - ">="
|
|
121
107
|
- !ruby/object:Gem::Version
|
|
122
108
|
version: '0'
|
|
123
109
|
requirements: []
|
|
124
|
-
rubygems_version: 3.
|
|
110
|
+
rubygems_version: 3.5.16
|
|
125
111
|
signing_key:
|
|
126
112
|
specification_version: 4
|
|
127
113
|
summary: A beautiful, minimal theme for Jekyll.
|