@igo2/core 19.0.1 → 19.0.3
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/fesm2022/igo2-core-config.mjs +2 -2
- package/fesm2022/igo2-core-config.mjs.map +1 -1
- package/package.json +2 -3
- package/src/theming/themes/_theme.scss +1 -2
- package/theming/prebuilt-themes/blue-theme.css +0 -147
- package/theming/prebuilt-themes/bluedark-theme.css +0 -147
- package/theming/prebuilt-themes/bluedq-theme.css +0 -147
- package/theming/prebuilt-themes/teal-theme.css +0 -147
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"igo2-core-config.mjs","sources":["../../../packages/core/config/src/config-deprecated.ts","../../../packages/core/config/src/version.ts","../../../packages/core/config/src/config.service.ts","../../../packages/core/config/src/config.provider.ts","../../../packages/core/config/src/config.module.ts","../../../packages/core/config/src/igo2-core-config.ts"],"sourcesContent":["import { AlternateConfigOptions, DeprecatedOptions } from './config.interface';\n\nexport const CONFIG_DEPRECATED: Record<string, DeprecatedOptions> = {\n showMenuButton: {\n alternativeKey: 'menu.button.visible',\n mayBeRemoveIn: new Date('2024-06-06')\n },\n menuButtonReverseColor: {\n alternativeKey: 'menu.button.useThemeColor',\n mayBeRemoveIn: new Date('2024-06-06')\n },\n importWithStyle: {\n alternativeKey: 'importExport.importWithStyle',\n mayBeRemoveIn: new Date('2024-06-06')\n },\n hasGeolocateButton: {\n alternativeKey: 'geolocate.button.visible',\n mayBeRemoveIn: new Date('2024-06-06')\n }\n};\n\nexport const ALTERNATE_CONFIG_FROM_DEPRECATION = new Map<\n string,\n AlternateConfigOptions\n>(\n Object.entries(CONFIG_DEPRECATED)\n .filter(([_, options]) => options.alternativeKey)\n .map(([key, options]) => [\n options.alternativeKey,\n {\n deprecatedKey: key\n } satisfies AlternateConfigOptions\n ])\n);\n","export interface Version {\n app?: string;\n lib?: string;\n releaseDateApp?: number;\n releaseDate?: number;\n}\n\nexport const version: Version = {\n lib: '19.0.1',\n releaseDate: 1759518317677\n};\n","import { HttpBackend, HttpClient } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\n\nimport { ObjectUtils } from '@igo2/utils';\n\nimport { BehaviorSubject, throwError } from 'rxjs';\nimport { catchError } from 'rxjs/operators';\n\nimport {\n ALTERNATE_CONFIG_FROM_DEPRECATION,\n CONFIG_DEPRECATED\n} from './config-deprecated';\nimport { ConfigOptions } from './config.interface';\nimport { version } from './version';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ConfigService<T extends object = Record<string, any>> {\n private config: T | null;\n private httpClient: HttpClient;\n private configDeprecated = new Map(Object.entries(CONFIG_DEPRECATED));\n\n private _isLoaded$ = new BehaviorSubject<boolean>(null);\n isLoaded$ = this._isLoaded$.asObservable();\n\n constructor(handler: HttpBackend) {\n this.httpClient = new HttpClient(handler);\n }\n\n /**\n * Use to get the all config file (merge from environnement.ts and config.json)\n */\n public getConfigs(): any {\n Array.from(this.configDeprecated.keys()).map((deprecatedKey) => {\n const deprecatedValue = ObjectUtils.resolve(this.config, deprecatedKey);\n if (deprecatedValue !== undefined) {\n this.handleDeprecatedConfig(deprecatedKey);\n }\n });\n return this.config;\n }\n\n /**\n * Use to get the data found in config file\n */\n public getConfig<T = any>(key: string, defaultValue?: unknown): T {\n let value = ObjectUtils.resolve(this.config, key);\n\n const isDeprecated = this.configDeprecated.get(key);\n if (isDeprecated && value !== undefined) {\n this.handleDeprecatedConfig(key);\n } else if (value === undefined) {\n value = this.handleDeprecationPossibility(key);\n }\n\n return value ?? defaultValue;\n }\n\n private handleDeprecatedConfig(key: string): void {\n const options = this.configDeprecated.get(key);\n\n let message = `This config (${key}) is deprecated and will be removed shortly`;\n if (options.alternativeKey) {\n message += ` You should use this key (${options.alternativeKey}) as an alternate solution`;\n }\n\n const currentDate = new Date();\n currentDate >= options.mayBeRemoveIn\n ? console.error(message)\n : console.warn(message);\n }\n\n private handleDeprecationPossibility(key: string): any {\n const options = ALTERNATE_CONFIG_FROM_DEPRECATION.get(key);\n if (!options) {\n return;\n }\n\n return this.getConfig(options.deprecatedKey);\n }\n\n /**\n * This method loads \"[path]\" to get all config's variables\n */\n public load(options: ConfigOptions<T>): void | Promise<unknown> {\n const baseConfig = options.default;\n if (!options.path) {\n this.config = baseConfig;\n this._isLoaded$.next(true);\n return;\n }\n\n return new Promise((resolve) => {\n this.httpClient\n .get(options.path)\n .pipe(\n catchError((error: any): any => {\n console.log(`Configuration file ${options.path} could not be read`);\n this._isLoaded$.next(false);\n resolve(true);\n return throwError(error.error || 'Server error');\n })\n )\n .subscribe((configResponse: object) => {\n this.config = ObjectUtils.mergeDeep(\n ObjectUtils.mergeDeep({ version }, baseConfig),\n configResponse\n );\n this._isLoaded$.next(true);\n resolve(true);\n });\n });\n }\n}\n","import {\n EnvironmentProviders,\n InjectionToken,\n inject,\n makeEnvironmentProviders,\n provideAppInitializer\n} from '@angular/core';\n\nimport { ConfigOptions } from './config.interface';\nimport { ConfigService } from './config.service';\n\nexport const CONFIG_OPTIONS = new InjectionToken<ConfigOptions>(\n 'configOptions'\n);\n\nexport function provideConfig(options: ConfigOptions): EnvironmentProviders {\n return makeEnvironmentProviders([\n {\n provide: CONFIG_OPTIONS,\n useValue: options\n },\n provideAppInitializer(async () => {\n const configService = inject(ConfigService);\n const options = inject(CONFIG_OPTIONS);\n return configService.load(options);\n })\n ]);\n}\n","import { ModuleWithProviders, NgModule } from '@angular/core';\n\nimport { provideConfig } from './config.provider';\n\n/**\n * @deprecated import the provideConfig directly\n */\n@NgModule({\n imports: [],\n declarations: [],\n exports: []\n})\nexport class IgoConfigModule {\n static forRoot(): ModuleWithProviders<IgoConfigModule> {\n return {\n ngModule: IgoConfigModule,\n providers: [provideConfig({})]\n };\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"igo2-core-config.mjs","sources":["../../../packages/core/config/src/config-deprecated.ts","../../../packages/core/config/src/version.ts","../../../packages/core/config/src/config.service.ts","../../../packages/core/config/src/config.provider.ts","../../../packages/core/config/src/config.module.ts","../../../packages/core/config/src/igo2-core-config.ts"],"sourcesContent":["import { AlternateConfigOptions, DeprecatedOptions } from './config.interface';\n\nexport const CONFIG_DEPRECATED: Record<string, DeprecatedOptions> = {\n showMenuButton: {\n alternativeKey: 'menu.button.visible',\n mayBeRemoveIn: new Date('2024-06-06')\n },\n menuButtonReverseColor: {\n alternativeKey: 'menu.button.useThemeColor',\n mayBeRemoveIn: new Date('2024-06-06')\n },\n importWithStyle: {\n alternativeKey: 'importExport.importWithStyle',\n mayBeRemoveIn: new Date('2024-06-06')\n },\n hasGeolocateButton: {\n alternativeKey: 'geolocate.button.visible',\n mayBeRemoveIn: new Date('2024-06-06')\n }\n};\n\nexport const ALTERNATE_CONFIG_FROM_DEPRECATION = new Map<\n string,\n AlternateConfigOptions\n>(\n Object.entries(CONFIG_DEPRECATED)\n .filter(([_, options]) => options.alternativeKey)\n .map(([key, options]) => [\n options.alternativeKey,\n {\n deprecatedKey: key\n } satisfies AlternateConfigOptions\n ])\n);\n","export interface Version {\n app?: string;\n lib?: string;\n releaseDateApp?: number;\n releaseDate?: number;\n}\n\nexport const version: Version = {\n lib: '19.0.3',\n releaseDate: 1759775772174\n};\n","import { HttpBackend, HttpClient } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\n\nimport { ObjectUtils } from '@igo2/utils';\n\nimport { BehaviorSubject, throwError } from 'rxjs';\nimport { catchError } from 'rxjs/operators';\n\nimport {\n ALTERNATE_CONFIG_FROM_DEPRECATION,\n CONFIG_DEPRECATED\n} from './config-deprecated';\nimport { ConfigOptions } from './config.interface';\nimport { version } from './version';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ConfigService<T extends object = Record<string, any>> {\n private config: T | null;\n private httpClient: HttpClient;\n private configDeprecated = new Map(Object.entries(CONFIG_DEPRECATED));\n\n private _isLoaded$ = new BehaviorSubject<boolean>(null);\n isLoaded$ = this._isLoaded$.asObservable();\n\n constructor(handler: HttpBackend) {\n this.httpClient = new HttpClient(handler);\n }\n\n /**\n * Use to get the all config file (merge from environnement.ts and config.json)\n */\n public getConfigs(): any {\n Array.from(this.configDeprecated.keys()).map((deprecatedKey) => {\n const deprecatedValue = ObjectUtils.resolve(this.config, deprecatedKey);\n if (deprecatedValue !== undefined) {\n this.handleDeprecatedConfig(deprecatedKey);\n }\n });\n return this.config;\n }\n\n /**\n * Use to get the data found in config file\n */\n public getConfig<T = any>(key: string, defaultValue?: unknown): T {\n let value = ObjectUtils.resolve(this.config, key);\n\n const isDeprecated = this.configDeprecated.get(key);\n if (isDeprecated && value !== undefined) {\n this.handleDeprecatedConfig(key);\n } else if (value === undefined) {\n value = this.handleDeprecationPossibility(key);\n }\n\n return value ?? defaultValue;\n }\n\n private handleDeprecatedConfig(key: string): void {\n const options = this.configDeprecated.get(key);\n\n let message = `This config (${key}) is deprecated and will be removed shortly`;\n if (options.alternativeKey) {\n message += ` You should use this key (${options.alternativeKey}) as an alternate solution`;\n }\n\n const currentDate = new Date();\n currentDate >= options.mayBeRemoveIn\n ? console.error(message)\n : console.warn(message);\n }\n\n private handleDeprecationPossibility(key: string): any {\n const options = ALTERNATE_CONFIG_FROM_DEPRECATION.get(key);\n if (!options) {\n return;\n }\n\n return this.getConfig(options.deprecatedKey);\n }\n\n /**\n * This method loads \"[path]\" to get all config's variables\n */\n public load(options: ConfigOptions<T>): void | Promise<unknown> {\n const baseConfig = options.default;\n if (!options.path) {\n this.config = baseConfig;\n this._isLoaded$.next(true);\n return;\n }\n\n return new Promise((resolve) => {\n this.httpClient\n .get(options.path)\n .pipe(\n catchError((error: any): any => {\n console.log(`Configuration file ${options.path} could not be read`);\n this._isLoaded$.next(false);\n resolve(true);\n return throwError(error.error || 'Server error');\n })\n )\n .subscribe((configResponse: object) => {\n this.config = ObjectUtils.mergeDeep(\n ObjectUtils.mergeDeep({ version }, baseConfig),\n configResponse\n );\n this._isLoaded$.next(true);\n resolve(true);\n });\n });\n }\n}\n","import {\n EnvironmentProviders,\n InjectionToken,\n inject,\n makeEnvironmentProviders,\n provideAppInitializer\n} from '@angular/core';\n\nimport { ConfigOptions } from './config.interface';\nimport { ConfigService } from './config.service';\n\nexport const CONFIG_OPTIONS = new InjectionToken<ConfigOptions>(\n 'configOptions'\n);\n\nexport function provideConfig(options: ConfigOptions): EnvironmentProviders {\n return makeEnvironmentProviders([\n {\n provide: CONFIG_OPTIONS,\n useValue: options\n },\n provideAppInitializer(async () => {\n const configService = inject(ConfigService);\n const options = inject(CONFIG_OPTIONS);\n return configService.load(options);\n })\n ]);\n}\n","import { ModuleWithProviders, NgModule } from '@angular/core';\n\nimport { provideConfig } from './config.provider';\n\n/**\n * @deprecated import the provideConfig directly\n */\n@NgModule({\n imports: [],\n declarations: [],\n exports: []\n})\nexport class IgoConfigModule {\n static forRoot(): ModuleWithProviders<IgoConfigModule> {\n return {\n ngModule: IgoConfigModule,\n providers: [provideConfig({})]\n };\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/core",
|
|
3
|
-
"version": "19.0.
|
|
3
|
+
"version": "19.0.3",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -113,8 +113,7 @@
|
|
|
113
113
|
"@angular/forms": "^19.0.0",
|
|
114
114
|
"@angular/platform-browser": "^19.0.0",
|
|
115
115
|
"@angular/router": "^19.0.0",
|
|
116
|
-
"@igo2/
|
|
117
|
-
"@igo2/utils": "^19.0.1",
|
|
116
|
+
"@igo2/utils": "^19.0.3",
|
|
118
117
|
"ngx-toastr": "^19.0.0",
|
|
119
118
|
"@ngx-translate/core": "^17.0.0",
|
|
120
119
|
"@ngx-translate/http-loader": "^17.0.0",
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use '@angular/material' as mat;
|
|
2
2
|
@use '@igo2/sdg-core' as sdg;
|
|
3
|
+
|
|
3
4
|
@use '../all-theme';
|
|
4
5
|
@use './overrides';
|
|
5
6
|
|
|
@@ -17,8 +18,6 @@
|
|
|
17
18
|
@include overrides.overrides();
|
|
18
19
|
|
|
19
20
|
@include all-theme.all-component-themes($theme);
|
|
20
|
-
|
|
21
|
-
@include sdg.typo-set-base-styles();
|
|
22
21
|
}
|
|
23
22
|
|
|
24
23
|
@mixin customCss() {
|
|
@@ -1073,151 +1073,4 @@ html .blue-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-lead
|
|
|
1073
1073
|
}
|
|
1074
1074
|
html .blue-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, html .blue-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, html .blue-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
|
|
1075
1075
|
height: 64px;
|
|
1076
|
-
}
|
|
1077
|
-
html .blue-theme :root {
|
|
1078
|
-
font-size: var(--sdg-font-size-root-percent);
|
|
1079
|
-
}
|
|
1080
|
-
html .blue-theme body {
|
|
1081
|
-
color: var(--sdg-color-text);
|
|
1082
|
-
font-family: var(--sdg-font-family-text);
|
|
1083
|
-
font-size: var(--sdg-font-size-md);
|
|
1084
|
-
}
|
|
1085
|
-
html .blue-theme a {
|
|
1086
|
-
word-break: break-word;
|
|
1087
|
-
overflow-wrap: break-word;
|
|
1088
|
-
cursor: pointer;
|
|
1089
|
-
color: var(--sdg-color-blue-piv);
|
|
1090
|
-
text-decoration: underline;
|
|
1091
|
-
background-color: transparent;
|
|
1092
|
-
width: fit-content;
|
|
1093
|
-
max-inline-size: var(--sdg-max-content-width);
|
|
1094
|
-
}
|
|
1095
|
-
html .blue-theme a:hover {
|
|
1096
|
-
text-decoration: none;
|
|
1097
|
-
}
|
|
1098
|
-
html .blue-theme button {
|
|
1099
|
-
font-family: var(--sdg-font-family-text);
|
|
1100
|
-
}
|
|
1101
|
-
html .blue-theme p,
|
|
1102
|
-
html .blue-theme ul,
|
|
1103
|
-
html .blue-theme ol,
|
|
1104
|
-
html .blue-theme u,
|
|
1105
|
-
html .blue-theme .text {
|
|
1106
|
-
color: var(--sdg-color-text);
|
|
1107
|
-
font-size: var(--sdg-font-size-md);
|
|
1108
|
-
line-height: 24px;
|
|
1109
|
-
max-inline-size: var(--sdg-max-content-width);
|
|
1110
|
-
}
|
|
1111
|
-
html .blue-theme ul,
|
|
1112
|
-
html .blue-theme ol {
|
|
1113
|
-
margin-top: 0;
|
|
1114
|
-
margin-bottom: 24px;
|
|
1115
|
-
padding-left: 16px;
|
|
1116
|
-
}
|
|
1117
|
-
html .blue-theme p {
|
|
1118
|
-
margin-bottom: 24px !important;
|
|
1119
|
-
}
|
|
1120
|
-
html .blue-theme li {
|
|
1121
|
-
margin-top: 16px;
|
|
1122
|
-
margin-bottom: 16px;
|
|
1123
|
-
}
|
|
1124
|
-
html .blue-theme strong {
|
|
1125
|
-
font-weight: 600;
|
|
1126
|
-
}
|
|
1127
|
-
html .blue-theme h1,
|
|
1128
|
-
html .blue-theme h2,
|
|
1129
|
-
html .blue-theme h3,
|
|
1130
|
-
html .blue-theme h4,
|
|
1131
|
-
html .blue-theme h5,
|
|
1132
|
-
html .blue-theme h6,
|
|
1133
|
-
html .blue-theme .h1,
|
|
1134
|
-
html .blue-theme .h2,
|
|
1135
|
-
html .blue-theme .h3,
|
|
1136
|
-
html .blue-theme .h4,
|
|
1137
|
-
html .blue-theme .h5,
|
|
1138
|
-
html .blue-theme .h6 {
|
|
1139
|
-
font-family: var(--sdg-font-family-title) !important;
|
|
1140
|
-
font-weight: bold !important;
|
|
1141
|
-
color: var(--sdg-color-text);
|
|
1142
|
-
max-inline-size: var(--sdg-max-content-width);
|
|
1143
|
-
}
|
|
1144
|
-
html .blue-theme h1,
|
|
1145
|
-
html .blue-theme .h1 {
|
|
1146
|
-
font-size: var(--sdg-font-size-h1);
|
|
1147
|
-
line-height: var(--sdg-line-height-h1);
|
|
1148
|
-
margin-top: var(--sdg-title-margin-h1-mt);
|
|
1149
|
-
margin-bottom: var(--sdg-title-margin-h1-mb);
|
|
1150
|
-
}
|
|
1151
|
-
html .blue-theme h1:after,
|
|
1152
|
-
html .blue-theme .h1:after {
|
|
1153
|
-
content: "";
|
|
1154
|
-
display: block;
|
|
1155
|
-
margin: 0;
|
|
1156
|
-
width: 48px;
|
|
1157
|
-
padding-top: 4px;
|
|
1158
|
-
border-bottom: 4px solid var(--sdg-color-pink-normal);
|
|
1159
|
-
}
|
|
1160
|
-
@media (max-width: 575px) {
|
|
1161
|
-
html .blue-theme h1,
|
|
1162
|
-
html .blue-theme .h1 {
|
|
1163
|
-
font-size: var(--sdg-mobile-font-size-h1);
|
|
1164
|
-
line-height: var(--sdg-mobile-line-height-h1);
|
|
1165
|
-
margin-top: var(--sdg-spacer-lg) !important;
|
|
1166
|
-
margin-bottom: var(--sdg-spacer-sm) !important;
|
|
1167
|
-
}
|
|
1168
|
-
}
|
|
1169
|
-
html .blue-theme h2,
|
|
1170
|
-
html .blue-theme .h2 {
|
|
1171
|
-
font-size: var(--sdg-font-size-h2);
|
|
1172
|
-
line-height: var(--sdg-line-height-h2);
|
|
1173
|
-
margin-top: var(--sdg-title-margin-h2-mt);
|
|
1174
|
-
margin-bottom: var(--sdg-title-margin-h2-mb);
|
|
1175
|
-
}
|
|
1176
|
-
@media (max-width: 575px) {
|
|
1177
|
-
html .blue-theme h2,
|
|
1178
|
-
html .blue-theme .h2 {
|
|
1179
|
-
font-size: var(--sdg-mobile-font-size-h2);
|
|
1180
|
-
line-height: var(--sdg-mobile-line-height-h2);
|
|
1181
|
-
}
|
|
1182
|
-
}
|
|
1183
|
-
html .blue-theme h3,
|
|
1184
|
-
html .blue-theme .h3 {
|
|
1185
|
-
font-size: var(--sdg-font-size-h3);
|
|
1186
|
-
line-height: var(--sdg-line-height-h3);
|
|
1187
|
-
margin-top: var(--sdg-title-margin-h3-mt);
|
|
1188
|
-
margin-bottom: var(--sdg-title-margin-h3-mb);
|
|
1189
|
-
}
|
|
1190
|
-
@media (max-width: 575px) {
|
|
1191
|
-
html .blue-theme h3,
|
|
1192
|
-
html .blue-theme .h3 {
|
|
1193
|
-
font-size: var(--sdg-mobile-font-size-h3);
|
|
1194
|
-
}
|
|
1195
|
-
}
|
|
1196
|
-
html .blue-theme h4,
|
|
1197
|
-
html .blue-theme .h4 {
|
|
1198
|
-
font-size: var(--sdg-font-size-h4);
|
|
1199
|
-
line-height: var(--sdg-line-height-h4);
|
|
1200
|
-
margin-top: var(--sdg-title-margin-h4-mt);
|
|
1201
|
-
margin-bottom: var(--sdg-title-margin-h4-mb);
|
|
1202
|
-
}
|
|
1203
|
-
html .blue-theme h5,
|
|
1204
|
-
html .blue-theme .h5 {
|
|
1205
|
-
font-size: var(--sdg-font-size-h5);
|
|
1206
|
-
line-height: var(--sdg-line-height-h5);
|
|
1207
|
-
margin-top: var(--sdg-title-margin-h5-mt);
|
|
1208
|
-
margin-bottom: var(--sdg-title-margin-h5-mb);
|
|
1209
|
-
}
|
|
1210
|
-
html .blue-theme h6,
|
|
1211
|
-
html .blue-theme .h6 {
|
|
1212
|
-
font-size: var(--sdg-font-size-h6);
|
|
1213
|
-
line-height: var(--sdg-line-height-h6);
|
|
1214
|
-
margin-top: var(--sdg-title-margin-h6-mt);
|
|
1215
|
-
margin-bottom: var(--sdg-title-margin-h6-mb);
|
|
1216
|
-
}
|
|
1217
|
-
html .blue-theme .accroche {
|
|
1218
|
-
font-size: var(--sdg-font-size-lg);
|
|
1219
|
-
line-height: var(--sdg-line-height-lg);
|
|
1220
|
-
font-weight: 600;
|
|
1221
|
-
max-width: var(--sdg-max-content-width);
|
|
1222
|
-
padding-bottom: 24px;
|
|
1223
1076
|
}
|
|
@@ -1073,151 +1073,4 @@ html .bluedark-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-
|
|
|
1073
1073
|
}
|
|
1074
1074
|
html .bluedark-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, html .bluedark-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, html .bluedark-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
|
|
1075
1075
|
height: 64px;
|
|
1076
|
-
}
|
|
1077
|
-
html .bluedark-theme :root {
|
|
1078
|
-
font-size: var(--sdg-font-size-root-percent);
|
|
1079
|
-
}
|
|
1080
|
-
html .bluedark-theme body {
|
|
1081
|
-
color: var(--sdg-color-text);
|
|
1082
|
-
font-family: var(--sdg-font-family-text);
|
|
1083
|
-
font-size: var(--sdg-font-size-md);
|
|
1084
|
-
}
|
|
1085
|
-
html .bluedark-theme a {
|
|
1086
|
-
word-break: break-word;
|
|
1087
|
-
overflow-wrap: break-word;
|
|
1088
|
-
cursor: pointer;
|
|
1089
|
-
color: var(--sdg-color-blue-piv);
|
|
1090
|
-
text-decoration: underline;
|
|
1091
|
-
background-color: transparent;
|
|
1092
|
-
width: fit-content;
|
|
1093
|
-
max-inline-size: var(--sdg-max-content-width);
|
|
1094
|
-
}
|
|
1095
|
-
html .bluedark-theme a:hover {
|
|
1096
|
-
text-decoration: none;
|
|
1097
|
-
}
|
|
1098
|
-
html .bluedark-theme button {
|
|
1099
|
-
font-family: var(--sdg-font-family-text);
|
|
1100
|
-
}
|
|
1101
|
-
html .bluedark-theme p,
|
|
1102
|
-
html .bluedark-theme ul,
|
|
1103
|
-
html .bluedark-theme ol,
|
|
1104
|
-
html .bluedark-theme u,
|
|
1105
|
-
html .bluedark-theme .text {
|
|
1106
|
-
color: var(--sdg-color-text);
|
|
1107
|
-
font-size: var(--sdg-font-size-md);
|
|
1108
|
-
line-height: 24px;
|
|
1109
|
-
max-inline-size: var(--sdg-max-content-width);
|
|
1110
|
-
}
|
|
1111
|
-
html .bluedark-theme ul,
|
|
1112
|
-
html .bluedark-theme ol {
|
|
1113
|
-
margin-top: 0;
|
|
1114
|
-
margin-bottom: 24px;
|
|
1115
|
-
padding-left: 16px;
|
|
1116
|
-
}
|
|
1117
|
-
html .bluedark-theme p {
|
|
1118
|
-
margin-bottom: 24px !important;
|
|
1119
|
-
}
|
|
1120
|
-
html .bluedark-theme li {
|
|
1121
|
-
margin-top: 16px;
|
|
1122
|
-
margin-bottom: 16px;
|
|
1123
|
-
}
|
|
1124
|
-
html .bluedark-theme strong {
|
|
1125
|
-
font-weight: 600;
|
|
1126
|
-
}
|
|
1127
|
-
html .bluedark-theme h1,
|
|
1128
|
-
html .bluedark-theme h2,
|
|
1129
|
-
html .bluedark-theme h3,
|
|
1130
|
-
html .bluedark-theme h4,
|
|
1131
|
-
html .bluedark-theme h5,
|
|
1132
|
-
html .bluedark-theme h6,
|
|
1133
|
-
html .bluedark-theme .h1,
|
|
1134
|
-
html .bluedark-theme .h2,
|
|
1135
|
-
html .bluedark-theme .h3,
|
|
1136
|
-
html .bluedark-theme .h4,
|
|
1137
|
-
html .bluedark-theme .h5,
|
|
1138
|
-
html .bluedark-theme .h6 {
|
|
1139
|
-
font-family: var(--sdg-font-family-title) !important;
|
|
1140
|
-
font-weight: bold !important;
|
|
1141
|
-
color: var(--sdg-color-text);
|
|
1142
|
-
max-inline-size: var(--sdg-max-content-width);
|
|
1143
|
-
}
|
|
1144
|
-
html .bluedark-theme h1,
|
|
1145
|
-
html .bluedark-theme .h1 {
|
|
1146
|
-
font-size: var(--sdg-font-size-h1);
|
|
1147
|
-
line-height: var(--sdg-line-height-h1);
|
|
1148
|
-
margin-top: var(--sdg-title-margin-h1-mt);
|
|
1149
|
-
margin-bottom: var(--sdg-title-margin-h1-mb);
|
|
1150
|
-
}
|
|
1151
|
-
html .bluedark-theme h1:after,
|
|
1152
|
-
html .bluedark-theme .h1:after {
|
|
1153
|
-
content: "";
|
|
1154
|
-
display: block;
|
|
1155
|
-
margin: 0;
|
|
1156
|
-
width: 48px;
|
|
1157
|
-
padding-top: 4px;
|
|
1158
|
-
border-bottom: 4px solid var(--sdg-color-pink-normal);
|
|
1159
|
-
}
|
|
1160
|
-
@media (max-width: 575px) {
|
|
1161
|
-
html .bluedark-theme h1,
|
|
1162
|
-
html .bluedark-theme .h1 {
|
|
1163
|
-
font-size: var(--sdg-mobile-font-size-h1);
|
|
1164
|
-
line-height: var(--sdg-mobile-line-height-h1);
|
|
1165
|
-
margin-top: var(--sdg-spacer-lg) !important;
|
|
1166
|
-
margin-bottom: var(--sdg-spacer-sm) !important;
|
|
1167
|
-
}
|
|
1168
|
-
}
|
|
1169
|
-
html .bluedark-theme h2,
|
|
1170
|
-
html .bluedark-theme .h2 {
|
|
1171
|
-
font-size: var(--sdg-font-size-h2);
|
|
1172
|
-
line-height: var(--sdg-line-height-h2);
|
|
1173
|
-
margin-top: var(--sdg-title-margin-h2-mt);
|
|
1174
|
-
margin-bottom: var(--sdg-title-margin-h2-mb);
|
|
1175
|
-
}
|
|
1176
|
-
@media (max-width: 575px) {
|
|
1177
|
-
html .bluedark-theme h2,
|
|
1178
|
-
html .bluedark-theme .h2 {
|
|
1179
|
-
font-size: var(--sdg-mobile-font-size-h2);
|
|
1180
|
-
line-height: var(--sdg-mobile-line-height-h2);
|
|
1181
|
-
}
|
|
1182
|
-
}
|
|
1183
|
-
html .bluedark-theme h3,
|
|
1184
|
-
html .bluedark-theme .h3 {
|
|
1185
|
-
font-size: var(--sdg-font-size-h3);
|
|
1186
|
-
line-height: var(--sdg-line-height-h3);
|
|
1187
|
-
margin-top: var(--sdg-title-margin-h3-mt);
|
|
1188
|
-
margin-bottom: var(--sdg-title-margin-h3-mb);
|
|
1189
|
-
}
|
|
1190
|
-
@media (max-width: 575px) {
|
|
1191
|
-
html .bluedark-theme h3,
|
|
1192
|
-
html .bluedark-theme .h3 {
|
|
1193
|
-
font-size: var(--sdg-mobile-font-size-h3);
|
|
1194
|
-
}
|
|
1195
|
-
}
|
|
1196
|
-
html .bluedark-theme h4,
|
|
1197
|
-
html .bluedark-theme .h4 {
|
|
1198
|
-
font-size: var(--sdg-font-size-h4);
|
|
1199
|
-
line-height: var(--sdg-line-height-h4);
|
|
1200
|
-
margin-top: var(--sdg-title-margin-h4-mt);
|
|
1201
|
-
margin-bottom: var(--sdg-title-margin-h4-mb);
|
|
1202
|
-
}
|
|
1203
|
-
html .bluedark-theme h5,
|
|
1204
|
-
html .bluedark-theme .h5 {
|
|
1205
|
-
font-size: var(--sdg-font-size-h5);
|
|
1206
|
-
line-height: var(--sdg-line-height-h5);
|
|
1207
|
-
margin-top: var(--sdg-title-margin-h5-mt);
|
|
1208
|
-
margin-bottom: var(--sdg-title-margin-h5-mb);
|
|
1209
|
-
}
|
|
1210
|
-
html .bluedark-theme h6,
|
|
1211
|
-
html .bluedark-theme .h6 {
|
|
1212
|
-
font-size: var(--sdg-font-size-h6);
|
|
1213
|
-
line-height: var(--sdg-line-height-h6);
|
|
1214
|
-
margin-top: var(--sdg-title-margin-h6-mt);
|
|
1215
|
-
margin-bottom: var(--sdg-title-margin-h6-mb);
|
|
1216
|
-
}
|
|
1217
|
-
html .bluedark-theme .accroche {
|
|
1218
|
-
font-size: var(--sdg-font-size-lg);
|
|
1219
|
-
line-height: var(--sdg-line-height-lg);
|
|
1220
|
-
font-weight: 600;
|
|
1221
|
-
max-width: var(--sdg-max-content-width);
|
|
1222
|
-
padding-bottom: 24px;
|
|
1223
1076
|
}
|
|
@@ -1073,151 +1073,4 @@ html .bluedq-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-le
|
|
|
1073
1073
|
}
|
|
1074
1074
|
html .bluedq-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, html .bluedq-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, html .bluedq-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
|
|
1075
1075
|
height: 64px;
|
|
1076
|
-
}
|
|
1077
|
-
html .bluedq-theme :root {
|
|
1078
|
-
font-size: var(--sdg-font-size-root-percent);
|
|
1079
|
-
}
|
|
1080
|
-
html .bluedq-theme body {
|
|
1081
|
-
color: var(--sdg-color-text);
|
|
1082
|
-
font-family: var(--sdg-font-family-text);
|
|
1083
|
-
font-size: var(--sdg-font-size-md);
|
|
1084
|
-
}
|
|
1085
|
-
html .bluedq-theme a {
|
|
1086
|
-
word-break: break-word;
|
|
1087
|
-
overflow-wrap: break-word;
|
|
1088
|
-
cursor: pointer;
|
|
1089
|
-
color: var(--sdg-color-blue-piv);
|
|
1090
|
-
text-decoration: underline;
|
|
1091
|
-
background-color: transparent;
|
|
1092
|
-
width: fit-content;
|
|
1093
|
-
max-inline-size: var(--sdg-max-content-width);
|
|
1094
|
-
}
|
|
1095
|
-
html .bluedq-theme a:hover {
|
|
1096
|
-
text-decoration: none;
|
|
1097
|
-
}
|
|
1098
|
-
html .bluedq-theme button {
|
|
1099
|
-
font-family: var(--sdg-font-family-text);
|
|
1100
|
-
}
|
|
1101
|
-
html .bluedq-theme p,
|
|
1102
|
-
html .bluedq-theme ul,
|
|
1103
|
-
html .bluedq-theme ol,
|
|
1104
|
-
html .bluedq-theme u,
|
|
1105
|
-
html .bluedq-theme .text {
|
|
1106
|
-
color: var(--sdg-color-text);
|
|
1107
|
-
font-size: var(--sdg-font-size-md);
|
|
1108
|
-
line-height: 24px;
|
|
1109
|
-
max-inline-size: var(--sdg-max-content-width);
|
|
1110
|
-
}
|
|
1111
|
-
html .bluedq-theme ul,
|
|
1112
|
-
html .bluedq-theme ol {
|
|
1113
|
-
margin-top: 0;
|
|
1114
|
-
margin-bottom: 24px;
|
|
1115
|
-
padding-left: 16px;
|
|
1116
|
-
}
|
|
1117
|
-
html .bluedq-theme p {
|
|
1118
|
-
margin-bottom: 24px !important;
|
|
1119
|
-
}
|
|
1120
|
-
html .bluedq-theme li {
|
|
1121
|
-
margin-top: 16px;
|
|
1122
|
-
margin-bottom: 16px;
|
|
1123
|
-
}
|
|
1124
|
-
html .bluedq-theme strong {
|
|
1125
|
-
font-weight: 600;
|
|
1126
|
-
}
|
|
1127
|
-
html .bluedq-theme h1,
|
|
1128
|
-
html .bluedq-theme h2,
|
|
1129
|
-
html .bluedq-theme h3,
|
|
1130
|
-
html .bluedq-theme h4,
|
|
1131
|
-
html .bluedq-theme h5,
|
|
1132
|
-
html .bluedq-theme h6,
|
|
1133
|
-
html .bluedq-theme .h1,
|
|
1134
|
-
html .bluedq-theme .h2,
|
|
1135
|
-
html .bluedq-theme .h3,
|
|
1136
|
-
html .bluedq-theme .h4,
|
|
1137
|
-
html .bluedq-theme .h5,
|
|
1138
|
-
html .bluedq-theme .h6 {
|
|
1139
|
-
font-family: var(--sdg-font-family-title) !important;
|
|
1140
|
-
font-weight: bold !important;
|
|
1141
|
-
color: var(--sdg-color-text);
|
|
1142
|
-
max-inline-size: var(--sdg-max-content-width);
|
|
1143
|
-
}
|
|
1144
|
-
html .bluedq-theme h1,
|
|
1145
|
-
html .bluedq-theme .h1 {
|
|
1146
|
-
font-size: var(--sdg-font-size-h1);
|
|
1147
|
-
line-height: var(--sdg-line-height-h1);
|
|
1148
|
-
margin-top: var(--sdg-title-margin-h1-mt);
|
|
1149
|
-
margin-bottom: var(--sdg-title-margin-h1-mb);
|
|
1150
|
-
}
|
|
1151
|
-
html .bluedq-theme h1:after,
|
|
1152
|
-
html .bluedq-theme .h1:after {
|
|
1153
|
-
content: "";
|
|
1154
|
-
display: block;
|
|
1155
|
-
margin: 0;
|
|
1156
|
-
width: 48px;
|
|
1157
|
-
padding-top: 4px;
|
|
1158
|
-
border-bottom: 4px solid var(--sdg-color-pink-normal);
|
|
1159
|
-
}
|
|
1160
|
-
@media (max-width: 575px) {
|
|
1161
|
-
html .bluedq-theme h1,
|
|
1162
|
-
html .bluedq-theme .h1 {
|
|
1163
|
-
font-size: var(--sdg-mobile-font-size-h1);
|
|
1164
|
-
line-height: var(--sdg-mobile-line-height-h1);
|
|
1165
|
-
margin-top: var(--sdg-spacer-lg) !important;
|
|
1166
|
-
margin-bottom: var(--sdg-spacer-sm) !important;
|
|
1167
|
-
}
|
|
1168
|
-
}
|
|
1169
|
-
html .bluedq-theme h2,
|
|
1170
|
-
html .bluedq-theme .h2 {
|
|
1171
|
-
font-size: var(--sdg-font-size-h2);
|
|
1172
|
-
line-height: var(--sdg-line-height-h2);
|
|
1173
|
-
margin-top: var(--sdg-title-margin-h2-mt);
|
|
1174
|
-
margin-bottom: var(--sdg-title-margin-h2-mb);
|
|
1175
|
-
}
|
|
1176
|
-
@media (max-width: 575px) {
|
|
1177
|
-
html .bluedq-theme h2,
|
|
1178
|
-
html .bluedq-theme .h2 {
|
|
1179
|
-
font-size: var(--sdg-mobile-font-size-h2);
|
|
1180
|
-
line-height: var(--sdg-mobile-line-height-h2);
|
|
1181
|
-
}
|
|
1182
|
-
}
|
|
1183
|
-
html .bluedq-theme h3,
|
|
1184
|
-
html .bluedq-theme .h3 {
|
|
1185
|
-
font-size: var(--sdg-font-size-h3);
|
|
1186
|
-
line-height: var(--sdg-line-height-h3);
|
|
1187
|
-
margin-top: var(--sdg-title-margin-h3-mt);
|
|
1188
|
-
margin-bottom: var(--sdg-title-margin-h3-mb);
|
|
1189
|
-
}
|
|
1190
|
-
@media (max-width: 575px) {
|
|
1191
|
-
html .bluedq-theme h3,
|
|
1192
|
-
html .bluedq-theme .h3 {
|
|
1193
|
-
font-size: var(--sdg-mobile-font-size-h3);
|
|
1194
|
-
}
|
|
1195
|
-
}
|
|
1196
|
-
html .bluedq-theme h4,
|
|
1197
|
-
html .bluedq-theme .h4 {
|
|
1198
|
-
font-size: var(--sdg-font-size-h4);
|
|
1199
|
-
line-height: var(--sdg-line-height-h4);
|
|
1200
|
-
margin-top: var(--sdg-title-margin-h4-mt);
|
|
1201
|
-
margin-bottom: var(--sdg-title-margin-h4-mb);
|
|
1202
|
-
}
|
|
1203
|
-
html .bluedq-theme h5,
|
|
1204
|
-
html .bluedq-theme .h5 {
|
|
1205
|
-
font-size: var(--sdg-font-size-h5);
|
|
1206
|
-
line-height: var(--sdg-line-height-h5);
|
|
1207
|
-
margin-top: var(--sdg-title-margin-h5-mt);
|
|
1208
|
-
margin-bottom: var(--sdg-title-margin-h5-mb);
|
|
1209
|
-
}
|
|
1210
|
-
html .bluedq-theme h6,
|
|
1211
|
-
html .bluedq-theme .h6 {
|
|
1212
|
-
font-size: var(--sdg-font-size-h6);
|
|
1213
|
-
line-height: var(--sdg-line-height-h6);
|
|
1214
|
-
margin-top: var(--sdg-title-margin-h6-mt);
|
|
1215
|
-
margin-bottom: var(--sdg-title-margin-h6-mb);
|
|
1216
|
-
}
|
|
1217
|
-
html .bluedq-theme .accroche {
|
|
1218
|
-
font-size: var(--sdg-font-size-lg);
|
|
1219
|
-
line-height: var(--sdg-line-height-lg);
|
|
1220
|
-
font-weight: 600;
|
|
1221
|
-
max-width: var(--sdg-max-content-width);
|
|
1222
|
-
padding-bottom: 24px;
|
|
1223
1076
|
}
|
|
@@ -1073,151 +1073,4 @@ html .teal-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-lead
|
|
|
1073
1073
|
}
|
|
1074
1074
|
html .teal-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, html .teal-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, html .teal-theme igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
|
|
1075
1075
|
height: 64px;
|
|
1076
|
-
}
|
|
1077
|
-
html .teal-theme :root {
|
|
1078
|
-
font-size: var(--sdg-font-size-root-percent);
|
|
1079
|
-
}
|
|
1080
|
-
html .teal-theme body {
|
|
1081
|
-
color: var(--sdg-color-text);
|
|
1082
|
-
font-family: var(--sdg-font-family-text);
|
|
1083
|
-
font-size: var(--sdg-font-size-md);
|
|
1084
|
-
}
|
|
1085
|
-
html .teal-theme a {
|
|
1086
|
-
word-break: break-word;
|
|
1087
|
-
overflow-wrap: break-word;
|
|
1088
|
-
cursor: pointer;
|
|
1089
|
-
color: var(--sdg-color-blue-piv);
|
|
1090
|
-
text-decoration: underline;
|
|
1091
|
-
background-color: transparent;
|
|
1092
|
-
width: fit-content;
|
|
1093
|
-
max-inline-size: var(--sdg-max-content-width);
|
|
1094
|
-
}
|
|
1095
|
-
html .teal-theme a:hover {
|
|
1096
|
-
text-decoration: none;
|
|
1097
|
-
}
|
|
1098
|
-
html .teal-theme button {
|
|
1099
|
-
font-family: var(--sdg-font-family-text);
|
|
1100
|
-
}
|
|
1101
|
-
html .teal-theme p,
|
|
1102
|
-
html .teal-theme ul,
|
|
1103
|
-
html .teal-theme ol,
|
|
1104
|
-
html .teal-theme u,
|
|
1105
|
-
html .teal-theme .text {
|
|
1106
|
-
color: var(--sdg-color-text);
|
|
1107
|
-
font-size: var(--sdg-font-size-md);
|
|
1108
|
-
line-height: 24px;
|
|
1109
|
-
max-inline-size: var(--sdg-max-content-width);
|
|
1110
|
-
}
|
|
1111
|
-
html .teal-theme ul,
|
|
1112
|
-
html .teal-theme ol {
|
|
1113
|
-
margin-top: 0;
|
|
1114
|
-
margin-bottom: 24px;
|
|
1115
|
-
padding-left: 16px;
|
|
1116
|
-
}
|
|
1117
|
-
html .teal-theme p {
|
|
1118
|
-
margin-bottom: 24px !important;
|
|
1119
|
-
}
|
|
1120
|
-
html .teal-theme li {
|
|
1121
|
-
margin-top: 16px;
|
|
1122
|
-
margin-bottom: 16px;
|
|
1123
|
-
}
|
|
1124
|
-
html .teal-theme strong {
|
|
1125
|
-
font-weight: 600;
|
|
1126
|
-
}
|
|
1127
|
-
html .teal-theme h1,
|
|
1128
|
-
html .teal-theme h2,
|
|
1129
|
-
html .teal-theme h3,
|
|
1130
|
-
html .teal-theme h4,
|
|
1131
|
-
html .teal-theme h5,
|
|
1132
|
-
html .teal-theme h6,
|
|
1133
|
-
html .teal-theme .h1,
|
|
1134
|
-
html .teal-theme .h2,
|
|
1135
|
-
html .teal-theme .h3,
|
|
1136
|
-
html .teal-theme .h4,
|
|
1137
|
-
html .teal-theme .h5,
|
|
1138
|
-
html .teal-theme .h6 {
|
|
1139
|
-
font-family: var(--sdg-font-family-title) !important;
|
|
1140
|
-
font-weight: bold !important;
|
|
1141
|
-
color: var(--sdg-color-text);
|
|
1142
|
-
max-inline-size: var(--sdg-max-content-width);
|
|
1143
|
-
}
|
|
1144
|
-
html .teal-theme h1,
|
|
1145
|
-
html .teal-theme .h1 {
|
|
1146
|
-
font-size: var(--sdg-font-size-h1);
|
|
1147
|
-
line-height: var(--sdg-line-height-h1);
|
|
1148
|
-
margin-top: var(--sdg-title-margin-h1-mt);
|
|
1149
|
-
margin-bottom: var(--sdg-title-margin-h1-mb);
|
|
1150
|
-
}
|
|
1151
|
-
html .teal-theme h1:after,
|
|
1152
|
-
html .teal-theme .h1:after {
|
|
1153
|
-
content: "";
|
|
1154
|
-
display: block;
|
|
1155
|
-
margin: 0;
|
|
1156
|
-
width: 48px;
|
|
1157
|
-
padding-top: 4px;
|
|
1158
|
-
border-bottom: 4px solid var(--sdg-color-pink-normal);
|
|
1159
|
-
}
|
|
1160
|
-
@media (max-width: 575px) {
|
|
1161
|
-
html .teal-theme h1,
|
|
1162
|
-
html .teal-theme .h1 {
|
|
1163
|
-
font-size: var(--sdg-mobile-font-size-h1);
|
|
1164
|
-
line-height: var(--sdg-mobile-line-height-h1);
|
|
1165
|
-
margin-top: var(--sdg-spacer-lg) !important;
|
|
1166
|
-
margin-bottom: var(--sdg-spacer-sm) !important;
|
|
1167
|
-
}
|
|
1168
|
-
}
|
|
1169
|
-
html .teal-theme h2,
|
|
1170
|
-
html .teal-theme .h2 {
|
|
1171
|
-
font-size: var(--sdg-font-size-h2);
|
|
1172
|
-
line-height: var(--sdg-line-height-h2);
|
|
1173
|
-
margin-top: var(--sdg-title-margin-h2-mt);
|
|
1174
|
-
margin-bottom: var(--sdg-title-margin-h2-mb);
|
|
1175
|
-
}
|
|
1176
|
-
@media (max-width: 575px) {
|
|
1177
|
-
html .teal-theme h2,
|
|
1178
|
-
html .teal-theme .h2 {
|
|
1179
|
-
font-size: var(--sdg-mobile-font-size-h2);
|
|
1180
|
-
line-height: var(--sdg-mobile-line-height-h2);
|
|
1181
|
-
}
|
|
1182
|
-
}
|
|
1183
|
-
html .teal-theme h3,
|
|
1184
|
-
html .teal-theme .h3 {
|
|
1185
|
-
font-size: var(--sdg-font-size-h3);
|
|
1186
|
-
line-height: var(--sdg-line-height-h3);
|
|
1187
|
-
margin-top: var(--sdg-title-margin-h3-mt);
|
|
1188
|
-
margin-bottom: var(--sdg-title-margin-h3-mb);
|
|
1189
|
-
}
|
|
1190
|
-
@media (max-width: 575px) {
|
|
1191
|
-
html .teal-theme h3,
|
|
1192
|
-
html .teal-theme .h3 {
|
|
1193
|
-
font-size: var(--sdg-mobile-font-size-h3);
|
|
1194
|
-
}
|
|
1195
|
-
}
|
|
1196
|
-
html .teal-theme h4,
|
|
1197
|
-
html .teal-theme .h4 {
|
|
1198
|
-
font-size: var(--sdg-font-size-h4);
|
|
1199
|
-
line-height: var(--sdg-line-height-h4);
|
|
1200
|
-
margin-top: var(--sdg-title-margin-h4-mt);
|
|
1201
|
-
margin-bottom: var(--sdg-title-margin-h4-mb);
|
|
1202
|
-
}
|
|
1203
|
-
html .teal-theme h5,
|
|
1204
|
-
html .teal-theme .h5 {
|
|
1205
|
-
font-size: var(--sdg-font-size-h5);
|
|
1206
|
-
line-height: var(--sdg-line-height-h5);
|
|
1207
|
-
margin-top: var(--sdg-title-margin-h5-mt);
|
|
1208
|
-
margin-bottom: var(--sdg-title-margin-h5-mb);
|
|
1209
|
-
}
|
|
1210
|
-
html .teal-theme h6,
|
|
1211
|
-
html .teal-theme .h6 {
|
|
1212
|
-
font-size: var(--sdg-font-size-h6);
|
|
1213
|
-
line-height: var(--sdg-line-height-h6);
|
|
1214
|
-
margin-top: var(--sdg-title-margin-h6-mt);
|
|
1215
|
-
margin-bottom: var(--sdg-title-margin-h6-mb);
|
|
1216
|
-
}
|
|
1217
|
-
html .teal-theme .accroche {
|
|
1218
|
-
font-size: var(--sdg-font-size-lg);
|
|
1219
|
-
line-height: var(--sdg-line-height-lg);
|
|
1220
|
-
font-weight: 600;
|
|
1221
|
-
max-width: var(--sdg-max-content-width);
|
|
1222
|
-
padding-bottom: 24px;
|
|
1223
1076
|
}
|