holygrail2 1.1.30 → 1.1.31
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.
- package/package.json +2 -1
- package/scss/abstract/_setup.scss +20 -98
- package/scss/base/_grid.scss +4 -4
- package/scss/base/_spacing.scss +51 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "holygrail2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.31",
|
|
4
4
|
"description": "A minimal, responsive, style-agnostic CSS framework.",
|
|
5
5
|
"main": "scss/style.scss",
|
|
6
6
|
"directories": {
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"type": "git",
|
|
26
26
|
"url": "git+https://github.com/holygrail2/holygrail.git"
|
|
27
27
|
},
|
|
28
|
+
|
|
28
29
|
"devDependencies": {
|
|
29
30
|
"open": "^9.1.0",
|
|
30
31
|
"prettier": "^3.0.2",
|
|
@@ -130,105 +130,27 @@ $tooltip-padding: 8px;
|
|
|
130
130
|
$fs: 'font-size';
|
|
131
131
|
$lh: 'line-height';
|
|
132
132
|
|
|
133
|
-
$headers: (
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
),
|
|
142
|
-
)
|
|
133
|
+
$headers: ( titularbase-m: ( 14px, 14px, 16px, 16px, 1.2, 'medium', ), ) !default;
|
|
134
|
+
$minheaders: (
|
|
135
|
+
p-tag: ( 8px, 10px, 1.3, 'regular', ),
|
|
136
|
+
h2: ( 18px, 24px, 1.2, 'bold', ),
|
|
137
|
+
title-l: ( 12px, 12px, 1.4, 'regular', ),
|
|
138
|
+
title-l-l: ( 12px, 12px, 1.4, 'light', ),
|
|
139
|
+
title-l-b: ( 12px, 12px, 1.4, 'medium', ),
|
|
140
|
+
title-m: ( 11px, 11px, 1.4, 'regular', ),
|
|
141
|
+
title-s: ( 10px, 10px, 1.4, 'regular', ),
|
|
142
|
+
text-l: ( 12px, 12px, 1.5, 'regular', ),
|
|
143
|
+
text-l-l: ( 12px, 12px, 1.5, 'light', ),
|
|
144
|
+
text-m: ( 11px, 11px, 1.5, 'regular', ), ) !default;
|
|
145
|
+
|
|
146
|
+
$headersFixers: (
|
|
147
|
+
12: ( 12px, 1.5, ),
|
|
148
|
+
14: ( 14px, 1.5, ),
|
|
149
|
+
16: ( 16px, 1.5, ),
|
|
150
|
+
18: ( 18px, 1.5, ),
|
|
151
|
+
20: ( 20px, 1.5, ),
|
|
152
|
+
24: ( 24px, 1.5, ), ) !default;
|
|
143
153
|
|
|
144
|
-
$minheaders: (
|
|
145
|
-
p-tag: (
|
|
146
|
-
8px,
|
|
147
|
-
10px,
|
|
148
|
-
1.3,
|
|
149
|
-
'regular',
|
|
150
|
-
),
|
|
151
|
-
h2: (
|
|
152
|
-
18px,
|
|
153
|
-
24px,
|
|
154
|
-
1.2,
|
|
155
|
-
'bold',
|
|
156
|
-
),
|
|
157
|
-
title-l: (
|
|
158
|
-
12px,
|
|
159
|
-
12px,
|
|
160
|
-
1.4,
|
|
161
|
-
'regular',
|
|
162
|
-
),
|
|
163
|
-
title-l-l: (
|
|
164
|
-
12px,
|
|
165
|
-
12px,
|
|
166
|
-
1.4,
|
|
167
|
-
'light',
|
|
168
|
-
),
|
|
169
|
-
title-l-b: (
|
|
170
|
-
12px,
|
|
171
|
-
12px,
|
|
172
|
-
1.4,
|
|
173
|
-
'medium',
|
|
174
|
-
),
|
|
175
|
-
title-m: (
|
|
176
|
-
11px,
|
|
177
|
-
11px,
|
|
178
|
-
1.4,
|
|
179
|
-
'regular',
|
|
180
|
-
),
|
|
181
|
-
title-s: (
|
|
182
|
-
10px,
|
|
183
|
-
10px,
|
|
184
|
-
1.4,
|
|
185
|
-
'regular',
|
|
186
|
-
),
|
|
187
|
-
text-l: (
|
|
188
|
-
12px,
|
|
189
|
-
12px,
|
|
190
|
-
1.5,
|
|
191
|
-
'regular',
|
|
192
|
-
),
|
|
193
|
-
text-l-l: (
|
|
194
|
-
12px,
|
|
195
|
-
12px,
|
|
196
|
-
1.5,
|
|
197
|
-
'light',
|
|
198
|
-
),
|
|
199
|
-
text-m: (
|
|
200
|
-
11px,
|
|
201
|
-
11px,
|
|
202
|
-
1.5,
|
|
203
|
-
'regular',
|
|
204
|
-
),
|
|
205
|
-
) !default;
|
|
206
|
-
$headersFixers: (
|
|
207
|
-
12: (
|
|
208
|
-
12px,
|
|
209
|
-
1.5,
|
|
210
|
-
),
|
|
211
|
-
14: (
|
|
212
|
-
14px,
|
|
213
|
-
1.5,
|
|
214
|
-
),
|
|
215
|
-
16: (
|
|
216
|
-
16px,
|
|
217
|
-
1.5,
|
|
218
|
-
),
|
|
219
|
-
18: (
|
|
220
|
-
18px,
|
|
221
|
-
1.5,
|
|
222
|
-
),
|
|
223
|
-
20: (
|
|
224
|
-
20px,
|
|
225
|
-
1.5,
|
|
226
|
-
),
|
|
227
|
-
24: (
|
|
228
|
-
24px,
|
|
229
|
-
1.5,
|
|
230
|
-
),
|
|
231
|
-
) !default;
|
|
232
154
|
$headersFluids: (
|
|
233
155
|
2: (
|
|
234
156
|
40px,
|
package/scss/base/_grid.scss
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
// -CONTAINERS
|
|
5
5
|
|
|
6
6
|
.container {
|
|
7
|
-
padding-right:
|
|
8
|
-
padding-left:
|
|
7
|
+
padding-right: $padding-global;
|
|
8
|
+
padding-left: $padding-global;
|
|
9
9
|
margin-right: auto;
|
|
10
10
|
margin-left: auto;
|
|
11
11
|
position: relative;
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
max-width: $container;
|
|
14
14
|
|
|
15
15
|
@media (min-width: $break-sm) {
|
|
16
|
-
padding-right:
|
|
17
|
-
padding-left:
|
|
16
|
+
padding-right: $padding-global;
|
|
17
|
+
padding-left: $padding-global;
|
|
18
18
|
width: 90%;
|
|
19
19
|
max-width: nth(map-values($breakpoints), 2);
|
|
20
20
|
}
|
package/scss/base/_spacing.scss
CHANGED
|
@@ -152,3 +152,54 @@
|
|
|
152
152
|
padding-left: 0;
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
.sm\:pt-0 {
|
|
158
|
+
@media (min-width: $break-sm) {
|
|
159
|
+
padding-top: 0;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.md\:pt-0 {
|
|
164
|
+
@media (min-width: $break-md) {
|
|
165
|
+
padding-top: 0;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.lg\:pt-0 {
|
|
170
|
+
@media (min-width: $break-lg) {
|
|
171
|
+
padding-top: 0;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.xl\:pt-0 {
|
|
176
|
+
@media (min-width: $break-xl) {
|
|
177
|
+
padding-top: 0;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
.sm\:pb-0 {
|
|
183
|
+
@media (min-width: $break-sm) {
|
|
184
|
+
padding-bottom: 0;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.md\:pb-0 {
|
|
189
|
+
@media (min-width: $break-md) {
|
|
190
|
+
padding-bottom: 0;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.lg\:pb-0 {
|
|
195
|
+
@media (min-width: $break-lg) {
|
|
196
|
+
padding-bottom: 0;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.xl\:pb-0 {
|
|
201
|
+
@media (min-width: $break-xl) {
|
|
202
|
+
padding-bottom: 0;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|