@codecademy/gamut-styles 18.0.1-alpha.f8b396.0 → 19.0.1-alpha.c9d73c.0
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/README.md +0 -15
- package/dist/variance/utils.d.ts +4 -3
- package/package.json +4 -4
- package/core/_fonts.scss +0 -131
- package/core/_reboot.scss +0 -487
- package/core/_typography.scss +0 -36
- package/core/index.scss +0 -4
- package/core.scss +0 -1
- package/dist/__tests__/testUtils.d.ts +0 -2
- package/utils/functions/index.scss +0 -26
- package/utils/index.scss +0 -5
- package/utils/mixins/_font-smoothing.scss +0 -9
- package/utils/mixins/_no-select.scss +0 -4
- package/utils/mixins/_responsive.scss +0 -85
- package/utils/mixins/_shadow.scss +0 -19
- package/utils/mixins/_sr-only.scss +0 -37
- package/utils/mixins/index.scss +0 -6
- package/utils/mixins/legacy.scss +0 -48
- package/utils/variables/_base.scss +0 -7
- package/utils/variables/_colors.scss +0 -302
- package/utils/variables/_grid.scss +0 -15
- package/utils/variables/_responsive.scss +0 -1
- package/utils/variables/_typography.scss +0 -56
- package/utils/variables/index.js +0 -8
- package/utils/variables/index.scss +0 -5
- package/utils.scss +0 -1
package/README.md
CHANGED
|
@@ -2,22 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Base SCSS for Codecademy
|
|
4
4
|
|
|
5
|
-
## Variables/
|
|
6
|
-
|
|
7
|
-
This folder houses all shared SCSS style variables.
|
|
8
|
-
It also contains a JavaScript file with color variables.
|
|
9
|
-
|
|
10
5
|
## Core/
|
|
11
6
|
|
|
12
7
|
This folder contains a base stylesheet for the app.
|
|
13
8
|
This should be imported **once** in your application.
|
|
14
|
-
|
|
15
|
-
## Utils/
|
|
16
|
-
|
|
17
|
-
This folder contains Sass functions (pure utilities with no stylesheet output values) and mixins (outputs CSS)
|
|
18
|
-
to be used as needed both in Gamut and across the Codecademy app.
|
|
19
|
-
|
|
20
|
-
The `utils.scss` and `core.scss` just import the index files from their respective folders, to make the syntax to import them from elsewhere easier, e.g.:
|
|
21
|
-
|
|
22
|
-
`@use "~@codecademy/gamut-styles/utils";`
|
|
23
|
-
`@use "~@codecademy/gamut-styles/core";`
|
package/dist/variance/utils.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { ThemeProps } from '@codecademy/variance';
|
|
2
|
+
import type React from 'react';
|
|
2
3
|
import { all as allProps } from './config';
|
|
3
4
|
declare const allPropnames: ["mode", "variant", ...[keyof typeof allProps]];
|
|
4
5
|
export type SystemPropNames = (typeof allPropnames)[number];
|
|
5
|
-
export type ElementOrProps = keyof JSX.IntrinsicElements | ThemeProps;
|
|
6
|
-
export type ForwardableProps<El extends ElementOrProps, Additional> = Exclude<El extends keyof JSX.IntrinsicElements ? keyof JSX.IntrinsicElements[El] : keyof Element, Additional | SystemPropNames>;
|
|
6
|
+
export type ElementOrProps = keyof React.JSX.IntrinsicElements | ThemeProps;
|
|
7
|
+
export type ForwardableProps<El extends ElementOrProps, Additional> = Exclude<El extends keyof React.JSX.IntrinsicElements ? keyof React.JSX.IntrinsicElements[El] : keyof Element, Additional | SystemPropNames>;
|
|
7
8
|
export declare function createStyledOptions<El extends ElementOrProps = 'div', Additional extends string = never>(additional?: readonly Additional[]): {
|
|
8
9
|
shouldForwardProp: (prop: PropertyKey) => prop is ForwardableProps<El, Additional>;
|
|
9
10
|
};
|
|
@@ -24,6 +25,6 @@ export declare function createStyledOptions<El extends ElementOrProps = 'div', A
|
|
|
24
25
|
*
|
|
25
26
|
*/
|
|
26
27
|
export declare const styledOptions: typeof createStyledOptions & {
|
|
27
|
-
shouldForwardProp: (prop: PropertyKey) => prop is "style" | "property" | "rel" | "slot" | "title" | "rev" | "id" | "nonce" | "content" | "translate" | "children" | "className" | "part" | "prefix" | "role" | "suppressHydrationWarning" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "resource" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | keyof
|
|
28
|
+
shouldForwardProp: (prop: PropertyKey) => prop is "style" | "property" | "rel" | "slot" | "title" | "rev" | "id" | "nonce" | "content" | "translate" | "children" | "className" | "part" | "prefix" | "role" | "suppressHydrationWarning" | "lang" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "resource" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | keyof React.ClassAttributes<HTMLDivElement>;
|
|
28
29
|
};
|
|
29
30
|
export {};
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-styles",
|
|
3
3
|
"description": "Styleguide & Component library for codecademy.com",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "19.0.1-alpha.c9d73c.0",
|
|
5
5
|
"author": "Jake Hiller <jake@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/variance": "0.26.2-alpha.
|
|
7
|
+
"@codecademy/variance": "0.26.2-alpha.c9d73c.0",
|
|
8
8
|
"@emotion/is-prop-valid": "^1.1.0",
|
|
9
|
-
"framer-motion": "^
|
|
9
|
+
"framer-motion": "^12.0.0",
|
|
10
10
|
"get-nonce": "^1.0.0",
|
|
11
11
|
"polished": "^4.1.2"
|
|
12
12
|
},
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@emotion/react": "^11.4.0",
|
|
27
27
|
"@emotion/styled": "^11.3.0",
|
|
28
28
|
"lodash": "^4.17.23",
|
|
29
|
-
"react": "^17.0.2 || ^18.3.0",
|
|
29
|
+
"react": "^17.0.2 || ^18.3.0 || ^19.0.0",
|
|
30
30
|
"stylis": "^4.0.7"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
package/core/_fonts.scss
DELETED
|
@@ -1,131 +0,0 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "Nunito Sans";
|
|
3
|
-
font-display: swap;
|
|
4
|
-
src: url("../fonts/Nunito_Sans/nunitosans-regular-webfont.eot");
|
|
5
|
-
src: url("../fonts/Nunito_Sans/nunitosans-regular-webfont.woff2")
|
|
6
|
-
format("woff2"),
|
|
7
|
-
url("../fonts/Nunito_Sans/nunitosans-regular-webfont.woff") format("woff"),
|
|
8
|
-
url("../fonts/Nunito_Sans/nunitosans-regular-webfont.ttf") format("ttf");
|
|
9
|
-
font-weight: normal;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
@font-face {
|
|
13
|
-
font-family: "Nunito Sans";
|
|
14
|
-
font-display: swap;
|
|
15
|
-
src: url("../fonts/Nunito_Sans/nunitosans-bold-webfont.eot");
|
|
16
|
-
src: url("../fonts/Nunito_Sans/nunitosans-bold-webfont.woff2") format("woff2"),
|
|
17
|
-
url("../fonts/Nunito_Sans/nunitosans-bold-webfont.woff") format("woff"),
|
|
18
|
-
url("../fonts/Nunito_Sans/nunitosans-bold-webfont.ttf") format("ttf");
|
|
19
|
-
font-weight: bold;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
@font-face {
|
|
23
|
-
font-family: "Regular Bold";
|
|
24
|
-
font-display: swap;
|
|
25
|
-
src: url("../fonts/Regular_Bold/Regular-BoldWEB.eot");
|
|
26
|
-
src: url("../fonts/Regular_Bold/Regular-BoldWEB.woff2") format("woff2"),
|
|
27
|
-
url("../fonts/Regular_Bold/Regular-BoldWEB.woff") format("woff"),
|
|
28
|
-
url("../fonts/Regular_Bold/Regular-BoldWEB.svg") format("svg");
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
// because Regular has weird caret styles
|
|
32
|
-
@font-face {
|
|
33
|
-
font-family: "Regular Patch";
|
|
34
|
-
src: url("../fonts/Nunito_Sans/nunitosans-bold-webfont.eot");
|
|
35
|
-
src: url("../fonts/Nunito_Sans/nunitosans-bold-webfont.woff2") format("woff2"),
|
|
36
|
-
url("../fonts/Nunito_Sans/nunitosans-bold-webfont.woff") format("woff"),
|
|
37
|
-
url("../fonts/Nunito_Sans/nunitosans-bold-webfont.ttf") format("ttf");
|
|
38
|
-
unicode-range: U+003C, U+003E;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
@font-face {
|
|
42
|
-
font-display: swap;
|
|
43
|
-
font-family: "Apercu";
|
|
44
|
-
font-style: normal;
|
|
45
|
-
font-weight: normal;
|
|
46
|
-
src: url("../fonts/Apercu/apercu-regular-pro.woff2") format("woff2"),
|
|
47
|
-
url("../fonts/Apercu/apercu-regular-pro.woff") format("woff");
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
@font-face {
|
|
51
|
-
font-display: swap;
|
|
52
|
-
font-family: "Apercu";
|
|
53
|
-
font-style: normal;
|
|
54
|
-
font-weight: bold;
|
|
55
|
-
src: url("../fonts/Apercu/apercu-bold-pro.woff2") format("woff2"),
|
|
56
|
-
url("../fonts/Apercu/apercu-bold-pro.woff") format("woff");
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
@font-face {
|
|
60
|
-
font-display: swap;
|
|
61
|
-
font-family: "Apercu";
|
|
62
|
-
font-style: italic;
|
|
63
|
-
font-weight: normal;
|
|
64
|
-
src: url("../fonts/Apercu/apercu-italic-pro.woff2") format("woff2"),
|
|
65
|
-
url("../fonts/Apercu/apercu-italic-pro.woff") format("woff");
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
@font-face {
|
|
69
|
-
font-display: swap;
|
|
70
|
-
font-family: "Apercu";
|
|
71
|
-
font-style: italic;
|
|
72
|
-
font-weight: bold;
|
|
73
|
-
src: url("../fonts/Apercu/apercu-bold-italic-pro.woff2") format("woff2"),
|
|
74
|
-
url("../fonts/Apercu/apercu-bold-italic-pro.woff") format("woff");
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
@font-face {
|
|
78
|
-
font-display: swap;
|
|
79
|
-
font-family: "Suisse";
|
|
80
|
-
font-weight: normal;
|
|
81
|
-
src: url("../fonts/Suisse/SuisseIntlMono-Regular-WebS.woff2") format("woff2"),
|
|
82
|
-
url("../fonts/Suisse/SuisseIntlMono-Regular-WebS.woff") format("woff");
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
@font-face {
|
|
86
|
-
font-display: swap;
|
|
87
|
-
font-family: "Suisse";
|
|
88
|
-
font-weight: bold;
|
|
89
|
-
src: url("../fonts/Suisse/SuisseIntlMono-Bold-WebS.woff2") format("woff2"),
|
|
90
|
-
url("../fonts/Suisse/SuisseIntlMono-Bold-WebS.woff") format("woff");
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
@font-face {
|
|
94
|
-
font-display: swap;
|
|
95
|
-
font-family: "Hanken Grotesk";
|
|
96
|
-
font-style: normal;
|
|
97
|
-
font-weight: normal;
|
|
98
|
-
src: url("../fonts/Hanken_Grotesk/hanken-grotesk-regular.woff2")
|
|
99
|
-
format("woff2"),
|
|
100
|
-
url("../fonts/Hanken_Grotesk/hanken-grotesk-regular.woff") format("woff");
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
@font-face {
|
|
104
|
-
font-display: swap;
|
|
105
|
-
font-family: "Hanken Grotesk";
|
|
106
|
-
font-style: normal;
|
|
107
|
-
font-weight: bold;
|
|
108
|
-
src: url("../fonts/Hanken_Grotesk/hanken-grotesk-bold.woff2") format("woff2"),
|
|
109
|
-
url("../fonts/Hanken_Grotesk/hanken-grotesk-bold.woff") format("woff");
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
@font-face {
|
|
113
|
-
font-display: swap;
|
|
114
|
-
font-family: "Hanken Grotesk";
|
|
115
|
-
font-style: italic;
|
|
116
|
-
font-weight: normal;
|
|
117
|
-
src: url("../fonts/Hanken_Grotesk/hanken-grotesk-italic.woff2")
|
|
118
|
-
format("woff2"),
|
|
119
|
-
url("../fonts/Hanken_Grotesk/hanken-grotesk-italic.woff") format("woff");
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
@font-face {
|
|
123
|
-
font-display: swap;
|
|
124
|
-
font-family: "Hanken Grotesk";
|
|
125
|
-
font-style: italic;
|
|
126
|
-
font-weight: bold;
|
|
127
|
-
src: url("../fonts/Hanken_Grotesk/hanken-grotesk-bold-italic.woff2")
|
|
128
|
-
format("woff2"),
|
|
129
|
-
url("../fonts/Hanken_Grotesk/hanken-grotesk-bold-italic.woff")
|
|
130
|
-
format("woff");
|
|
131
|
-
}
|