@royaloperahouse/harmonic 0.1.6 → 0.1.7-a
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/CHANGELOG.md +3 -0
- package/README.md +252 -43
- package/dist/components/Typography/Typography.d.ts +8 -9
- package/dist/components/atoms/Account/Account.d.ts +1 -1
- package/dist/components/atoms/Buttons/Auxiliary/AuxiliaryButton.d.ts +2 -2
- package/dist/components/atoms/Buttons/Auxiliary/AuxiliaryButton.style.d.ts +2 -2
- package/dist/components/atoms/Buttons/Auxiliary/utils.d.ts +3 -0
- package/dist/components/atoms/Buttons/Button.d.ts +2 -2
- package/dist/components/atoms/Buttons/Button.style.d.ts +3 -3
- package/dist/components/atoms/Buttons/Primary/PrimaryButton.d.ts +2 -2
- package/dist/components/atoms/Buttons/Primary/PrimaryButton.style.d.ts +3 -0
- package/dist/components/atoms/Buttons/Primary/utils.d.ts +11 -0
- package/dist/components/atoms/Buttons/Secondary/SecondaryButton.d.ts +2 -2
- package/dist/components/atoms/Buttons/Secondary/SecondaryButton.style.d.ts +3 -0
- package/dist/components/atoms/Buttons/Secondary/utils.d.ts +13 -0
- package/dist/components/atoms/Buttons/Tertiary/TertiaryButton.d.ts +3 -3
- package/dist/components/atoms/Buttons/Tertiary/TertiaryButton.style.d.ts +3 -4
- package/dist/components/atoms/Buttons/Tertiary/utils.d.ts +8 -0
- package/dist/components/atoms/Buttons/utils.d.ts +5 -0
- package/dist/components/atoms/Dropdown/Dropdown.d.ts +1 -1
- package/dist/components/atoms/Dropdown/Dropdown.style.d.ts +2 -2
- package/dist/components/atoms/Icons/Icons.d.ts +1 -1
- package/dist/components/atoms/Icons/SvgIcons/RBO/NavLogoMobile.svg.d.ts +4 -0
- package/dist/components/atoms/Icons/SvgIcons/RBO/NavLogoNoCrest.svg.d.ts +4 -0
- package/dist/components/atoms/Icons/SvgIcons/RBO/NavLogoWithCrest.svg.d.ts +4 -0
- package/dist/components/atoms/Icons/SvgIcons/index.d.ts +3 -0
- package/dist/components/atoms/RotatorButtons/RotatorButtons.d.ts +2 -2
- package/dist/components/atoms/Search/Search.d.ts +1 -1
- package/dist/components/atoms/Tab/Tab.d.ts +1 -1
- package/dist/components/index.d.ts +2 -2
- package/dist/components/molecules/Basket/Basket.d.ts +1 -1
- package/dist/components/molecules/Basket/Basket.style.d.ts +2 -0
- package/dist/components/molecules/NavTop/NavTop.d.ts +1 -1
- package/dist/components/molecules/PageHeading/Compact/Compact.style.d.ts +1 -1
- package/dist/components/molecules/PeopleListing/CreditListing/CreditListing.d.ts +4 -4
- package/dist/components/molecules/SearchBar/SearchBar.d.ts +1 -1
- package/dist/components/molecules/SearchBar/SearchBar.style.d.ts +1 -1
- package/dist/components/molecules/Select/Select.style.d.ts +1 -1
- package/dist/components/molecules/SignUpForm/SignUpForm.d.ts +4 -0
- package/dist/components/molecules/SignUpForm/SignUpForm.style.d.ts +20 -0
- package/dist/components/molecules/SignUpForm/index.d.ts +2 -0
- package/dist/components/molecules/Tabs/Tabs.d.ts +1 -1
- package/dist/components/molecules/index.d.ts +2 -1
- package/dist/components/organisms/Footer/Footer.style.d.ts +2 -1
- package/dist/components/organisms/Navigation/Navigation.d.ts +1 -1
- package/dist/components/organisms/Navigation/Navigation.style.d.ts +7 -1
- package/dist/components/organisms/TitleWithCTA/TitleWithCTA.style.d.ts +1 -1
- package/dist/harmonic.cjs.development.css +141 -68
- package/dist/harmonic.cjs.development.js +2640 -2034
- package/dist/harmonic.cjs.development.js.map +1 -1
- package/dist/harmonic.cjs.production.min.js +1 -1
- package/dist/harmonic.cjs.production.min.js.map +1 -1
- package/dist/harmonic.esm.js +2645 -2043
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/helpers/formatStrings.d.ts +1 -0
- package/dist/helpers/forms.d.ts +20 -0
- package/dist/helpers/theme.d.ts +2 -0
- package/dist/index.d.ts +2 -2
- package/dist/styles/HarmonicThemeProvider/HarmonicThemeProvider.d.ts +9 -0
- package/dist/styles/HarmonicThemeProvider/index.d.ts +2 -0
- package/dist/types/buttonTypes.d.ts +35 -63
- package/dist/types/creditListing.d.ts +3 -0
- package/dist/types/editorial.d.ts +4 -0
- package/dist/types/footer.d.ts +1 -0
- package/dist/types/index.d.ts +2 -2
- package/dist/types/information.d.ts +4 -4
- package/dist/types/navigation.d.ts +18 -14
- package/dist/types/promoWithTags.d.ts +4 -0
- package/dist/types/signUpForm.d.ts +80 -0
- package/dist/types/types.d.ts +56 -20
- package/dist/types/typography.d.ts +2 -1
- package/package.json +16 -17
- package/README.GIT +0 -278
- package/dist/components/atoms/Buttons/ButtonIconWrapper.style.d.ts +0 -2
- package/dist/components/atoms/Buttons/Primary/PrimaryButtonWrapper.style.d.ts +0 -4
- package/dist/components/atoms/Buttons/Secondary/SecondaryButtonWrapper.style.d.ts +0 -3
- package/dist/styles/StorybookSupport/Colours/StorybookColourBox.d.ts +0 -5
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ICreditListing } from '../../../../types';
|
|
3
|
-
export declare const
|
|
4
|
-
declare const
|
|
5
|
-
|
|
6
|
-
}) => React.JSX.Element;
|
|
3
|
+
export declare const DEFAULT_COLUMN_COUNT = 4;
|
|
4
|
+
export declare const DEFAULT_LARGE_COLUMN_SPAN = 2;
|
|
5
|
+
export declare const DEFAULT_CHARACTER_THRESHOLD = 180;
|
|
6
|
+
declare const CreditListing: ({ roles, columnCount, expandLargeEntries, largeColumnSpan, characterThreshold, }: ICreditListing) => React.JSX.Element;
|
|
7
7
|
export default CreditListing;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ISearchBarProps } from '../../../types/navigation';
|
|
3
|
-
declare const SearchBar: ({ onClick, onClose }: ISearchBarProps) => React.JSX.Element;
|
|
3
|
+
declare const SearchBar: ({ onClick, onClose, className }: ISearchBarProps) => React.JSX.Element;
|
|
4
4
|
export default SearchBar;
|
|
@@ -3,5 +3,5 @@ export declare const SvgContainerSearch: import("styled-components").StyledCompo
|
|
|
3
3
|
export declare const SvgContainerClose: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
4
|
export declare const SearchUnavailableContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
5
|
export declare const InputContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const TextLinkWrapper: import("styled-components").StyledComponent<import("react").FunctionComponent<import("../../../types/types").ITextLinkProps>, any, {}, never>;
|
|
7
7
|
export declare const SearchArrowContainer: import("styled-components").StyledComponent<"a", any, {}, never>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ISelectProps } from '../../../types/formTypes';
|
|
2
|
-
export declare const ArrowIcon: import("styled-components").StyledComponent<import("react").MemoExoticComponent<(
|
|
2
|
+
export declare const ArrowIcon: import("styled-components").StyledComponent<import("react").MemoExoticComponent<(props: import("../../../types/iconTypes").IIconProps) => import("react").ReactElement<any, string | ((props: any) => import("react").ReactElement<any, any> | null) | (new (props: any) => import("react").Component<any, any, any>)>>, any, {
|
|
3
3
|
iconName: "DropdownArrow";
|
|
4
4
|
color: string;
|
|
5
5
|
title: "Select Arrow";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Colors } from '../../../types';
|
|
2
|
+
export declare const Wrapper: import("styled-components").StyledComponent<"div", any, {
|
|
3
|
+
theme: Colors;
|
|
4
|
+
}, never>;
|
|
5
|
+
export declare const SignUpFormWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
|
+
export declare const SignUpTitleWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
7
|
+
export declare const Error: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
8
|
+
export declare const Form: import("styled-components").StyledComponent<"form", any, {}, never>;
|
|
9
|
+
export declare const FormFooterWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
10
|
+
export declare const ServerError: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
11
|
+
export declare const CTALinkWrapper: import("styled-components").StyledComponent<"a", any, {}, never>;
|
|
12
|
+
export declare const ButtonWrapper: import("styled-components").StyledComponent<"button", any, {}, never>;
|
|
13
|
+
export declare const FieldsWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
14
|
+
export declare const MessageWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
15
|
+
export declare const DropdownAreaWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
16
|
+
export declare const DropdownWrapper: import("styled-components").StyledComponent<"div", any, {
|
|
17
|
+
isOpen?: boolean | undefined;
|
|
18
|
+
}, never>;
|
|
19
|
+
export declare const HiddenInstructions: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
20
|
+
export declare const SignUpHeader: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ITabsProps } from '../../../types/types';
|
|
3
|
-
declare const Tabs: ({ items, onChange, onShowMenu, showMenu,
|
|
3
|
+
declare const Tabs: ({ items, onChange, onShowMenu, showMenu, className }: ITabsProps) => React.JSX.Element;
|
|
4
4
|
export default Tabs;
|
|
@@ -32,4 +32,5 @@ import AuxiliaryNav from './AuxiliaryNav';
|
|
|
32
32
|
import PasswordStrength from './PasswordStrength';
|
|
33
33
|
import Table from './Table';
|
|
34
34
|
import VideoWithControls from './VideoWithControls';
|
|
35
|
-
|
|
35
|
+
import SignUpForm from './SignUpForm';
|
|
36
|
+
export { Accordion, Accordions, AnnouncementBanner, AuxiliaryNav, Card, Cards, ContactCard, ContentSummary, CreditListing, Editorial, ImageWithCaption, Information, MiniCard, PageHeadingCinema, PageHeadingCompact, PageHeadingCore, PageHeadingImpact, PageHeadingPanel, PageHeadingStream, PasswordStrength, Pagination, PeopleListing, PolicyLinks, PromoWithTags, PromoWithTitle, RadioGroup, RadioGroup2, ReadMore, Quote, StatusBanner, SectionTitle, SearchBar, Select, Select2, Select2Async, Tabs, Table, TextOnly, UpsellCard, VideoWithControls, SignUpForm, };
|
|
@@ -2,5 +2,6 @@ export declare const FooterSection: import("styled-components").StyledComponent<
|
|
|
2
2
|
export declare const FooterContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
3
|
export declare const PolicyLinksSection: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
4
|
export declare const SocialAndNewsletterSection: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
|
+
export declare const SectionWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
6
|
export declare const LogoAndDescriptionSection: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
|
-
export declare const
|
|
7
|
+
export declare const TextLinkWrapper: import("styled-components").StyledComponent<import("react").FunctionComponent<import("../../../types/types").ITextLinkProps>, any, {}, never>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { INavigationProps } from '../../../types/navigation';
|
|
3
|
-
declare const Navigation: ({ dataNavTop, menuData, onSearch, onLink,
|
|
3
|
+
declare const Navigation: ({ dataNavTop, menuData, onSearch, onLink, crest, className }: INavigationProps) => React.JSX.Element;
|
|
4
4
|
export default Navigation;
|
|
@@ -9,8 +9,14 @@ export declare const GridItemSearch: import("styled-components").StyledComponent
|
|
|
9
9
|
visible?: boolean | undefined;
|
|
10
10
|
}, never>;
|
|
11
11
|
export declare const NavigationGridMobile: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
12
|
-
export declare const
|
|
12
|
+
export declare const MobileMenuContainer: import("styled-components").StyledComponent<"div", any, {
|
|
13
|
+
showSearch?: boolean | undefined;
|
|
14
|
+
}, never>;
|
|
15
|
+
export declare const LogoContainer: import("styled-components").StyledComponent<"a", any, {}, never>;
|
|
16
|
+
export declare const LogoContainerMobile: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
13
17
|
export declare const MenuContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
18
|
+
export declare const NavWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
14
19
|
export declare const NavContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
15
20
|
export declare const NavContainerGridItem: import("styled-components").StyledComponent<"div", any, import("../../../types/types").IGridItemProps, never>;
|
|
16
21
|
export declare const NavTopContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
22
|
+
export declare const NavTopContainerMobile: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -6,6 +6,6 @@ export declare const AnchorTitle: import("styled-components").StyledComponent<"d
|
|
|
6
6
|
export declare const GridItemTitleWrapper: import("styled-components").StyledComponent<"div", any, import("../../../types/types").IGridItemProps, never>;
|
|
7
7
|
export declare const ButtonsDesktopWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
8
8
|
export declare const ButtonsMobileWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
9
|
-
export declare const PrimaryButtonReverse: import("styled-components").StyledComponent<import("react").FunctionComponent<import("../../../types/buttonTypes").
|
|
9
|
+
export declare const PrimaryButtonReverse: import("styled-components").StyledComponent<import("react").FunctionComponent<import("../../../types/buttonTypes").PrimaryButtonProps>, any, {}, never>;
|
|
10
10
|
export declare const MessageWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
11
11
|
export declare const MessageWrapperMobile: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -1,67 +1,77 @@
|
|
|
1
|
-
/* Global Styles for Harmonic CSS components */
|
|
2
|
-
:root {
|
|
3
|
-
--font-family-sans: 'Grey LL Bold', 'Roboto', sans-serif;
|
|
4
|
-
--font-family-serif: 'Victor Serif Medium', 'Inria Serif Regular', serif;
|
|
5
|
-
--harmonic-red: #F40B0B;
|
|
6
|
-
--harmonic-black: #000000;
|
|
7
|
-
--text-link-underline-offset: 4px;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
/* TODO: store breakpoints here for use in css components */
|
|
12
|
-
/* export const breakpoints = {
|
|
13
|
-
xs: 320,
|
|
14
|
-
sm: 700,
|
|
15
|
-
md: 1140,
|
|
16
|
-
ml: 1280,
|
|
17
|
-
lg: 1400,
|
|
18
|
-
}; */
|
|
19
1
|
/* ~~~~~ General Styling Classes ~~~~~ */
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
.styles_color-red__zwTZW {
|
|
25
|
-
color: var(--harmonic-red);
|
|
26
|
-
}
|
|
2
|
+
.styles_color-primary__UYod1 {
|
|
3
|
+
color: var(--color-primary);
|
|
4
|
+
}
|
|
27
5
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
6
|
+
.styles_color-black__a05Fo {
|
|
7
|
+
color: var(--color-base-black);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.styles_color-white__HiYDT {
|
|
11
|
+
color: var(--color-base-white);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.styles_color-red__zwTZW {
|
|
15
|
+
color: var(--color-primary-red);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.styles_color-grey__Gc0wv {
|
|
19
|
+
color: var(--color-base-dark-grey);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.styles_em__v4FoO {
|
|
23
|
+
font-style: italic;
|
|
24
|
+
}
|
|
31
25
|
/* ~~~ */
|
|
32
26
|
|
|
33
27
|
/* Display Headers */
|
|
34
28
|
.styles_display__VgnTB {
|
|
29
|
+
margin: 0;
|
|
35
30
|
font-family: var(--font-family-sans);
|
|
31
|
+
line-height: 100%;
|
|
36
32
|
|
|
37
33
|
&.styles_large__vqVxY {
|
|
38
34
|
font-size: 96px;
|
|
35
|
+
font-weight: 700;
|
|
39
36
|
letter-spacing: -5px;
|
|
40
37
|
}
|
|
41
38
|
|
|
42
39
|
&.styles_small__e7YDe {
|
|
43
40
|
font-size: 68px;
|
|
44
|
-
letter-spacing: -3px;
|
|
45
41
|
font-weight: 500;
|
|
42
|
+
letter-spacing: -3px;
|
|
46
43
|
}
|
|
47
44
|
|
|
48
|
-
|
|
45
|
+
/* Serif and Italic styles */
|
|
46
|
+
&.styles_serif__b-ZjM,
|
|
47
|
+
&.styles_em__v4FoO {
|
|
49
48
|
font-family: var(--font-family-serif);
|
|
50
49
|
font-weight: 500;
|
|
51
50
|
}
|
|
52
51
|
|
|
53
|
-
|
|
52
|
+
/* Serif and Italic adjustments */
|
|
53
|
+
&.styles_large__vqVxY.styles_serif__b-ZjM,
|
|
54
|
+
&.styles_large__vqVxY.styles_em__v4FoO {
|
|
55
|
+
letter-spacing: -3px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&.styles_small__e7YDe.styles_serif__b-ZjM,
|
|
59
|
+
&.styles_small__e7YDe.styles_em__v4FoO {
|
|
60
|
+
letter-spacing: -2px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
@media (max-width: 699px) {
|
|
54
64
|
&.styles_large__vqVxY {
|
|
55
65
|
font-size: 38px;
|
|
56
|
-
letter-spacing: -1.5px;
|
|
66
|
+
letter-spacing: -1.5px;
|
|
57
67
|
}
|
|
58
|
-
|
|
68
|
+
|
|
59
69
|
&.styles_small__e7YDe {
|
|
60
70
|
font-size: 32px;
|
|
61
71
|
letter-spacing: -1.5px;
|
|
62
72
|
}
|
|
63
73
|
|
|
64
|
-
&.styles_large__vqVxY.styles_serif__b-ZjM,
|
|
74
|
+
&.styles_large__vqVxY.styles_serif__b-ZjM,
|
|
65
75
|
&.styles_large__vqVxY.styles_em__v4FoO,
|
|
66
76
|
&.styles_small__e7YDe.styles_serif__b-ZjM,
|
|
67
77
|
&.styles_small__e7YDe.styles_em__v4FoO {
|
|
@@ -72,6 +82,7 @@
|
|
|
72
82
|
|
|
73
83
|
/* Headers */
|
|
74
84
|
.styles_header__UDH-H {
|
|
85
|
+
margin: 0;
|
|
75
86
|
font-family: var(--font-family-sans);
|
|
76
87
|
font-weight: 500;
|
|
77
88
|
|
|
@@ -84,7 +95,7 @@
|
|
|
84
95
|
&.styles_medium__WQPZj {
|
|
85
96
|
font-size: 34px;
|
|
86
97
|
line-height: 40px;
|
|
87
|
-
letter-spacing: -
|
|
98
|
+
letter-spacing: -1px;
|
|
88
99
|
}
|
|
89
100
|
|
|
90
101
|
&.styles_small__e7YDe {
|
|
@@ -93,150 +104,212 @@
|
|
|
93
104
|
letter-spacing: -0.5px;
|
|
94
105
|
}
|
|
95
106
|
|
|
96
|
-
|
|
107
|
+
/* Serif and Italic styles */
|
|
108
|
+
&.styles_serif__b-ZjM,
|
|
109
|
+
&.styles_em__v4FoO {
|
|
97
110
|
font-family: var(--font-family-serif);
|
|
98
|
-
font-weight: 500;
|
|
99
111
|
}
|
|
100
112
|
|
|
101
|
-
|
|
113
|
+
/* Serif and Italic letter-spacing overrides */
|
|
114
|
+
&.styles_large__vqVxY.styles_serif__b-ZjM,
|
|
115
|
+
&.styles_large__vqVxY.styles_em__v4FoO {
|
|
116
|
+
letter-spacing: -0.5px;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
&.styles_medium__WQPZj.styles_serif__b-ZjM,
|
|
120
|
+
&.styles_medium__WQPZj.styles_em__v4FoO {
|
|
121
|
+
letter-spacing: -0.5px;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
&.styles_small__e7YDe.styles_serif__b-ZjM,
|
|
125
|
+
&.styles_small__e7YDe.styles_em__v4FoO {
|
|
126
|
+
letter-spacing: -0.5px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
@media (max-width: 699px) {
|
|
102
130
|
&.styles_large__vqVxY {
|
|
103
131
|
font-size: 28px;
|
|
104
|
-
letter-spacing: -1.5px;
|
|
105
132
|
line-height: 34px;
|
|
133
|
+
letter-spacing: -1.5px;
|
|
106
134
|
}
|
|
107
|
-
|
|
135
|
+
|
|
108
136
|
&.styles_medium__WQPZj {
|
|
109
137
|
font-size: 24px;
|
|
110
|
-
letter-spacing: -1px;
|
|
111
138
|
line-height: 28px;
|
|
139
|
+
letter-spacing: -1px;
|
|
112
140
|
}
|
|
113
|
-
|
|
141
|
+
|
|
114
142
|
&.styles_small__e7YDe {
|
|
115
143
|
font-size: 20px;
|
|
116
|
-
letter-spacing: -0.75px;
|
|
117
144
|
line-height: 26px;
|
|
145
|
+
letter-spacing: -0.75px;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/* Mobile overrides for serif/italic letter-spacing */
|
|
149
|
+
&.styles_large__vqVxY.styles_serif__b-ZjM,
|
|
150
|
+
&.styles_large__vqVxY.styles_em__v4FoO,
|
|
151
|
+
&.styles_medium__WQPZj.styles_serif__b-ZjM,
|
|
152
|
+
&.styles_medium__WQPZj.styles_em__v4FoO,
|
|
153
|
+
&.styles_small__e7YDe.styles_serif__b-ZjM,
|
|
154
|
+
&.styles_small__e7YDe.styles_em__v4FoO {
|
|
155
|
+
letter-spacing: -0.5px;
|
|
118
156
|
}
|
|
119
157
|
}
|
|
120
158
|
}
|
|
121
159
|
|
|
122
160
|
/* Subtitle */
|
|
123
161
|
.styles_subtitle__os3DH {
|
|
162
|
+
margin: 0;
|
|
124
163
|
font-family: var(--font-family-sans);
|
|
125
164
|
font-weight: 500;
|
|
126
165
|
|
|
127
166
|
&.styles_large__vqVxY {
|
|
128
167
|
font-size: 19px;
|
|
129
168
|
line-height: 26px;
|
|
169
|
+
letter-spacing: -0.5px;
|
|
130
170
|
}
|
|
131
171
|
|
|
132
172
|
&.styles_small__e7YDe {
|
|
133
173
|
font-size: 17px;
|
|
134
174
|
line-height: 24px;
|
|
175
|
+
letter-spacing: -0.5px;
|
|
135
176
|
}
|
|
136
177
|
|
|
137
|
-
@media (max-width:
|
|
178
|
+
@media (max-width: 699px) {
|
|
138
179
|
&.styles_large__vqVxY {
|
|
139
180
|
font-size: 17px;
|
|
140
181
|
line-height: 24px;
|
|
182
|
+
letter-spacing: -0.5px;
|
|
141
183
|
}
|
|
142
|
-
|
|
184
|
+
|
|
143
185
|
&.styles_small__e7YDe {
|
|
144
186
|
font-size: 14px;
|
|
145
|
-
letter-spacing: -0.2px;
|
|
146
187
|
line-height: 20px;
|
|
188
|
+
letter-spacing: -0.2px;
|
|
147
189
|
}
|
|
148
190
|
}
|
|
149
191
|
}
|
|
150
192
|
|
|
151
193
|
/* Body Copy */
|
|
152
194
|
.styles_bodycopy__uEx9r {
|
|
195
|
+
margin: 0;
|
|
153
196
|
font-family: var(--font-family-sans);
|
|
154
197
|
font-weight: 400;
|
|
155
|
-
letter-spacing: -0.5px;
|
|
156
198
|
|
|
157
199
|
&.styles_large__vqVxY {
|
|
158
200
|
font-size: 19px;
|
|
159
201
|
line-height: 26px;
|
|
202
|
+
letter-spacing: -0.5px;
|
|
160
203
|
}
|
|
161
204
|
|
|
162
205
|
&.styles_medium__WQPZj {
|
|
163
206
|
font-size: 17px;
|
|
164
207
|
line-height: 24px;
|
|
208
|
+
letter-spacing: -0.5px;
|
|
165
209
|
}
|
|
166
210
|
|
|
167
211
|
&.styles_small__e7YDe {
|
|
168
212
|
font-size: 14px;
|
|
169
213
|
line-height: 20px;
|
|
214
|
+
letter-spacing: -0.5px;
|
|
170
215
|
}
|
|
171
216
|
|
|
172
|
-
@media (max-width:
|
|
217
|
+
@media (max-width: 699px) {
|
|
173
218
|
&.styles_large__vqVxY {
|
|
174
219
|
font-size: 17px;
|
|
175
220
|
line-height: 24px;
|
|
221
|
+
letter-spacing: -0.5px;
|
|
176
222
|
}
|
|
177
|
-
|
|
223
|
+
|
|
178
224
|
&.styles_medium__WQPZj {
|
|
179
225
|
font-size: 14px;
|
|
180
|
-
letter-spacing: -0.2px;
|
|
181
226
|
line-height: 20px;
|
|
227
|
+
letter-spacing: -0.2px;
|
|
182
228
|
}
|
|
183
|
-
|
|
229
|
+
|
|
184
230
|
&.styles_small__e7YDe {
|
|
185
231
|
font-size: 11px;
|
|
186
|
-
letter-spacing: -0.2px;
|
|
187
232
|
line-height: 16px;
|
|
233
|
+
letter-spacing: -0.2px;
|
|
188
234
|
}
|
|
189
235
|
}
|
|
190
236
|
}
|
|
191
237
|
|
|
192
238
|
/* Overline */
|
|
193
239
|
.styles_overline__5xGDa {
|
|
240
|
+
margin: 0;
|
|
194
241
|
font-family: var(--font-family-sans);
|
|
195
242
|
font-weight: 500;
|
|
196
243
|
text-transform: uppercase;
|
|
197
244
|
|
|
198
|
-
&.styles_large__vqVxY {
|
|
199
|
-
|
|
245
|
+
&.styles_large__vqVxY {
|
|
246
|
+
font-size: 14px;
|
|
247
|
+
line-height: 18px;
|
|
248
|
+
letter-spacing: 0.3px;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
&.styles_small__e7YDe {
|
|
252
|
+
font-size: 12px;
|
|
253
|
+
line-height: 14px;
|
|
254
|
+
letter-spacing: 0.2px;
|
|
255
|
+
}
|
|
200
256
|
|
|
201
|
-
@media (max-width:
|
|
257
|
+
@media (max-width: 699px) {
|
|
202
258
|
&.styles_large__vqVxY {
|
|
203
259
|
line-height: 17px;
|
|
260
|
+
letter-spacing: 0.3px; /* Added to ensure it stays */
|
|
204
261
|
}
|
|
205
|
-
|
|
262
|
+
|
|
206
263
|
&.styles_small__e7YDe {
|
|
207
|
-
letter-spacing: 0.3px;
|
|
208
264
|
line-height: 14px;
|
|
265
|
+
letter-spacing: 0.3px;
|
|
209
266
|
}
|
|
210
267
|
}
|
|
211
268
|
}
|
|
212
269
|
|
|
213
270
|
/* Button Text */
|
|
214
271
|
.styles_buttontext__UPumF {
|
|
272
|
+
margin: 0;
|
|
215
273
|
font-family: var(--font-family-sans);
|
|
216
|
-
font-weight: 400;
|
|
217
274
|
font-size: 17px;
|
|
218
275
|
line-height: 20px;
|
|
276
|
+
letter-spacing: -0.5px;
|
|
277
|
+
font-weight: 400;
|
|
278
|
+
|
|
279
|
+
@media (max-width: 699px) {
|
|
280
|
+
font-weight: 500;
|
|
281
|
+
line-height: 17px;
|
|
282
|
+
}
|
|
219
283
|
}
|
|
220
284
|
|
|
221
285
|
/* Caption Text */
|
|
222
286
|
.styles_captiontext__-TA6x {
|
|
223
|
-
|
|
287
|
+
margin: 0;
|
|
288
|
+
font-family: var(--font-family-sans);
|
|
224
289
|
font-weight: 400;
|
|
225
|
-
font-
|
|
290
|
+
font-size: 17px;
|
|
226
291
|
line-height: 24px;
|
|
292
|
+
letter-spacing: -0.5px;
|
|
227
293
|
|
|
228
|
-
@media (max-width:
|
|
294
|
+
@media (max-width: 699px) {
|
|
229
295
|
font-size: 14px;
|
|
230
|
-
line-height:
|
|
231
|
-
|
|
296
|
+
line-height: 20px;
|
|
297
|
+
letter-spacing: -0.2px;
|
|
298
|
+
}
|
|
232
299
|
}
|
|
233
300
|
|
|
234
301
|
/* Navigation Text */
|
|
235
302
|
.styles_navigationtext__qnnIo {
|
|
303
|
+
margin: 0;
|
|
236
304
|
font-family: var(--font-family-sans);
|
|
237
|
-
font-size:
|
|
238
|
-
|
|
239
|
-
text-transform: uppercase;
|
|
305
|
+
font-size: 19px;
|
|
306
|
+
line-height: 19px;
|
|
240
307
|
letter-spacing: 0.4px;
|
|
241
|
-
|
|
242
|
-
|
|
308
|
+
font-weight: 500;
|
|
309
|
+
|
|
310
|
+
@media (max-width: 699px) {
|
|
311
|
+
font-size: 17px;
|
|
312
|
+
line-height: 17px;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
|