jekyll-v4-theme-primer 0.14.0 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/_sass/@primer/primitives/dist/css/base/size/size.scss +19 -0
- data/_sass/@primer/primitives/dist/css/base/typography/typography.scss +6 -0
- data/_sass/@primer/primitives/dist/css/functional/motion/motion.scss +5 -0
- data/_sass/@primer/primitives/dist/css/functional/size/border.scss +14 -0
- data/_sass/@primer/primitives/dist/css/functional/size/breakpoints.scss +8 -0
- data/_sass/@primer/primitives/dist/css/functional/size/size-coarse.scss +7 -0
- data/_sass/@primer/primitives/dist/css/functional/size/size-fine.scss +7 -0
- data/_sass/@primer/primitives/dist/css/functional/size/size.scss +74 -0
- data/_sass/@primer/primitives/dist/css/functional/size/viewport.scss +6 -0
- data/_sass/@primer/primitives/dist/css/functional/themes/dark-colorblind.scss +1016 -0
- data/_sass/@primer/primitives/dist/css/functional/themes/dark-dimmed.scss +1016 -0
- data/_sass/@primer/primitives/dist/css/functional/themes/dark-high-contrast.scss +1016 -0
- data/_sass/@primer/primitives/dist/css/functional/themes/dark-tritanopia.scss +1016 -0
- data/_sass/@primer/primitives/dist/css/functional/themes/dark.scss +1016 -0
- data/_sass/@primer/primitives/dist/css/functional/themes/light-colorblind.scss +1016 -0
- data/_sass/@primer/primitives/dist/css/functional/themes/light-high-contrast.scss +1016 -0
- data/_sass/@primer/primitives/dist/css/functional/themes/light-tritanopia.scss +1016 -0
- data/_sass/@primer/primitives/dist/css/functional/themes/light.scss +1016 -0
- data/_sass/@primer/primitives/dist/css/functional/typography/typography.scss +47 -0
- data/_sass/alerts.scss +60 -0
- data/_sass/jekyll-v4-theme-primer.scss +13 -1
- metadata +37 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6deca22979167b1043c9685381b69369096e4f2c9d40d03cad78aacb603acfe4
|
4
|
+
data.tar.gz: 5df88a345c7bea70ae8b934b5646ec90847d4aff3006890e7dfc7ab14e3e76ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c01a1fc91baac56e2fa89f9b207a73940db8fc3b3db9e5d77b0aa2a1e42eb24ee398fefc2811e4d9996fb4d09f62c166b7514a894df09fcfaad450f6977ff0e
|
7
|
+
data.tar.gz: 5ad9b3f7cb6c62d00f3d413752b93af2bdfce69321d090a9915aba2df4840db5665c7f7efdd2389eb507a5a8aa3403fddbd21075fdc2b6c73fa2ee7f19035455
|
data/README.md
CHANGED
@@ -15,7 +15,7 @@ To use the Primer theme:
|
|
15
15
|
1. Add the following to your site's `_config.yml`:
|
16
16
|
|
17
17
|
```yml
|
18
|
-
remote_theme: dunkmann00/primer@v0.
|
18
|
+
remote_theme: dunkmann00/primer@v0.16.0
|
19
19
|
plugins:
|
20
20
|
- jekyll-remote-theme # add this line to the plugins list if you already have one
|
21
21
|
```
|
@@ -0,0 +1,19 @@
|
|
1
|
+
:root {
|
2
|
+
--base-size-4: 0.25rem;
|
3
|
+
--base-size-8: 0.5rem;
|
4
|
+
--base-size-12: 0.75rem;
|
5
|
+
--base-size-16: 1rem;
|
6
|
+
--base-size-20: 1.25rem;
|
7
|
+
--base-size-24: 1.5rem;
|
8
|
+
--base-size-28: 1.75rem;
|
9
|
+
--base-size-32: 2rem;
|
10
|
+
--base-size-36: 2.25rem;
|
11
|
+
--base-size-40: 2.5rem;
|
12
|
+
--base-size-44: 2.75rem;
|
13
|
+
--base-size-48: 3rem;
|
14
|
+
--base-size-64: 4rem;
|
15
|
+
--base-size-80: 5rem;
|
16
|
+
--base-size-96: 6rem;
|
17
|
+
--base-size-112: 7rem;
|
18
|
+
--base-size-128: 8rem;
|
19
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
:root {
|
2
|
+
--boxShadow-thin: inset 0 0 0 max(1px, 0.0625rem);
|
3
|
+
--boxShadow-thick: inset 0 0 0 max(2px, 0.125rem);
|
4
|
+
--boxShadow-thicker: inset 0 0 0 max(4px, 0.25rem);
|
5
|
+
--borderWidth-thin: max(1px, 0.0625rem);
|
6
|
+
--borderWidth-thick: max(2px, 0.125rem);
|
7
|
+
--borderWidth-thicker: max(4px, 0.25rem);
|
8
|
+
--borderRadius-small: 0.1875rem;
|
9
|
+
--borderRadius-medium: 0.375rem;
|
10
|
+
--borderRadius-large: 0.75rem;
|
11
|
+
--borderRadius-full: 624.9375rem;
|
12
|
+
--outline-focus-offset: -0.125rem;
|
13
|
+
--outline-focus-width: 0.125rem;
|
14
|
+
}
|
@@ -0,0 +1,74 @@
|
|
1
|
+
:root {
|
2
|
+
--control-minTarget-fine: 1rem;
|
3
|
+
--control-minTarget-coarse: 2.75rem;
|
4
|
+
--control-xsmall-size: 1.5rem;
|
5
|
+
--control-xsmall-lineBoxHeight: 1.25rem;
|
6
|
+
--control-xsmall-paddingBlock: 0.125rem;
|
7
|
+
--control-xsmall-paddingInline-condensed: 0.25rem;
|
8
|
+
--control-xsmall-paddingInline-normal: 0.5rem;
|
9
|
+
--control-xsmall-paddingInline-spacious: 0.75rem;
|
10
|
+
--control-xsmall-gap: 0.25rem;
|
11
|
+
--control-small-size: 1.75rem;
|
12
|
+
--control-small-lineBoxHeight: 1.25rem;
|
13
|
+
--control-small-paddingBlock: 0.25rem;
|
14
|
+
--control-small-paddingInline-condensed: 0.5rem;
|
15
|
+
--control-small-paddingInline-normal: 0.75rem;
|
16
|
+
--control-small-gap: 0.25rem;
|
17
|
+
--control-medium-size: 2rem;
|
18
|
+
--control-medium-lineBoxHeight: 1.25rem;
|
19
|
+
--control-medium-paddingBlock: 0.375rem;
|
20
|
+
--control-medium-paddingInline-condensed: 0.5rem;
|
21
|
+
--control-medium-paddingInline-normal: 0.75rem;
|
22
|
+
--control-medium-paddingInline-spacious: 1rem;
|
23
|
+
--control-medium-gap: 0.5rem;
|
24
|
+
--control-large-size: 2.5rem;
|
25
|
+
--control-large-lineBoxHeight: 1.25rem;
|
26
|
+
--control-large-paddingBlock: 0.625rem;
|
27
|
+
--control-large-paddingInline-normal: 0.75rem;
|
28
|
+
--control-large-paddingInline-spacious: 1rem;
|
29
|
+
--control-large-gap: 0.5rem;
|
30
|
+
--control-xlarge-size: 3rem;
|
31
|
+
--control-xlarge-lineBoxHeight: 1.25rem;
|
32
|
+
--control-xlarge-paddingBlock: 0.875rem;
|
33
|
+
--control-xlarge-paddingInline-normal: 0.75rem;
|
34
|
+
--control-xlarge-paddingInline-spacious: 1rem;
|
35
|
+
--control-xlarge-gap: 0.5rem;
|
36
|
+
--controlStack-small-gap-condensed: 0.5rem;
|
37
|
+
--controlStack-small-gap-spacious: 1rem;
|
38
|
+
--controlStack-medium-gap-condensed: 0.5rem;
|
39
|
+
--controlStack-medium-gap-spacious: 0.75rem;
|
40
|
+
--controlStack-large-gap-auto: 0.5rem;
|
41
|
+
--controlStack-large-gap-condensed: 0.5rem;
|
42
|
+
--controlStack-large-gap-spacious: 0.75rem;
|
43
|
+
--space-xxsmall: 0.125rem;
|
44
|
+
--space-xsmall: 0.25rem;
|
45
|
+
--space-small: 0.375rem;
|
46
|
+
--space-medium: 0.5rem;
|
47
|
+
--space-large: 0.75rem;
|
48
|
+
--space-xlarge: 1rem;
|
49
|
+
--spinner-strokeWidth-default: 0.125rem;
|
50
|
+
--spinner-size-small: 1rem;
|
51
|
+
--spinner-size-medium: 2rem;
|
52
|
+
--spinner-size-large: 4rem;
|
53
|
+
--stack-padding-condensed: 0.5rem;
|
54
|
+
--stack-padding-normal: 1rem;
|
55
|
+
--stack-padding-spacious: 1.5rem;
|
56
|
+
--stack-gap-condensed: 0.5rem;
|
57
|
+
--stack-gap-normal: 1rem;
|
58
|
+
--stack-gap-spacious: 1.5rem;
|
59
|
+
--overlay-width-xsmall: 12rem;
|
60
|
+
--overlay-width-small: 20rem;
|
61
|
+
--overlay-width-medium: 30rem;
|
62
|
+
--overlay-width-large: 40rem;
|
63
|
+
--overlay-width-xlarge: 60rem;
|
64
|
+
--overlay-height-small: 16rem;
|
65
|
+
--overlay-height-medium: 20rem;
|
66
|
+
--overlay-height-large: 27rem;
|
67
|
+
--overlay-height-xlarge: 37.5rem;
|
68
|
+
--overlay-padding-normal: 1rem;
|
69
|
+
--overlay-padding-condensed: 0.5rem;
|
70
|
+
--overlay-paddingBlock-condensed: 0.25rem;
|
71
|
+
--overlay-paddingBlock-normal: 0.75rem;
|
72
|
+
--overlay-borderRadius: 0.375rem;
|
73
|
+
--overlay-offset: 0.25rem;
|
74
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
@custom-media --viewportRange-narrow (max-width: calc(48rem - 0.02px));
|
2
|
+
@custom-media --viewportRange-narrowLandscape (max-width: calc(63.25rem - 0.02px) and (max-height: calc(34rem - 0.02px)) and (orientation: landscape));
|
3
|
+
@custom-media --viewportRange-regular (min-width: 48rem);
|
4
|
+
@custom-media --viewportRange-wide (min-width: 87.5rem);
|
5
|
+
@custom-media --viewportRange-portrait (orientation: portrait);
|
6
|
+
@custom-media --viewportRange-landscape (orientation: landscape);
|