@dialpad/dialtone-css 8.27.1 → 8.28.1
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.json +1 -1
- package/lib/build/less/components/link.less +25 -2
- package/lib/build/less/dialtone-globals.less +1 -3
- package/lib/build/less/dialtone-reset.less +11 -10
- package/lib/build/less/utilities/typography.less +178 -37
- package/lib/dist/css/dialtone.css +466 -425
- package/lib/dist/css/dialtone.min.css +1 -1
- package/package.json +2 -2
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
2
2
|
/* Document
|
|
3
3
|
========================================================================== */
|
|
4
|
+
* {
|
|
5
|
+
padding: 0;
|
|
6
|
+
margin: 0;
|
|
7
|
+
}
|
|
8
|
+
*,
|
|
9
|
+
*::before,
|
|
10
|
+
*::after {
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
}
|
|
4
13
|
/**
|
|
5
14
|
* 1. Correct the line height in all browsers.
|
|
6
15
|
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
|
@@ -13,12 +22,6 @@ html {
|
|
|
13
22
|
}
|
|
14
23
|
/* Sections
|
|
15
24
|
========================================================================== */
|
|
16
|
-
/**
|
|
17
|
-
* Remove the margin in all browsers.
|
|
18
|
-
*/
|
|
19
|
-
body {
|
|
20
|
-
margin: 0;
|
|
21
|
-
}
|
|
22
25
|
/**
|
|
23
26
|
* Render the `main` element consistently in IE.
|
|
24
27
|
*/
|
|
@@ -227,8 +230,6 @@ fieldset {
|
|
|
227
230
|
legend {
|
|
228
231
|
display: table;
|
|
229
232
|
/* 1 */
|
|
230
|
-
box-sizing: border-box;
|
|
231
|
-
/* 1 */
|
|
232
233
|
max-width: 100%;
|
|
233
234
|
/* 1 */
|
|
234
235
|
padding: 0;
|
|
@@ -256,8 +257,6 @@ textarea {
|
|
|
256
257
|
*/
|
|
257
258
|
[type="checkbox"],
|
|
258
259
|
[type="radio"] {
|
|
259
|
-
box-sizing: border-box;
|
|
260
|
-
/* 1 */
|
|
261
260
|
padding: 0;
|
|
262
261
|
/* 2 */
|
|
263
262
|
}
|
|
@@ -2399,6 +2398,8 @@ legend .d-label {
|
|
|
2399
2398
|
--link-color-default: var(--dt-color-link-primary);
|
|
2400
2399
|
--link-color-default-hover: var(--dt-color-link-primary-hover);
|
|
2401
2400
|
--link-text-decoration: underline;
|
|
2401
|
+
--link-padding: 0;
|
|
2402
|
+
--link-background-color: transparent;
|
|
2402
2403
|
position: relative;
|
|
2403
2404
|
display: inline-flex;
|
|
2404
2405
|
gap: var(--dt-space-300);
|
|
@@ -2406,14 +2407,14 @@ legend .d-label {
|
|
|
2406
2407
|
justify-content: center;
|
|
2407
2408
|
box-sizing: border-box;
|
|
2408
2409
|
margin: 0;
|
|
2409
|
-
padding:
|
|
2410
|
+
padding: var(--link-padding);
|
|
2410
2411
|
color: var(--link-color-default);
|
|
2411
2412
|
font: inherit;
|
|
2412
2413
|
-webkit-text-decoration: var(--link-text-decoration);
|
|
2413
2414
|
text-decoration: var(--link-text-decoration);
|
|
2414
2415
|
text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100));
|
|
2415
2416
|
text-decoration-thickness: var(--dt-size-border-50);
|
|
2416
|
-
background-color:
|
|
2417
|
+
background-color: var(--link-background-color);
|
|
2417
2418
|
border: 0;
|
|
2418
2419
|
transition-timing-function: var(--ttf-out-quint);
|
|
2419
2420
|
transition-duration: var(--td200);
|
|
@@ -2473,6 +2474,19 @@ legend .d-label {
|
|
|
2473
2474
|
.d-link--inverted-disabled:hover {
|
|
2474
2475
|
cursor: not-allowed;
|
|
2475
2476
|
}
|
|
2477
|
+
.d-link--mention {
|
|
2478
|
+
--link-text-decoration: none;
|
|
2479
|
+
--link-padding: 0 var(--dt-space-200);
|
|
2480
|
+
--link-background-color: hsl(var(--dt-color-purple-400-hsl) / 0.1);
|
|
2481
|
+
line-height: var(--dt-font-line-height-200);
|
|
2482
|
+
border-radius: var(--dt-size-radius-200);
|
|
2483
|
+
}
|
|
2484
|
+
.d-link--mention:hover {
|
|
2485
|
+
--link-text-decoration: underline;
|
|
2486
|
+
--link-background-color: hsl(var(--dt-color-purple-400-hsl) / 0.2);
|
|
2487
|
+
text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100));
|
|
2488
|
+
text-decoration-thickness: var(--dt-size-border-50);
|
|
2489
|
+
}
|
|
2476
2490
|
.d-list-group,
|
|
2477
2491
|
.d-list-group__item {
|
|
2478
2492
|
margin: 0;
|
|
@@ -6887,75 +6901,125 @@ ul {
|
|
|
6887
6901
|
margin-top: 0;
|
|
6888
6902
|
margin-bottom: 0;
|
|
6889
6903
|
}
|
|
6904
|
+
.d-headline--eyebrow,
|
|
6905
|
+
.d-headline-eyebrow {
|
|
6906
|
+
font: var(--dt-typography-headline-eyebrow);
|
|
6907
|
+
}
|
|
6908
|
+
.d-headline--sm,
|
|
6909
|
+
.d-headline-small {
|
|
6910
|
+
font: var(--dt-typography-headline-sm);
|
|
6911
|
+
}
|
|
6912
|
+
.d-headline--sm-soft,
|
|
6913
|
+
.d-headline-soft-small {
|
|
6914
|
+
font: var(--dt-typography-headline-sm-soft);
|
|
6915
|
+
}
|
|
6916
|
+
.d-headline--md,
|
|
6917
|
+
.d-headline-medium {
|
|
6918
|
+
font: var(--dt-typography-headline-md);
|
|
6919
|
+
}
|
|
6920
|
+
.d-headline--sm-compact,
|
|
6921
|
+
.d-headline-compact-small {
|
|
6922
|
+
font: var(--dt-typography-headline-sm-compact);
|
|
6923
|
+
}
|
|
6924
|
+
.d-headline--sm-soft-compact,
|
|
6925
|
+
.d-headline-compact-soft-small {
|
|
6926
|
+
font: var(--dt-typography-headline-sm-soft-compact);
|
|
6927
|
+
}
|
|
6928
|
+
.d-headline--md-compact,
|
|
6929
|
+
.d-headline-compact-medium {
|
|
6930
|
+
font: var(--dt-typography-headline-md-compact);
|
|
6931
|
+
}
|
|
6932
|
+
.d-headline--lg,
|
|
6933
|
+
.d-headline-large {
|
|
6934
|
+
font: var(--dt-typography-headline-lg);
|
|
6935
|
+
}
|
|
6936
|
+
.d-headline--lg-soft {
|
|
6937
|
+
font: var(--dt-typography-headline-lg-soft);
|
|
6938
|
+
}
|
|
6939
|
+
.d-headline--lg-compact,
|
|
6940
|
+
.d-headline-compact-large {
|
|
6941
|
+
font: var(--dt-typography-headline-lg-compact);
|
|
6942
|
+
}
|
|
6943
|
+
.d-headline--lg-soft-compact {
|
|
6944
|
+
font: var(--dt-typography-headline-lg-soft-compact);
|
|
6945
|
+
}
|
|
6946
|
+
.d-headline--xl,
|
|
6947
|
+
.d-headline-extra-large {
|
|
6948
|
+
font: var(--dt-typography-headline-xl);
|
|
6949
|
+
}
|
|
6950
|
+
.d-headline--xl-compact {
|
|
6951
|
+
font: var(--dt-typography-headline-xl-compact);
|
|
6952
|
+
}
|
|
6953
|
+
.d-headline--xxl,
|
|
6954
|
+
.d-headline-extra-extra-large {
|
|
6955
|
+
font: var(--dt-typography-headline-xxl);
|
|
6956
|
+
}
|
|
6957
|
+
.d-headline--xxl-compact {
|
|
6958
|
+
font: var(--dt-typography-headline-xxl-compact);
|
|
6959
|
+
}
|
|
6960
|
+
.d-body--md,
|
|
6890
6961
|
.d-body-base {
|
|
6891
|
-
|
|
6892
|
-
font-size: var(--dt-font-size-200);
|
|
6962
|
+
font: var(--dt-typography-body-md);
|
|
6893
6963
|
}
|
|
6964
|
+
.d-body--sm,
|
|
6894
6965
|
.d-body-small {
|
|
6895
|
-
|
|
6896
|
-
font-size: var(--dt-font-size-100);
|
|
6966
|
+
font: var(--dt-typography-body-sm);
|
|
6897
6967
|
}
|
|
6968
|
+
.d-body--md-compact,
|
|
6898
6969
|
.d-body-compact {
|
|
6899
|
-
|
|
6900
|
-
font-size: var(--dt-font-size-200);
|
|
6970
|
+
font: var(--dt-typography-body-md-compact);
|
|
6901
6971
|
}
|
|
6972
|
+
.d-body--sm-compact,
|
|
6902
6973
|
.d-body-compact-small {
|
|
6903
|
-
|
|
6904
|
-
font-size: var(--dt-font-size-100);
|
|
6974
|
+
font: var(--dt-typography-body-sm-compact);
|
|
6905
6975
|
}
|
|
6976
|
+
.d-label--md,
|
|
6906
6977
|
.d-label-base {
|
|
6907
|
-
|
|
6908
|
-
font-size: var(--dt-font-size-200);
|
|
6909
|
-
font-weight: var(--dt-font-weight-semi-bold);
|
|
6978
|
+
font: var(--dt-typography-label-md);
|
|
6910
6979
|
}
|
|
6980
|
+
.d-label--sm,
|
|
6911
6981
|
.d-label-small {
|
|
6912
|
-
|
|
6913
|
-
font-size: var(--dt-font-size-100);
|
|
6914
|
-
font-weight: var(--dt-font-weight-semi-bold);
|
|
6982
|
+
font: var(--dt-typography-label-sm);
|
|
6915
6983
|
}
|
|
6984
|
+
.d-label--md-compact,
|
|
6916
6985
|
.d-label-compact {
|
|
6917
|
-
|
|
6918
|
-
font-size: var(--dt-font-size-200);
|
|
6919
|
-
font-weight: var(--dt-font-weight-semi-bold);
|
|
6986
|
+
font: var(--dt-typography-label-md-compact);
|
|
6920
6987
|
}
|
|
6988
|
+
.d-label--md-plain,
|
|
6921
6989
|
.d-label-plain {
|
|
6922
|
-
|
|
6923
|
-
font-size: var(--dt-font-size-200);
|
|
6990
|
+
font: var(--dt-typography-label-md-plain);
|
|
6924
6991
|
}
|
|
6992
|
+
.d-label--md-plain-compact,
|
|
6925
6993
|
.d-label-compact-plain {
|
|
6926
|
-
|
|
6927
|
-
font-size: var(--dt-font-size-200);
|
|
6994
|
+
font: var(--dt-typography-label-md-plain-compact);
|
|
6928
6995
|
}
|
|
6996
|
+
.d-label--sm-compact,
|
|
6929
6997
|
.d-label-compact-small {
|
|
6930
|
-
|
|
6931
|
-
font-size: var(--dt-font-size-100);
|
|
6932
|
-
font-weight: var(--dt-font-weight-semi-bold);
|
|
6998
|
+
font: var(--dt-typography-label-sm-compact);
|
|
6933
6999
|
}
|
|
7000
|
+
.d-label--sm-plain,
|
|
6934
7001
|
.d-label-plain-small {
|
|
6935
|
-
|
|
6936
|
-
font-size: var(--dt-font-size-100);
|
|
7002
|
+
font: var(--dt-typography-label-sm-plain);
|
|
6937
7003
|
}
|
|
7004
|
+
.d-label--sm-plain-compact,
|
|
6938
7005
|
.d-label-compact-plain-small {
|
|
6939
|
-
|
|
6940
|
-
font-size: var(--dt-font-size-100);
|
|
7006
|
+
font: var(--dt-typography-label-sm-plain-compact);
|
|
6941
7007
|
}
|
|
7008
|
+
.d-helper--md,
|
|
6942
7009
|
.d-helper-base {
|
|
6943
|
-
|
|
6944
|
-
font-size: var(--dt-font-size-200);
|
|
7010
|
+
font: var(--dt-typography-helper-md);
|
|
6945
7011
|
}
|
|
7012
|
+
.d-helper--sm,
|
|
6946
7013
|
.d-helper-small {
|
|
6947
|
-
|
|
6948
|
-
font-size: var(--dt-font-size-100);
|
|
7014
|
+
font: var(--dt-typography-helper-sm);
|
|
6949
7015
|
}
|
|
7016
|
+
.d-code--md,
|
|
6950
7017
|
.d-code-base {
|
|
6951
|
-
font
|
|
6952
|
-
line-height: var(--dt-font-line-height-200);
|
|
6953
|
-
font-size: var(--dt-font-size-200);
|
|
7018
|
+
font: var(--dt-typography-code-md);
|
|
6954
7019
|
}
|
|
7020
|
+
.d-code--sm,
|
|
6955
7021
|
.d-code-small {
|
|
6956
|
-
font
|
|
6957
|
-
line-height: var(--dt-font-line-height-200);
|
|
6958
|
-
font-size: var(--dt-font-size-100);
|
|
7022
|
+
font: var(--dt-typography-code-sm);
|
|
6959
7023
|
}
|
|
6960
7024
|
.d-fs-100 {
|
|
6961
7025
|
font-size: var(--dt-font-size-100) !important;
|
|
@@ -7018,94 +7082,28 @@ ul {
|
|
|
7018
7082
|
font-size: var(--dt-font-size-500-tv) !important;
|
|
7019
7083
|
}
|
|
7020
7084
|
.d-headline10 {
|
|
7021
|
-
font
|
|
7022
|
-
font-weight: var(--dt-font-weight-bold);
|
|
7023
|
-
text-transform: uppercase !important;
|
|
7085
|
+
font: var(--dt-typography-headline-eyebrow);
|
|
7024
7086
|
}
|
|
7025
7087
|
.d-headline24 {
|
|
7026
|
-
font
|
|
7027
|
-
font-weight: var(--dt-font-weight-bold) !important;
|
|
7088
|
+
font: var(--dt-typography-headline-lg);
|
|
7028
7089
|
}
|
|
7029
7090
|
.d-headline28 {
|
|
7030
|
-
font
|
|
7031
|
-
font-weight: var(--dt-font-weight-bold) !important;
|
|
7091
|
+
font: var(--dt-typography-headline-xl);
|
|
7032
7092
|
}
|
|
7033
7093
|
.d-headline32 {
|
|
7034
|
-
font
|
|
7035
|
-
font-weight: var(--dt-font-weight-bold) !important;
|
|
7094
|
+
font: var(--dt-typography-headline-xl);
|
|
7036
7095
|
}
|
|
7037
7096
|
.d-headline36 {
|
|
7038
|
-
font
|
|
7039
|
-
font-weight: var(--dt-font-weight-bold) !important;
|
|
7097
|
+
font: var(--dt-typography-headline-xl);
|
|
7040
7098
|
}
|
|
7041
7099
|
.d-headline42 {
|
|
7042
|
-
font
|
|
7043
|
-
font-weight: var(--dt-font-weight-bold) !important;
|
|
7100
|
+
font: var(--dt-typography-headline-xxl);
|
|
7044
7101
|
}
|
|
7045
7102
|
.d-headline48 {
|
|
7046
|
-
font
|
|
7047
|
-
font-weight: var(--dt-font-weight-bold) !important;
|
|
7103
|
+
font: var(--dt-typography-headline-xxl);
|
|
7048
7104
|
}
|
|
7049
7105
|
.d-headline54 {
|
|
7050
|
-
font
|
|
7051
|
-
font-weight: var(--dt-font-weight-bold) !important;
|
|
7052
|
-
}
|
|
7053
|
-
.d-headline-eyebrow {
|
|
7054
|
-
line-height: var(--dt-font-line-height-300);
|
|
7055
|
-
font-size: var(--dt-font-size-100);
|
|
7056
|
-
font-weight: var(--dt-font-weight-normal);
|
|
7057
|
-
text-transform: uppercase !important;
|
|
7058
|
-
}
|
|
7059
|
-
.d-headline-small {
|
|
7060
|
-
line-height: var(--dt-font-line-height-300);
|
|
7061
|
-
font-size: var(--dt-font-size-100);
|
|
7062
|
-
font-weight: var(--dt-font-weight-bold);
|
|
7063
|
-
}
|
|
7064
|
-
.d-headline-soft-small {
|
|
7065
|
-
line-height: var(--dt-font-line-height-300);
|
|
7066
|
-
font-size: var(--dt-font-size-100);
|
|
7067
|
-
font-weight: var(--dt-font-weight-medium);
|
|
7068
|
-
}
|
|
7069
|
-
.d-headline-medium {
|
|
7070
|
-
line-height: var(--dt-font-line-height-400);
|
|
7071
|
-
font-size: var(--dt-font-size-200);
|
|
7072
|
-
font-weight: var(--dt-font-weight-bold);
|
|
7073
|
-
}
|
|
7074
|
-
.d-headline-compact-small {
|
|
7075
|
-
line-height: var(--dt-font-line-height-200);
|
|
7076
|
-
font-size: var(--dt-font-size-100);
|
|
7077
|
-
font-weight: var(--dt-font-weight-bold);
|
|
7078
|
-
}
|
|
7079
|
-
.d-headline-compact-soft-small {
|
|
7080
|
-
line-height: var(--dt-font-line-height-200);
|
|
7081
|
-
font-size: var(--dt-font-size-100);
|
|
7082
|
-
font-weight: var(--dt-font-weight-medium);
|
|
7083
|
-
}
|
|
7084
|
-
.d-headline-compact-base,
|
|
7085
|
-
.d-headline-compact-medium {
|
|
7086
|
-
line-height: var(--dt-font-line-height-300);
|
|
7087
|
-
font-size: var(--dt-font-size-200);
|
|
7088
|
-
font-weight: var(--dt-font-weight-bold);
|
|
7089
|
-
}
|
|
7090
|
-
.d-headline-compact-large {
|
|
7091
|
-
line-height: var(--dt-font-line-height-200);
|
|
7092
|
-
font-size: var(--dt-font-size-300);
|
|
7093
|
-
font-weight: var(--dt-font-weight-bold);
|
|
7094
|
-
}
|
|
7095
|
-
.d-headline-large {
|
|
7096
|
-
line-height: var(--dt-font-line-height-400);
|
|
7097
|
-
font-size: var(--dt-font-size-300);
|
|
7098
|
-
font-weight: var(--dt-font-weight-bold);
|
|
7099
|
-
}
|
|
7100
|
-
.d-headline-extra-large {
|
|
7101
|
-
line-height: var(--dt-font-line-height-200);
|
|
7102
|
-
font-size: var(--dt-font-size-400);
|
|
7103
|
-
font-weight: var(--dt-font-weight-medium);
|
|
7104
|
-
}
|
|
7105
|
-
.d-headline-extra-extra-large {
|
|
7106
|
-
line-height: var(--dt-font-line-height-200);
|
|
7107
|
-
font-size: var(--dt-font-size-500);
|
|
7108
|
-
font-weight: var(--dt-font-weight-medium);
|
|
7106
|
+
font: var(--dt-typography-headline-xxl);
|
|
7109
7107
|
}
|
|
7110
7108
|
.d-fs-unset {
|
|
7111
7109
|
font-size: unset !important;
|
|
@@ -7389,9 +7387,7 @@ body {
|
|
|
7389
7387
|
}
|
|
7390
7388
|
body {
|
|
7391
7389
|
color: var(--dt-color-foreground-primary);
|
|
7392
|
-
font
|
|
7393
|
-
font-family: var(--dt-typography-body-base-font-family);
|
|
7394
|
-
line-height: var(--dt-typography-body-base-line-height);
|
|
7390
|
+
font: var(--dt-typography-body-md);
|
|
7395
7391
|
background-color: var(--dt-color-surface-primary);
|
|
7396
7392
|
-webkit-text-size-adjust: 100%;
|
|
7397
7393
|
}
|
|
@@ -7464,7 +7460,7 @@ body {
|
|
|
7464
7460
|
}
|
|
7465
7461
|
/**
|
|
7466
7462
|
* Do not edit directly
|
|
7467
|
-
* Generated on
|
|
7463
|
+
* Generated on Fri, 15 Mar 2024 00:00:45 GMT
|
|
7468
7464
|
*/
|
|
7469
7465
|
|
|
7470
7466
|
.dialtone-theme-light {
|
|
@@ -7948,141 +7944,161 @@ body {
|
|
|
7948
7944
|
--dt-shadow-focus-inset-1-spread: 0.3rem;
|
|
7949
7945
|
--dt-shadow-focus-inset-1-color: #51A0FE;
|
|
7950
7946
|
--dt-shadow-focus-inset-1-type: innerShadow;
|
|
7951
|
-
--dt-typography-body-
|
|
7952
|
-
--dt-typography-body-
|
|
7953
|
-
--dt-typography-body-
|
|
7954
|
-
--dt-typography-body-
|
|
7955
|
-
--dt-typography-body-
|
|
7956
|
-
--dt-typography-body-
|
|
7957
|
-
--dt-typography-body-
|
|
7958
|
-
--dt-typography-body-
|
|
7959
|
-
--dt-typography-body-
|
|
7960
|
-
--dt-typography-body-
|
|
7961
|
-
--dt-typography-body-
|
|
7962
|
-
--dt-typography-body-
|
|
7963
|
-
--dt-typography-body-
|
|
7964
|
-
--dt-typography-body-
|
|
7965
|
-
--dt-typography-body-
|
|
7966
|
-
--dt-typography-body-compact-
|
|
7967
|
-
--dt-typography-body-compact-
|
|
7968
|
-
--dt-typography-body-compact-
|
|
7969
|
-
--dt-typography-body-compact-
|
|
7970
|
-
--dt-typography-body-compact-
|
|
7971
|
-
--dt-typography-headline-eyebrow-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
7972
|
-
--dt-typography-headline-eyebrow-font-weight: 400;
|
|
7973
|
-
--dt-typography-headline-eyebrow-line-height: 1.4;
|
|
7974
|
-
--dt-typography-headline-eyebrow-font-size: 1.2rem;
|
|
7975
|
-
--dt-typography-headline-eyebrow-text-case: uppercase;
|
|
7976
|
-
--dt-typography-headline-
|
|
7977
|
-
--dt-typography-headline-
|
|
7978
|
-
--dt-typography-headline-
|
|
7979
|
-
--dt-typography-headline-
|
|
7980
|
-
--dt-typography-headline-
|
|
7981
|
-
--dt-typography-headline-
|
|
7982
|
-
--dt-typography-headline-
|
|
7983
|
-
--dt-typography-headline-
|
|
7984
|
-
--dt-typography-headline-
|
|
7985
|
-
--dt-typography-headline-
|
|
7986
|
-
--dt-typography-headline-
|
|
7987
|
-
--dt-typography-headline-
|
|
7988
|
-
--dt-typography-headline-
|
|
7989
|
-
--dt-typography-headline-
|
|
7990
|
-
--dt-typography-headline-
|
|
7991
|
-
--dt-typography-headline-
|
|
7992
|
-
--dt-typography-headline-
|
|
7993
|
-
--dt-typography-headline-
|
|
7994
|
-
--dt-typography-headline-
|
|
7995
|
-
--dt-typography-headline-
|
|
7996
|
-
--dt-typography-headline-
|
|
7997
|
-
--dt-typography-headline-
|
|
7998
|
-
--dt-typography-headline-
|
|
7999
|
-
--dt-typography-headline-
|
|
8000
|
-
--dt-typography-headline-
|
|
8001
|
-
--dt-typography-headline-
|
|
8002
|
-
--dt-typography-headline-
|
|
8003
|
-
--dt-typography-headline-
|
|
8004
|
-
--dt-typography-headline-
|
|
8005
|
-
--dt-typography-headline-
|
|
8006
|
-
--dt-typography-headline-
|
|
8007
|
-
--dt-typography-headline-
|
|
8008
|
-
--dt-typography-headline-
|
|
8009
|
-
--dt-typography-headline-
|
|
8010
|
-
--dt-typography-headline-
|
|
8011
|
-
--dt-typography-headline-
|
|
8012
|
-
--dt-typography-headline-
|
|
8013
|
-
--dt-typography-headline-
|
|
8014
|
-
--dt-typography-headline-
|
|
8015
|
-
--dt-typography-headline-
|
|
8016
|
-
--dt-typography-headline-compact-
|
|
8017
|
-
--dt-typography-headline-compact-
|
|
8018
|
-
--dt-typography-headline-compact-
|
|
8019
|
-
--dt-typography-headline-compact-
|
|
8020
|
-
--dt-typography-headline-compact-
|
|
8021
|
-
--dt-typography-headline-
|
|
8022
|
-
--dt-typography-headline-
|
|
8023
|
-
--dt-typography-headline-
|
|
8024
|
-
--dt-typography-headline-
|
|
8025
|
-
--dt-typography-headline-
|
|
8026
|
-
--dt-typography-
|
|
8027
|
-
--dt-typography-
|
|
8028
|
-
--dt-typography-
|
|
8029
|
-
--dt-typography-
|
|
8030
|
-
--dt-typography-
|
|
8031
|
-
--dt-typography-
|
|
8032
|
-
--dt-typography-
|
|
8033
|
-
--dt-typography-
|
|
8034
|
-
--dt-typography-
|
|
8035
|
-
--dt-typography-
|
|
8036
|
-
--dt-typography-
|
|
8037
|
-
--dt-typography-
|
|
8038
|
-
--dt-typography-
|
|
8039
|
-
--dt-typography-
|
|
8040
|
-
--dt-typography-
|
|
8041
|
-
--dt-typography-
|
|
8042
|
-
--dt-typography-
|
|
8043
|
-
--dt-typography-
|
|
8044
|
-
--dt-typography-
|
|
8045
|
-
--dt-typography-
|
|
8046
|
-
--dt-typography-label-
|
|
8047
|
-
--dt-typography-label-
|
|
8048
|
-
--dt-typography-label-
|
|
8049
|
-
--dt-typography-label-
|
|
8050
|
-
--dt-typography-label-
|
|
8051
|
-
--dt-typography-label-compact-
|
|
8052
|
-
--dt-typography-label-compact-
|
|
8053
|
-
--dt-typography-label-compact-
|
|
8054
|
-
--dt-typography-label-compact-
|
|
8055
|
-
--dt-typography-label-compact-
|
|
8056
|
-
--dt-typography-label-plain-
|
|
8057
|
-
--dt-typography-label-plain-
|
|
8058
|
-
--dt-typography-label-plain-
|
|
8059
|
-
--dt-typography-label-plain-
|
|
8060
|
-
--dt-typography-label-plain-
|
|
8061
|
-
--dt-typography-label-plain-
|
|
8062
|
-
--dt-typography-label-plain-
|
|
8063
|
-
--dt-typography-label-plain-
|
|
8064
|
-
--dt-typography-label-plain-
|
|
8065
|
-
--dt-typography-label-plain-
|
|
8066
|
-
--dt-typography-
|
|
8067
|
-
--dt-typography-
|
|
8068
|
-
--dt-typography-
|
|
8069
|
-
--dt-typography-
|
|
8070
|
-
--dt-typography-
|
|
8071
|
-
--dt-typography-
|
|
8072
|
-
--dt-typography-
|
|
8073
|
-
--dt-typography-
|
|
8074
|
-
--dt-typography-
|
|
8075
|
-
--dt-typography-
|
|
8076
|
-
--dt-typography-
|
|
8077
|
-
--dt-typography-
|
|
8078
|
-
--dt-typography-
|
|
8079
|
-
--dt-typography-
|
|
8080
|
-
--dt-typography-
|
|
8081
|
-
--dt-typography-
|
|
8082
|
-
--dt-typography-
|
|
8083
|
-
--dt-typography-
|
|
8084
|
-
--dt-typography-
|
|
8085
|
-
--dt-typography-
|
|
7947
|
+
--dt-typography-body-md-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Base default medium text style for main content. */
|
|
7948
|
+
--dt-typography-body-md-font-weight: 400; /* Base default medium text style for main content. */
|
|
7949
|
+
--dt-typography-body-md-line-height: 1.6; /* Base default medium text style for main content. */
|
|
7950
|
+
--dt-typography-body-md-font-size: 1.5rem; /* Base default medium text style for main content. */
|
|
7951
|
+
--dt-typography-body-md-text-case: none; /* Base default medium text style for main content. */
|
|
7952
|
+
--dt-typography-body-md-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of medium body style. */
|
|
7953
|
+
--dt-typography-body-md-compact-font-weight: 400; /* A tighter-spaced version of medium body style. */
|
|
7954
|
+
--dt-typography-body-md-compact-line-height: 1.4; /* A tighter-spaced version of medium body style. */
|
|
7955
|
+
--dt-typography-body-md-compact-font-size: 1.5rem; /* A tighter-spaced version of medium body style. */
|
|
7956
|
+
--dt-typography-body-md-compact-text-case: none; /* A tighter-spaced version of medium body style. */
|
|
7957
|
+
--dt-typography-body-sm-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Reduced small text style for less prominent or adjacent content. */
|
|
7958
|
+
--dt-typography-body-sm-font-weight: 400; /* Reduced small text style for less prominent or adjacent content. */
|
|
7959
|
+
--dt-typography-body-sm-line-height: 1.4; /* Reduced small text style for less prominent or adjacent content. */
|
|
7960
|
+
--dt-typography-body-sm-font-size: 1.2rem; /* Reduced small text style for less prominent or adjacent content. */
|
|
7961
|
+
--dt-typography-body-sm-text-case: none; /* Reduced small text style for less prominent or adjacent content. */
|
|
7962
|
+
--dt-typography-body-sm-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of small body style. */
|
|
7963
|
+
--dt-typography-body-sm-compact-font-weight: 400; /* A tighter-spaced version of small body style. */
|
|
7964
|
+
--dt-typography-body-sm-compact-line-height: 1.2; /* A tighter-spaced version of small body style. */
|
|
7965
|
+
--dt-typography-body-sm-compact-font-size: 1.2rem; /* A tighter-spaced version of small body style. */
|
|
7966
|
+
--dt-typography-body-sm-compact-text-case: none; /* A tighter-spaced version of small body style. */
|
|
7967
|
+
--dt-typography-headline-eyebrow-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Visually concise and uppercase title text used above a paired headline. Also known as a kicker or overline. */
|
|
7968
|
+
--dt-typography-headline-eyebrow-font-weight: 400; /* Visually concise and uppercase title text used above a paired headline. Also known as a kicker or overline. */
|
|
7969
|
+
--dt-typography-headline-eyebrow-line-height: 1.4; /* Visually concise and uppercase title text used above a paired headline. Also known as a kicker or overline. */
|
|
7970
|
+
--dt-typography-headline-eyebrow-font-size: 1.2rem; /* Visually concise and uppercase title text used above a paired headline. Also known as a kicker or overline. */
|
|
7971
|
+
--dt-typography-headline-eyebrow-text-case: uppercase; /* Visually concise and uppercase title text used above a paired headline. Also known as a kicker or overline. */
|
|
7972
|
+
--dt-typography-headline-sm-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Smaller text size for secondary information or subheadings. */
|
|
7973
|
+
--dt-typography-headline-sm-font-weight: 700; /* Smaller text size for secondary information or subheadings. */
|
|
7974
|
+
--dt-typography-headline-sm-line-height: 1.4; /* Smaller text size for secondary information or subheadings. */
|
|
7975
|
+
--dt-typography-headline-sm-font-size: 1.2rem; /* Smaller text size for secondary information or subheadings. */
|
|
7976
|
+
--dt-typography-headline-sm-text-case: none; /* Smaller text size for secondary information or subheadings. */
|
|
7977
|
+
--dt-typography-headline-sm-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of small headline style. */
|
|
7978
|
+
--dt-typography-headline-sm-compact-font-weight: 700; /* A tighter-spaced version of small headline style. */
|
|
7979
|
+
--dt-typography-headline-sm-compact-line-height: 1.2; /* A tighter-spaced version of small headline style. */
|
|
7980
|
+
--dt-typography-headline-sm-compact-font-size: 1.2rem; /* A tighter-spaced version of small headline style. */
|
|
7981
|
+
--dt-typography-headline-sm-compact-text-case: none; /* A tighter-spaced version of small headline style. */
|
|
7982
|
+
--dt-typography-headline-sm-soft-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A softer font weight version of small headline style. */
|
|
7983
|
+
--dt-typography-headline-sm-soft-font-weight: 500; /* A softer font weight version of small headline style. */
|
|
7984
|
+
--dt-typography-headline-sm-soft-line-height: 1.4; /* A softer font weight version of small headline style. */
|
|
7985
|
+
--dt-typography-headline-sm-soft-font-size: 1.2rem; /* A softer font weight version of small headline style. */
|
|
7986
|
+
--dt-typography-headline-sm-soft-text-case: none; /* A softer font weight version of small headline style. */
|
|
7987
|
+
--dt-typography-headline-sm-soft-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A softer font weight, tighter-spaced version of small headline style. */
|
|
7988
|
+
--dt-typography-headline-sm-soft-compact-font-weight: 500; /* A softer font weight, tighter-spaced version of small headline style. */
|
|
7989
|
+
--dt-typography-headline-sm-soft-compact-line-height: 1.2; /* A softer font weight, tighter-spaced version of small headline style. */
|
|
7990
|
+
--dt-typography-headline-sm-soft-compact-font-size: 1.2rem; /* A softer font weight, tighter-spaced version of small headline style. */
|
|
7991
|
+
--dt-typography-headline-sm-soft-compact-text-case: none; /* A softer font weight, tighter-spaced version of small headline style. */
|
|
7992
|
+
--dt-typography-headline-md-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Medium-sized base text style for headlines. */
|
|
7993
|
+
--dt-typography-headline-md-font-weight: 700; /* Medium-sized base text style for headlines. */
|
|
7994
|
+
--dt-typography-headline-md-line-height: 1.6; /* Medium-sized base text style for headlines. */
|
|
7995
|
+
--dt-typography-headline-md-font-size: 1.5rem; /* Medium-sized base text style for headlines. */
|
|
7996
|
+
--dt-typography-headline-md-text-case: none; /* Medium-sized base text style for headlines. */
|
|
7997
|
+
--dt-typography-headline-md-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of medium headline style. */
|
|
7998
|
+
--dt-typography-headline-md-compact-font-weight: 700; /* A tighter-spaced version of medium headline style. */
|
|
7999
|
+
--dt-typography-headline-md-compact-line-height: 1.4; /* A tighter-spaced version of medium headline style. */
|
|
8000
|
+
--dt-typography-headline-md-compact-font-size: 1.5rem; /* A tighter-spaced version of medium headline style. */
|
|
8001
|
+
--dt-typography-headline-md-compact-text-case: none; /* A tighter-spaced version of medium headline style. */
|
|
8002
|
+
--dt-typography-headline-lg-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Large text style for headlines to attract attention. */
|
|
8003
|
+
--dt-typography-headline-lg-font-weight: 700; /* Large text style for headlines to attract attention. */
|
|
8004
|
+
--dt-typography-headline-lg-line-height: 1.6; /* Large text style for headlines to attract attention. */
|
|
8005
|
+
--dt-typography-headline-lg-font-size: 1.9rem; /* Large text style for headlines to attract attention. */
|
|
8006
|
+
--dt-typography-headline-lg-text-case: none; /* Large text style for headlines to attract attention. */
|
|
8007
|
+
--dt-typography-headline-lg-soft-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A softer font weight version of large headline style. */
|
|
8008
|
+
--dt-typography-headline-lg-soft-font-weight: 500; /* A softer font weight version of large headline style. */
|
|
8009
|
+
--dt-typography-headline-lg-soft-line-height: 1.6; /* A softer font weight version of large headline style. */
|
|
8010
|
+
--dt-typography-headline-lg-soft-font-size: 1.9rem; /* A softer font weight version of large headline style. */
|
|
8011
|
+
--dt-typography-headline-lg-soft-text-case: none; /* A softer font weight version of large headline style. */
|
|
8012
|
+
--dt-typography-headline-lg-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of large body style. */
|
|
8013
|
+
--dt-typography-headline-lg-compact-font-weight: 700; /* A tighter-spaced version of large body style. */
|
|
8014
|
+
--dt-typography-headline-lg-compact-line-height: 1.2; /* A tighter-spaced version of large body style. */
|
|
8015
|
+
--dt-typography-headline-lg-compact-font-size: 1.9rem; /* A tighter-spaced version of large body style. */
|
|
8016
|
+
--dt-typography-headline-lg-compact-text-case: none; /* A tighter-spaced version of large body style. */
|
|
8017
|
+
--dt-typography-headline-lg-soft-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A softer font weight, tighter spaced version of large headline style. */
|
|
8018
|
+
--dt-typography-headline-lg-soft-compact-font-weight: 500; /* A softer font weight, tighter spaced version of large headline style. */
|
|
8019
|
+
--dt-typography-headline-lg-soft-compact-line-height: 1.2; /* A softer font weight, tighter spaced version of large headline style. */
|
|
8020
|
+
--dt-typography-headline-lg-soft-compact-font-size: 1.9rem; /* A softer font weight, tighter spaced version of large headline style. */
|
|
8021
|
+
--dt-typography-headline-lg-soft-compact-text-case: none; /* A softer font weight, tighter spaced version of large headline style. */
|
|
8022
|
+
--dt-typography-headline-xl-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Extra large text style for high importance headlines. */
|
|
8023
|
+
--dt-typography-headline-xl-font-weight: 500; /* Extra large text style for high importance headlines. */
|
|
8024
|
+
--dt-typography-headline-xl-line-height: 1.2; /* Extra large text style for high importance headlines. */
|
|
8025
|
+
--dt-typography-headline-xl-font-size: 2.7rem; /* Extra large text style for high importance headlines. */
|
|
8026
|
+
--dt-typography-headline-xl-text-case: none; /* Extra large text style for high importance headlines. */
|
|
8027
|
+
--dt-typography-headline-xl-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of extra large headline style. */
|
|
8028
|
+
--dt-typography-headline-xl-compact-font-weight: 500; /* A tighter-spaced version of extra large headline style. */
|
|
8029
|
+
--dt-typography-headline-xl-compact-line-height: 1; /* A tighter-spaced version of extra large headline style. */
|
|
8030
|
+
--dt-typography-headline-xl-compact-font-size: 2.7rem; /* A tighter-spaced version of extra large headline style. */
|
|
8031
|
+
--dt-typography-headline-xl-compact-text-case: none; /* A tighter-spaced version of extra large headline style. */
|
|
8032
|
+
--dt-typography-headline-xxl-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Largest text style for extra extra large content. */
|
|
8033
|
+
--dt-typography-headline-xxl-font-weight: 500; /* Largest text style for extra extra large content. */
|
|
8034
|
+
--dt-typography-headline-xxl-line-height: 1.2; /* Largest text style for extra extra large content. */
|
|
8035
|
+
--dt-typography-headline-xxl-font-size: 3.8rem; /* Largest text style for extra extra large content. */
|
|
8036
|
+
--dt-typography-headline-xxl-text-case: none; /* Largest text style for extra extra large content. */
|
|
8037
|
+
--dt-typography-headline-xxl-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of extra extra large headline style. */
|
|
8038
|
+
--dt-typography-headline-xxl-compact-font-weight: 500; /* A tighter-spaced version of extra extra large headline style. */
|
|
8039
|
+
--dt-typography-headline-xxl-compact-line-height: 1; /* A tighter-spaced version of extra extra large headline style. */
|
|
8040
|
+
--dt-typography-headline-xxl-compact-font-size: 3.8rem; /* A tighter-spaced version of extra extra large headline style. */
|
|
8041
|
+
--dt-typography-headline-xxl-compact-text-case: none; /* A tighter-spaced version of extra extra large headline style. */
|
|
8042
|
+
--dt-typography-label-md-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Base default medium-sized text style for labels, providing clear identification and categorization. */
|
|
8043
|
+
--dt-typography-label-md-font-weight: 600; /* Base default medium-sized text style for labels, providing clear identification and categorization. */
|
|
8044
|
+
--dt-typography-label-md-line-height: 1.6; /* Base default medium-sized text style for labels, providing clear identification and categorization. */
|
|
8045
|
+
--dt-typography-label-md-font-size: 1.5rem; /* Base default medium-sized text style for labels, providing clear identification and categorization. */
|
|
8046
|
+
--dt-typography-label-md-text-case: none; /* Base default medium-sized text style for labels, providing clear identification and categorization. */
|
|
8047
|
+
--dt-typography-label-md-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of medium label style. */
|
|
8048
|
+
--dt-typography-label-md-compact-font-weight: 600; /* A tighter-spaced version of medium label style. */
|
|
8049
|
+
--dt-typography-label-md-compact-line-height: 1.4; /* A tighter-spaced version of medium label style. */
|
|
8050
|
+
--dt-typography-label-md-compact-font-size: 1.5rem; /* A tighter-spaced version of medium label style. */
|
|
8051
|
+
--dt-typography-label-md-compact-text-case: none; /* A tighter-spaced version of medium label style. */
|
|
8052
|
+
--dt-typography-label-md-plain-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A non-bold version of medium label style. */
|
|
8053
|
+
--dt-typography-label-md-plain-font-weight: 400; /* A non-bold version of medium label style. */
|
|
8054
|
+
--dt-typography-label-md-plain-line-height: 1.6; /* A non-bold version of medium label style. */
|
|
8055
|
+
--dt-typography-label-md-plain-font-size: 1.5rem; /* A non-bold version of medium label style. */
|
|
8056
|
+
--dt-typography-label-md-plain-text-case: none; /* A non-bold version of medium label style. */
|
|
8057
|
+
--dt-typography-label-md-plain-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A non-bolded, tighter-spaced version of medium label style. */
|
|
8058
|
+
--dt-typography-label-md-plain-compact-font-weight: 400; /* A non-bolded, tighter-spaced version of medium label style. */
|
|
8059
|
+
--dt-typography-label-md-plain-compact-line-height: 1.4; /* A non-bolded, tighter-spaced version of medium label style. */
|
|
8060
|
+
--dt-typography-label-md-plain-compact-font-size: 1.5rem; /* A non-bolded, tighter-spaced version of medium label style. */
|
|
8061
|
+
--dt-typography-label-md-plain-compact-text-case: none; /* A non-bolded, tighter-spaced version of medium label style. */
|
|
8062
|
+
--dt-typography-label-sm-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Smaller text style for labels when space is limited or for secondary information or to convey a slightly lower hierachy. */
|
|
8063
|
+
--dt-typography-label-sm-font-weight: 600; /* Smaller text style for labels when space is limited or for secondary information or to convey a slightly lower hierachy. */
|
|
8064
|
+
--dt-typography-label-sm-line-height: 1.4; /* Smaller text style for labels when space is limited or for secondary information or to convey a slightly lower hierachy. */
|
|
8065
|
+
--dt-typography-label-sm-font-size: 1.2rem; /* Smaller text style for labels when space is limited or for secondary information or to convey a slightly lower hierachy. */
|
|
8066
|
+
--dt-typography-label-sm-text-case: none; /* Smaller text style for labels when space is limited or for secondary information or to convey a slightly lower hierachy. */
|
|
8067
|
+
--dt-typography-label-sm-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of small label style. */
|
|
8068
|
+
--dt-typography-label-sm-compact-font-weight: 600; /* A tighter-spaced version of small label style. */
|
|
8069
|
+
--dt-typography-label-sm-compact-line-height: 1.2; /* A tighter-spaced version of small label style. */
|
|
8070
|
+
--dt-typography-label-sm-compact-font-size: 1.2rem; /* A tighter-spaced version of small label style. */
|
|
8071
|
+
--dt-typography-label-sm-compact-text-case: none; /* A tighter-spaced version of small label style. */
|
|
8072
|
+
--dt-typography-label-sm-plain-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A non-bold version of small label style. */
|
|
8073
|
+
--dt-typography-label-sm-plain-font-weight: 400; /* A non-bold version of small label style. */
|
|
8074
|
+
--dt-typography-label-sm-plain-line-height: 1.4; /* A non-bold version of small label style. */
|
|
8075
|
+
--dt-typography-label-sm-plain-font-size: 1.2rem; /* A non-bold version of small label style. */
|
|
8076
|
+
--dt-typography-label-sm-plain-text-case: none; /* A non-bold version of small label style. */
|
|
8077
|
+
--dt-typography-label-sm-plain-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A non-bolded, tighter-spaced version of small label style. */
|
|
8078
|
+
--dt-typography-label-sm-plain-compact-font-weight: 400; /* A non-bolded, tighter-spaced version of small label style. */
|
|
8079
|
+
--dt-typography-label-sm-plain-compact-line-height: 1.2; /* A non-bolded, tighter-spaced version of small label style. */
|
|
8080
|
+
--dt-typography-label-sm-plain-compact-font-size: 1.2rem; /* A non-bolded, tighter-spaced version of small label style. */
|
|
8081
|
+
--dt-typography-label-sm-plain-compact-text-case: none; /* A non-bolded, tighter-spaced version of small label style. */
|
|
8082
|
+
--dt-typography-helper-md-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Base default medium-sized text style for supplementary contextual information. */
|
|
8083
|
+
--dt-typography-helper-md-font-weight: 400; /* Base default medium-sized text style for supplementary contextual information. */
|
|
8084
|
+
--dt-typography-helper-md-line-height: 1.4; /* Base default medium-sized text style for supplementary contextual information. */
|
|
8085
|
+
--dt-typography-helper-md-font-size: 1.5rem; /* Base default medium-sized text style for supplementary contextual information. */
|
|
8086
|
+
--dt-typography-helper-md-text-case: none; /* Base default medium-sized text style for supplementary contextual information. */
|
|
8087
|
+
--dt-typography-helper-sm-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Smaller text size for subtle guidance or additional context, minimizing visual disruption. */
|
|
8088
|
+
--dt-typography-helper-sm-font-weight: 400; /* Smaller text size for subtle guidance or additional context, minimizing visual disruption. */
|
|
8089
|
+
--dt-typography-helper-sm-line-height: 1.2; /* Smaller text size for subtle guidance or additional context, minimizing visual disruption. */
|
|
8090
|
+
--dt-typography-helper-sm-font-size: 1.2rem; /* Smaller text size for subtle guidance or additional context, minimizing visual disruption. */
|
|
8091
|
+
--dt-typography-helper-sm-text-case: none; /* Smaller text size for subtle guidance or additional context, minimizing visual disruption. */
|
|
8092
|
+
--dt-typography-code-md-font-family: SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace; /* Base default medium-sized text style for monospace code snippets of technical content. */
|
|
8093
|
+
--dt-typography-code-md-font-weight: 400; /* Base default medium-sized text style for monospace code snippets of technical content. */
|
|
8094
|
+
--dt-typography-code-md-line-height: 1.2; /* Base default medium-sized text style for monospace code snippets of technical content. */
|
|
8095
|
+
--dt-typography-code-md-font-size: 1.5rem; /* Base default medium-sized text style for monospace code snippets of technical content. */
|
|
8096
|
+
--dt-typography-code-md-text-case: none; /* Base default medium-sized text style for monospace code snippets of technical content. */
|
|
8097
|
+
--dt-typography-code-sm-font-family: SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace; /* Smaller text size for monospace code, suitable for inline references or less prominent code examples. */
|
|
8098
|
+
--dt-typography-code-sm-font-weight: 400; /* Smaller text size for monospace code, suitable for inline references or less prominent code examples. */
|
|
8099
|
+
--dt-typography-code-sm-line-height: 1.2; /* Smaller text size for monospace code, suitable for inline references or less prominent code examples. */
|
|
8100
|
+
--dt-typography-code-sm-font-size: 1.2rem; /* Smaller text size for monospace code, suitable for inline references or less prominent code examples. */
|
|
8101
|
+
--dt-typography-code-sm-text-case: none; /* Smaller text size for monospace code, suitable for inline references or less prominent code examples. */
|
|
8086
8102
|
--dt-inputs-size-border-default: 0.15rem;
|
|
8087
8103
|
--dt-inputs-size-border-status: 0.2rem;
|
|
8088
8104
|
--dt-inputs-size-radius-xs: 0.4rem;
|
|
@@ -8261,7 +8277,7 @@ body {
|
|
|
8261
8277
|
|
|
8262
8278
|
/**
|
|
8263
8279
|
* Do not edit directly
|
|
8264
|
-
* Generated on
|
|
8280
|
+
* Generated on Fri, 15 Mar 2024 00:00:46 GMT
|
|
8265
8281
|
*/
|
|
8266
8282
|
|
|
8267
8283
|
.dialtone-theme-dark {
|
|
@@ -8865,141 +8881,161 @@ body {
|
|
|
8865
8881
|
--dt-shadow-focus-inset-1-spread: 0.3rem;
|
|
8866
8882
|
--dt-shadow-focus-inset-1-color: #51A0FE;
|
|
8867
8883
|
--dt-shadow-focus-inset-1-type: innerShadow;
|
|
8868
|
-
--dt-typography-body-
|
|
8869
|
-
--dt-typography-body-
|
|
8870
|
-
--dt-typography-body-
|
|
8871
|
-
--dt-typography-body-
|
|
8872
|
-
--dt-typography-body-
|
|
8873
|
-
--dt-typography-body-
|
|
8874
|
-
--dt-typography-body-
|
|
8875
|
-
--dt-typography-body-
|
|
8876
|
-
--dt-typography-body-
|
|
8877
|
-
--dt-typography-body-
|
|
8878
|
-
--dt-typography-body-
|
|
8879
|
-
--dt-typography-body-
|
|
8880
|
-
--dt-typography-body-
|
|
8881
|
-
--dt-typography-body-
|
|
8882
|
-
--dt-typography-body-
|
|
8883
|
-
--dt-typography-body-compact-
|
|
8884
|
-
--dt-typography-body-compact-
|
|
8885
|
-
--dt-typography-body-compact-
|
|
8886
|
-
--dt-typography-body-compact-
|
|
8887
|
-
--dt-typography-body-compact-
|
|
8888
|
-
--dt-typography-headline-eyebrow-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
8889
|
-
--dt-typography-headline-eyebrow-font-weight: 400;
|
|
8890
|
-
--dt-typography-headline-eyebrow-line-height: 1.4;
|
|
8891
|
-
--dt-typography-headline-eyebrow-font-size: 1.2rem;
|
|
8892
|
-
--dt-typography-headline-eyebrow-text-case: uppercase;
|
|
8893
|
-
--dt-typography-headline-
|
|
8894
|
-
--dt-typography-headline-
|
|
8895
|
-
--dt-typography-headline-
|
|
8896
|
-
--dt-typography-headline-
|
|
8897
|
-
--dt-typography-headline-
|
|
8898
|
-
--dt-typography-headline-
|
|
8899
|
-
--dt-typography-headline-
|
|
8900
|
-
--dt-typography-headline-
|
|
8901
|
-
--dt-typography-headline-
|
|
8902
|
-
--dt-typography-headline-
|
|
8903
|
-
--dt-typography-headline-
|
|
8904
|
-
--dt-typography-headline-
|
|
8905
|
-
--dt-typography-headline-
|
|
8906
|
-
--dt-typography-headline-
|
|
8907
|
-
--dt-typography-headline-
|
|
8908
|
-
--dt-typography-headline-
|
|
8909
|
-
--dt-typography-headline-
|
|
8910
|
-
--dt-typography-headline-
|
|
8911
|
-
--dt-typography-headline-
|
|
8912
|
-
--dt-typography-headline-
|
|
8913
|
-
--dt-typography-headline-
|
|
8914
|
-
--dt-typography-headline-
|
|
8915
|
-
--dt-typography-headline-
|
|
8916
|
-
--dt-typography-headline-
|
|
8917
|
-
--dt-typography-headline-
|
|
8918
|
-
--dt-typography-headline-
|
|
8919
|
-
--dt-typography-headline-
|
|
8920
|
-
--dt-typography-headline-
|
|
8921
|
-
--dt-typography-headline-
|
|
8922
|
-
--dt-typography-headline-
|
|
8923
|
-
--dt-typography-headline-
|
|
8924
|
-
--dt-typography-headline-
|
|
8925
|
-
--dt-typography-headline-
|
|
8926
|
-
--dt-typography-headline-
|
|
8927
|
-
--dt-typography-headline-
|
|
8928
|
-
--dt-typography-headline-
|
|
8929
|
-
--dt-typography-headline-
|
|
8930
|
-
--dt-typography-headline-
|
|
8931
|
-
--dt-typography-headline-
|
|
8932
|
-
--dt-typography-headline-
|
|
8933
|
-
--dt-typography-headline-compact-
|
|
8934
|
-
--dt-typography-headline-compact-
|
|
8935
|
-
--dt-typography-headline-compact-
|
|
8936
|
-
--dt-typography-headline-compact-
|
|
8937
|
-
--dt-typography-headline-compact-
|
|
8938
|
-
--dt-typography-headline-
|
|
8939
|
-
--dt-typography-headline-
|
|
8940
|
-
--dt-typography-headline-
|
|
8941
|
-
--dt-typography-headline-
|
|
8942
|
-
--dt-typography-headline-
|
|
8943
|
-
--dt-typography-
|
|
8944
|
-
--dt-typography-
|
|
8945
|
-
--dt-typography-
|
|
8946
|
-
--dt-typography-
|
|
8947
|
-
--dt-typography-
|
|
8948
|
-
--dt-typography-
|
|
8949
|
-
--dt-typography-
|
|
8950
|
-
--dt-typography-
|
|
8951
|
-
--dt-typography-
|
|
8952
|
-
--dt-typography-
|
|
8953
|
-
--dt-typography-
|
|
8954
|
-
--dt-typography-
|
|
8955
|
-
--dt-typography-
|
|
8956
|
-
--dt-typography-
|
|
8957
|
-
--dt-typography-
|
|
8958
|
-
--dt-typography-
|
|
8959
|
-
--dt-typography-
|
|
8960
|
-
--dt-typography-
|
|
8961
|
-
--dt-typography-
|
|
8962
|
-
--dt-typography-
|
|
8963
|
-
--dt-typography-label-
|
|
8964
|
-
--dt-typography-label-
|
|
8965
|
-
--dt-typography-label-
|
|
8966
|
-
--dt-typography-label-
|
|
8967
|
-
--dt-typography-label-
|
|
8968
|
-
--dt-typography-label-compact-
|
|
8969
|
-
--dt-typography-label-compact-
|
|
8970
|
-
--dt-typography-label-compact-
|
|
8971
|
-
--dt-typography-label-compact-
|
|
8972
|
-
--dt-typography-label-compact-
|
|
8973
|
-
--dt-typography-label-plain-
|
|
8974
|
-
--dt-typography-label-plain-
|
|
8975
|
-
--dt-typography-label-plain-
|
|
8976
|
-
--dt-typography-label-plain-
|
|
8977
|
-
--dt-typography-label-plain-
|
|
8978
|
-
--dt-typography-label-plain-
|
|
8979
|
-
--dt-typography-label-plain-
|
|
8980
|
-
--dt-typography-label-plain-
|
|
8981
|
-
--dt-typography-label-plain-
|
|
8982
|
-
--dt-typography-label-plain-
|
|
8983
|
-
--dt-typography-
|
|
8984
|
-
--dt-typography-
|
|
8985
|
-
--dt-typography-
|
|
8986
|
-
--dt-typography-
|
|
8987
|
-
--dt-typography-
|
|
8988
|
-
--dt-typography-
|
|
8989
|
-
--dt-typography-
|
|
8990
|
-
--dt-typography-
|
|
8991
|
-
--dt-typography-
|
|
8992
|
-
--dt-typography-
|
|
8993
|
-
--dt-typography-
|
|
8994
|
-
--dt-typography-
|
|
8995
|
-
--dt-typography-
|
|
8996
|
-
--dt-typography-
|
|
8997
|
-
--dt-typography-
|
|
8998
|
-
--dt-typography-
|
|
8999
|
-
--dt-typography-
|
|
9000
|
-
--dt-typography-
|
|
9001
|
-
--dt-typography-
|
|
9002
|
-
--dt-typography-
|
|
8884
|
+
--dt-typography-body-md-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Base default medium text style for main content. */
|
|
8885
|
+
--dt-typography-body-md-font-weight: 400; /* Base default medium text style for main content. */
|
|
8886
|
+
--dt-typography-body-md-line-height: 1.6; /* Base default medium text style for main content. */
|
|
8887
|
+
--dt-typography-body-md-font-size: 1.5rem; /* Base default medium text style for main content. */
|
|
8888
|
+
--dt-typography-body-md-text-case: none; /* Base default medium text style for main content. */
|
|
8889
|
+
--dt-typography-body-md-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of medium body style. */
|
|
8890
|
+
--dt-typography-body-md-compact-font-weight: 400; /* A tighter-spaced version of medium body style. */
|
|
8891
|
+
--dt-typography-body-md-compact-line-height: 1.4; /* A tighter-spaced version of medium body style. */
|
|
8892
|
+
--dt-typography-body-md-compact-font-size: 1.5rem; /* A tighter-spaced version of medium body style. */
|
|
8893
|
+
--dt-typography-body-md-compact-text-case: none; /* A tighter-spaced version of medium body style. */
|
|
8894
|
+
--dt-typography-body-sm-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Reduced small text style for less prominent or adjacent content. */
|
|
8895
|
+
--dt-typography-body-sm-font-weight: 400; /* Reduced small text style for less prominent or adjacent content. */
|
|
8896
|
+
--dt-typography-body-sm-line-height: 1.4; /* Reduced small text style for less prominent or adjacent content. */
|
|
8897
|
+
--dt-typography-body-sm-font-size: 1.2rem; /* Reduced small text style for less prominent or adjacent content. */
|
|
8898
|
+
--dt-typography-body-sm-text-case: none; /* Reduced small text style for less prominent or adjacent content. */
|
|
8899
|
+
--dt-typography-body-sm-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of small body style. */
|
|
8900
|
+
--dt-typography-body-sm-compact-font-weight: 400; /* A tighter-spaced version of small body style. */
|
|
8901
|
+
--dt-typography-body-sm-compact-line-height: 1.2; /* A tighter-spaced version of small body style. */
|
|
8902
|
+
--dt-typography-body-sm-compact-font-size: 1.2rem; /* A tighter-spaced version of small body style. */
|
|
8903
|
+
--dt-typography-body-sm-compact-text-case: none; /* A tighter-spaced version of small body style. */
|
|
8904
|
+
--dt-typography-headline-eyebrow-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Visually concise and uppercase title text used above a paired headline. Also known as a kicker or overline. */
|
|
8905
|
+
--dt-typography-headline-eyebrow-font-weight: 400; /* Visually concise and uppercase title text used above a paired headline. Also known as a kicker or overline. */
|
|
8906
|
+
--dt-typography-headline-eyebrow-line-height: 1.4; /* Visually concise and uppercase title text used above a paired headline. Also known as a kicker or overline. */
|
|
8907
|
+
--dt-typography-headline-eyebrow-font-size: 1.2rem; /* Visually concise and uppercase title text used above a paired headline. Also known as a kicker or overline. */
|
|
8908
|
+
--dt-typography-headline-eyebrow-text-case: uppercase; /* Visually concise and uppercase title text used above a paired headline. Also known as a kicker or overline. */
|
|
8909
|
+
--dt-typography-headline-sm-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Smaller text size for secondary information or subheadings. */
|
|
8910
|
+
--dt-typography-headline-sm-font-weight: 700; /* Smaller text size for secondary information or subheadings. */
|
|
8911
|
+
--dt-typography-headline-sm-line-height: 1.4; /* Smaller text size for secondary information or subheadings. */
|
|
8912
|
+
--dt-typography-headline-sm-font-size: 1.2rem; /* Smaller text size for secondary information or subheadings. */
|
|
8913
|
+
--dt-typography-headline-sm-text-case: none; /* Smaller text size for secondary information or subheadings. */
|
|
8914
|
+
--dt-typography-headline-sm-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of small headline style. */
|
|
8915
|
+
--dt-typography-headline-sm-compact-font-weight: 700; /* A tighter-spaced version of small headline style. */
|
|
8916
|
+
--dt-typography-headline-sm-compact-line-height: 1.2; /* A tighter-spaced version of small headline style. */
|
|
8917
|
+
--dt-typography-headline-sm-compact-font-size: 1.2rem; /* A tighter-spaced version of small headline style. */
|
|
8918
|
+
--dt-typography-headline-sm-compact-text-case: none; /* A tighter-spaced version of small headline style. */
|
|
8919
|
+
--dt-typography-headline-sm-soft-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A softer font weight version of small headline style. */
|
|
8920
|
+
--dt-typography-headline-sm-soft-font-weight: 500; /* A softer font weight version of small headline style. */
|
|
8921
|
+
--dt-typography-headline-sm-soft-line-height: 1.4; /* A softer font weight version of small headline style. */
|
|
8922
|
+
--dt-typography-headline-sm-soft-font-size: 1.2rem; /* A softer font weight version of small headline style. */
|
|
8923
|
+
--dt-typography-headline-sm-soft-text-case: none; /* A softer font weight version of small headline style. */
|
|
8924
|
+
--dt-typography-headline-sm-soft-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A softer font weight, tighter-spaced version of small headline style. */
|
|
8925
|
+
--dt-typography-headline-sm-soft-compact-font-weight: 500; /* A softer font weight, tighter-spaced version of small headline style. */
|
|
8926
|
+
--dt-typography-headline-sm-soft-compact-line-height: 1.2; /* A softer font weight, tighter-spaced version of small headline style. */
|
|
8927
|
+
--dt-typography-headline-sm-soft-compact-font-size: 1.2rem; /* A softer font weight, tighter-spaced version of small headline style. */
|
|
8928
|
+
--dt-typography-headline-sm-soft-compact-text-case: none; /* A softer font weight, tighter-spaced version of small headline style. */
|
|
8929
|
+
--dt-typography-headline-md-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Medium-sized base text style for headlines. */
|
|
8930
|
+
--dt-typography-headline-md-font-weight: 700; /* Medium-sized base text style for headlines. */
|
|
8931
|
+
--dt-typography-headline-md-line-height: 1.6; /* Medium-sized base text style for headlines. */
|
|
8932
|
+
--dt-typography-headline-md-font-size: 1.5rem; /* Medium-sized base text style for headlines. */
|
|
8933
|
+
--dt-typography-headline-md-text-case: none; /* Medium-sized base text style for headlines. */
|
|
8934
|
+
--dt-typography-headline-md-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of medium headline style. */
|
|
8935
|
+
--dt-typography-headline-md-compact-font-weight: 700; /* A tighter-spaced version of medium headline style. */
|
|
8936
|
+
--dt-typography-headline-md-compact-line-height: 1.4; /* A tighter-spaced version of medium headline style. */
|
|
8937
|
+
--dt-typography-headline-md-compact-font-size: 1.5rem; /* A tighter-spaced version of medium headline style. */
|
|
8938
|
+
--dt-typography-headline-md-compact-text-case: none; /* A tighter-spaced version of medium headline style. */
|
|
8939
|
+
--dt-typography-headline-lg-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Large text style for headlines to attract attention. */
|
|
8940
|
+
--dt-typography-headline-lg-font-weight: 700; /* Large text style for headlines to attract attention. */
|
|
8941
|
+
--dt-typography-headline-lg-line-height: 1.6; /* Large text style for headlines to attract attention. */
|
|
8942
|
+
--dt-typography-headline-lg-font-size: 1.9rem; /* Large text style for headlines to attract attention. */
|
|
8943
|
+
--dt-typography-headline-lg-text-case: none; /* Large text style for headlines to attract attention. */
|
|
8944
|
+
--dt-typography-headline-lg-soft-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A softer font weight version of large headline style. */
|
|
8945
|
+
--dt-typography-headline-lg-soft-font-weight: 500; /* A softer font weight version of large headline style. */
|
|
8946
|
+
--dt-typography-headline-lg-soft-line-height: 1.6; /* A softer font weight version of large headline style. */
|
|
8947
|
+
--dt-typography-headline-lg-soft-font-size: 1.9rem; /* A softer font weight version of large headline style. */
|
|
8948
|
+
--dt-typography-headline-lg-soft-text-case: none; /* A softer font weight version of large headline style. */
|
|
8949
|
+
--dt-typography-headline-lg-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of large body style. */
|
|
8950
|
+
--dt-typography-headline-lg-compact-font-weight: 700; /* A tighter-spaced version of large body style. */
|
|
8951
|
+
--dt-typography-headline-lg-compact-line-height: 1.2; /* A tighter-spaced version of large body style. */
|
|
8952
|
+
--dt-typography-headline-lg-compact-font-size: 1.9rem; /* A tighter-spaced version of large body style. */
|
|
8953
|
+
--dt-typography-headline-lg-compact-text-case: none; /* A tighter-spaced version of large body style. */
|
|
8954
|
+
--dt-typography-headline-lg-soft-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A softer font weight, tighter spaced version of large headline style. */
|
|
8955
|
+
--dt-typography-headline-lg-soft-compact-font-weight: 500; /* A softer font weight, tighter spaced version of large headline style. */
|
|
8956
|
+
--dt-typography-headline-lg-soft-compact-line-height: 1.2; /* A softer font weight, tighter spaced version of large headline style. */
|
|
8957
|
+
--dt-typography-headline-lg-soft-compact-font-size: 1.9rem; /* A softer font weight, tighter spaced version of large headline style. */
|
|
8958
|
+
--dt-typography-headline-lg-soft-compact-text-case: none; /* A softer font weight, tighter spaced version of large headline style. */
|
|
8959
|
+
--dt-typography-headline-xl-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Extra large text style for high importance headlines. */
|
|
8960
|
+
--dt-typography-headline-xl-font-weight: 500; /* Extra large text style for high importance headlines. */
|
|
8961
|
+
--dt-typography-headline-xl-line-height: 1.2; /* Extra large text style for high importance headlines. */
|
|
8962
|
+
--dt-typography-headline-xl-font-size: 2.7rem; /* Extra large text style for high importance headlines. */
|
|
8963
|
+
--dt-typography-headline-xl-text-case: none; /* Extra large text style for high importance headlines. */
|
|
8964
|
+
--dt-typography-headline-xl-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of extra large headline style. */
|
|
8965
|
+
--dt-typography-headline-xl-compact-font-weight: 500; /* A tighter-spaced version of extra large headline style. */
|
|
8966
|
+
--dt-typography-headline-xl-compact-line-height: 1; /* A tighter-spaced version of extra large headline style. */
|
|
8967
|
+
--dt-typography-headline-xl-compact-font-size: 2.7rem; /* A tighter-spaced version of extra large headline style. */
|
|
8968
|
+
--dt-typography-headline-xl-compact-text-case: none; /* A tighter-spaced version of extra large headline style. */
|
|
8969
|
+
--dt-typography-headline-xxl-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Largest text style for extra extra large content. */
|
|
8970
|
+
--dt-typography-headline-xxl-font-weight: 500; /* Largest text style for extra extra large content. */
|
|
8971
|
+
--dt-typography-headline-xxl-line-height: 1.2; /* Largest text style for extra extra large content. */
|
|
8972
|
+
--dt-typography-headline-xxl-font-size: 3.8rem; /* Largest text style for extra extra large content. */
|
|
8973
|
+
--dt-typography-headline-xxl-text-case: none; /* Largest text style for extra extra large content. */
|
|
8974
|
+
--dt-typography-headline-xxl-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of extra extra large headline style. */
|
|
8975
|
+
--dt-typography-headline-xxl-compact-font-weight: 500; /* A tighter-spaced version of extra extra large headline style. */
|
|
8976
|
+
--dt-typography-headline-xxl-compact-line-height: 1; /* A tighter-spaced version of extra extra large headline style. */
|
|
8977
|
+
--dt-typography-headline-xxl-compact-font-size: 3.8rem; /* A tighter-spaced version of extra extra large headline style. */
|
|
8978
|
+
--dt-typography-headline-xxl-compact-text-case: none; /* A tighter-spaced version of extra extra large headline style. */
|
|
8979
|
+
--dt-typography-label-md-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Base default medium-sized text style for labels, providing clear identification and categorization. */
|
|
8980
|
+
--dt-typography-label-md-font-weight: 600; /* Base default medium-sized text style for labels, providing clear identification and categorization. */
|
|
8981
|
+
--dt-typography-label-md-line-height: 1.6; /* Base default medium-sized text style for labels, providing clear identification and categorization. */
|
|
8982
|
+
--dt-typography-label-md-font-size: 1.5rem; /* Base default medium-sized text style for labels, providing clear identification and categorization. */
|
|
8983
|
+
--dt-typography-label-md-text-case: none; /* Base default medium-sized text style for labels, providing clear identification and categorization. */
|
|
8984
|
+
--dt-typography-label-md-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of medium label style. */
|
|
8985
|
+
--dt-typography-label-md-compact-font-weight: 600; /* A tighter-spaced version of medium label style. */
|
|
8986
|
+
--dt-typography-label-md-compact-line-height: 1.4; /* A tighter-spaced version of medium label style. */
|
|
8987
|
+
--dt-typography-label-md-compact-font-size: 1.5rem; /* A tighter-spaced version of medium label style. */
|
|
8988
|
+
--dt-typography-label-md-compact-text-case: none; /* A tighter-spaced version of medium label style. */
|
|
8989
|
+
--dt-typography-label-md-plain-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A non-bold version of medium label style. */
|
|
8990
|
+
--dt-typography-label-md-plain-font-weight: 400; /* A non-bold version of medium label style. */
|
|
8991
|
+
--dt-typography-label-md-plain-line-height: 1.6; /* A non-bold version of medium label style. */
|
|
8992
|
+
--dt-typography-label-md-plain-font-size: 1.5rem; /* A non-bold version of medium label style. */
|
|
8993
|
+
--dt-typography-label-md-plain-text-case: none; /* A non-bold version of medium label style. */
|
|
8994
|
+
--dt-typography-label-md-plain-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A non-bolded, tighter-spaced version of medium label style. */
|
|
8995
|
+
--dt-typography-label-md-plain-compact-font-weight: 400; /* A non-bolded, tighter-spaced version of medium label style. */
|
|
8996
|
+
--dt-typography-label-md-plain-compact-line-height: 1.4; /* A non-bolded, tighter-spaced version of medium label style. */
|
|
8997
|
+
--dt-typography-label-md-plain-compact-font-size: 1.5rem; /* A non-bolded, tighter-spaced version of medium label style. */
|
|
8998
|
+
--dt-typography-label-md-plain-compact-text-case: none; /* A non-bolded, tighter-spaced version of medium label style. */
|
|
8999
|
+
--dt-typography-label-sm-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Smaller text style for labels when space is limited or for secondary information or to convey a slightly lower hierachy. */
|
|
9000
|
+
--dt-typography-label-sm-font-weight: 600; /* Smaller text style for labels when space is limited or for secondary information or to convey a slightly lower hierachy. */
|
|
9001
|
+
--dt-typography-label-sm-line-height: 1.4; /* Smaller text style for labels when space is limited or for secondary information or to convey a slightly lower hierachy. */
|
|
9002
|
+
--dt-typography-label-sm-font-size: 1.2rem; /* Smaller text style for labels when space is limited or for secondary information or to convey a slightly lower hierachy. */
|
|
9003
|
+
--dt-typography-label-sm-text-case: none; /* Smaller text style for labels when space is limited or for secondary information or to convey a slightly lower hierachy. */
|
|
9004
|
+
--dt-typography-label-sm-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A tighter-spaced version of small label style. */
|
|
9005
|
+
--dt-typography-label-sm-compact-font-weight: 600; /* A tighter-spaced version of small label style. */
|
|
9006
|
+
--dt-typography-label-sm-compact-line-height: 1.2; /* A tighter-spaced version of small label style. */
|
|
9007
|
+
--dt-typography-label-sm-compact-font-size: 1.2rem; /* A tighter-spaced version of small label style. */
|
|
9008
|
+
--dt-typography-label-sm-compact-text-case: none; /* A tighter-spaced version of small label style. */
|
|
9009
|
+
--dt-typography-label-sm-plain-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A non-bold version of small label style. */
|
|
9010
|
+
--dt-typography-label-sm-plain-font-weight: 400; /* A non-bold version of small label style. */
|
|
9011
|
+
--dt-typography-label-sm-plain-line-height: 1.4; /* A non-bold version of small label style. */
|
|
9012
|
+
--dt-typography-label-sm-plain-font-size: 1.2rem; /* A non-bold version of small label style. */
|
|
9013
|
+
--dt-typography-label-sm-plain-text-case: none; /* A non-bold version of small label style. */
|
|
9014
|
+
--dt-typography-label-sm-plain-compact-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* A non-bolded, tighter-spaced version of small label style. */
|
|
9015
|
+
--dt-typography-label-sm-plain-compact-font-weight: 400; /* A non-bolded, tighter-spaced version of small label style. */
|
|
9016
|
+
--dt-typography-label-sm-plain-compact-line-height: 1.2; /* A non-bolded, tighter-spaced version of small label style. */
|
|
9017
|
+
--dt-typography-label-sm-plain-compact-font-size: 1.2rem; /* A non-bolded, tighter-spaced version of small label style. */
|
|
9018
|
+
--dt-typography-label-sm-plain-compact-text-case: none; /* A non-bolded, tighter-spaced version of small label style. */
|
|
9019
|
+
--dt-typography-helper-md-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Base default medium-sized text style for supplementary contextual information. */
|
|
9020
|
+
--dt-typography-helper-md-font-weight: 400; /* Base default medium-sized text style for supplementary contextual information. */
|
|
9021
|
+
--dt-typography-helper-md-line-height: 1.4; /* Base default medium-sized text style for supplementary contextual information. */
|
|
9022
|
+
--dt-typography-helper-md-font-size: 1.5rem; /* Base default medium-sized text style for supplementary contextual information. */
|
|
9023
|
+
--dt-typography-helper-md-text-case: none; /* Base default medium-sized text style for supplementary contextual information. */
|
|
9024
|
+
--dt-typography-helper-sm-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; /* Smaller text size for subtle guidance or additional context, minimizing visual disruption. */
|
|
9025
|
+
--dt-typography-helper-sm-font-weight: 400; /* Smaller text size for subtle guidance or additional context, minimizing visual disruption. */
|
|
9026
|
+
--dt-typography-helper-sm-line-height: 1.2; /* Smaller text size for subtle guidance or additional context, minimizing visual disruption. */
|
|
9027
|
+
--dt-typography-helper-sm-font-size: 1.2rem; /* Smaller text size for subtle guidance or additional context, minimizing visual disruption. */
|
|
9028
|
+
--dt-typography-helper-sm-text-case: none; /* Smaller text size for subtle guidance or additional context, minimizing visual disruption. */
|
|
9029
|
+
--dt-typography-code-md-font-family: SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace; /* Base default medium-sized text style for monospace code snippets of technical content. */
|
|
9030
|
+
--dt-typography-code-md-font-weight: 400; /* Base default medium-sized text style for monospace code snippets of technical content. */
|
|
9031
|
+
--dt-typography-code-md-line-height: 1.2; /* Base default medium-sized text style for monospace code snippets of technical content. */
|
|
9032
|
+
--dt-typography-code-md-font-size: 1.5rem; /* Base default medium-sized text style for monospace code snippets of technical content. */
|
|
9033
|
+
--dt-typography-code-md-text-case: none; /* Base default medium-sized text style for monospace code snippets of technical content. */
|
|
9034
|
+
--dt-typography-code-sm-font-family: SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace; /* Smaller text size for monospace code, suitable for inline references or less prominent code examples. */
|
|
9035
|
+
--dt-typography-code-sm-font-weight: 400; /* Smaller text size for monospace code, suitable for inline references or less prominent code examples. */
|
|
9036
|
+
--dt-typography-code-sm-line-height: 1.2; /* Smaller text size for monospace code, suitable for inline references or less prominent code examples. */
|
|
9037
|
+
--dt-typography-code-sm-font-size: 1.2rem; /* Smaller text size for monospace code, suitable for inline references or less prominent code examples. */
|
|
9038
|
+
--dt-typography-code-sm-text-case: none; /* Smaller text size for monospace code, suitable for inline references or less prominent code examples. */
|
|
9003
9039
|
--dt-inputs-size-border-default: 0.15rem;
|
|
9004
9040
|
--dt-inputs-size-border-status: 0.2rem;
|
|
9005
9041
|
--dt-inputs-size-radius-xs: 0.4rem;
|
|
@@ -14908,32 +14944,37 @@ body {
|
|
|
14908
14944
|
--zi-modal: 600;
|
|
14909
14945
|
--zi-modal-element: 650;
|
|
14910
14946
|
--zi-notification: 700;
|
|
14911
|
-
--dt-typography-body-
|
|
14912
|
-
--dt-typography-body-
|
|
14913
|
-
--dt-typography-body-
|
|
14914
|
-
--dt-typography-body-compact
|
|
14915
|
-
--dt-typography-headline-
|
|
14916
|
-
--dt-typography-headline-
|
|
14917
|
-
--dt-typography-headline-
|
|
14918
|
-
--dt-typography-headline-
|
|
14919
|
-
--dt-typography-headline-
|
|
14920
|
-
--dt-typography-headline-
|
|
14921
|
-
--dt-typography-headline-compact
|
|
14922
|
-
--dt-typography-headline-
|
|
14923
|
-
--dt-typography-headline-
|
|
14924
|
-
--dt-typography-headline-compact
|
|
14925
|
-
--dt-typography-
|
|
14926
|
-
--dt-typography-
|
|
14927
|
-
--dt-typography-
|
|
14928
|
-
--dt-typography-
|
|
14929
|
-
--dt-typography-
|
|
14930
|
-
--dt-typography-label-
|
|
14931
|
-
--dt-typography-label-
|
|
14932
|
-
--dt-typography-label-plain
|
|
14933
|
-
--dt-typography-
|
|
14934
|
-
--dt-typography-
|
|
14935
|
-
--dt-typography-
|
|
14936
|
-
--dt-typography-
|
|
14947
|
+
--dt-typography-body-md: var(--dt-typography-body-md-font-weight) var(--dt-typography-body-md-font-size)/var(--dt-typography-body-md-line-height) var(--dt-typography-body-md-font-family);
|
|
14948
|
+
--dt-typography-body-md-compact: var(--dt-typography-body-md-compact-font-weight) var(--dt-typography-body-md-compact-font-size)/var(--dt-typography-body-md-compact-line-height) var(--dt-typography-body-md-compact-font-family);
|
|
14949
|
+
--dt-typography-body-sm: var(--dt-typography-body-sm-font-weight) var(--dt-typography-body-sm-font-size)/var(--dt-typography-body-sm-line-height) var(--dt-typography-body-sm-font-family);
|
|
14950
|
+
--dt-typography-body-sm-compact: var(--dt-typography-body-sm-compact-font-weight) var(--dt-typography-body-sm-compact-font-size)/var(--dt-typography-body-sm-compact-line-height) var(--dt-typography-body-sm-compact-font-family);
|
|
14951
|
+
--dt-typography-headline-eyebrow: var(--dt-typography-headline-eyebrow-font-weight) var(--dt-typography-headline-eyebrow-font-size)/var(--dt-typography-headline-eyebrow-line-height) var(--dt-typography-headline-eyebrow-font-family);
|
|
14952
|
+
--dt-typography-headline-sm: var(--dt-typography-headline-sm-font-weight) var(--dt-typography-headline-sm-font-size)/var(--dt-typography-headline-sm-line-height) var(--dt-typography-headline-sm-font-family);
|
|
14953
|
+
--dt-typography-headline-sm-compact: var(--dt-typography-headline-sm-compact-font-weight) var(--dt-typography-headline-sm-compact-font-size)/var(--dt-typography-headline-sm-compact-line-height) var(--dt-typography-headline-sm-compact-font-family);
|
|
14954
|
+
--dt-typography-headline-sm-soft: var(--dt-typography-headline-sm-soft-font-weight) var(--dt-typography-headline-sm-soft-font-size)/var(--dt-typography-headline-sm-soft-line-height) var(--dt-typography-headline-sm-soft-font-family);
|
|
14955
|
+
--dt-typography-headline-sm-soft-compact: var(--dt-typography-headline-sm-soft-compact-font-weight) var(--dt-typography-headline-sm-soft-compact-font-size)/var(--dt-typography-headline-sm-soft-compact-line-height) var(--dt-typography-headline-sm-soft-compact-font-family);
|
|
14956
|
+
--dt-typography-headline-md: var(--dt-typography-headline-md-font-weight) var(--dt-typography-headline-md-font-size)/var(--dt-typography-headline-md-line-height) var(--dt-typography-headline-md-font-family);
|
|
14957
|
+
--dt-typography-headline-md-compact: var(--dt-typography-headline-md-compact-font-weight) var(--dt-typography-headline-md-compact-font-size)/var(--dt-typography-headline-md-compact-line-height) var(--dt-typography-headline-md-compact-font-family);
|
|
14958
|
+
--dt-typography-headline-lg: var(--dt-typography-headline-lg-font-weight) var(--dt-typography-headline-lg-font-size)/var(--dt-typography-headline-lg-line-height) var(--dt-typography-headline-lg-font-family);
|
|
14959
|
+
--dt-typography-headline-lg-soft: var(--dt-typography-headline-lg-soft-font-weight) var(--dt-typography-headline-lg-soft-font-size)/var(--dt-typography-headline-lg-soft-line-height) var(--dt-typography-headline-lg-soft-font-family);
|
|
14960
|
+
--dt-typography-headline-lg-compact: var(--dt-typography-headline-lg-compact-font-weight) var(--dt-typography-headline-lg-compact-font-size)/var(--dt-typography-headline-lg-compact-line-height) var(--dt-typography-headline-lg-compact-font-family);
|
|
14961
|
+
--dt-typography-headline-lg-soft-compact: var(--dt-typography-headline-lg-soft-compact-font-weight) var(--dt-typography-headline-lg-soft-compact-font-size)/var(--dt-typography-headline-lg-soft-compact-line-height) var(--dt-typography-headline-lg-soft-compact-font-family);
|
|
14962
|
+
--dt-typography-headline-xl: var(--dt-typography-headline-xl-font-weight) var(--dt-typography-headline-xl-font-size)/var(--dt-typography-headline-xl-line-height) var(--dt-typography-headline-xl-font-family);
|
|
14963
|
+
--dt-typography-headline-xl-compact: var(--dt-typography-headline-xl-compact-font-weight) var(--dt-typography-headline-xl-compact-font-size)/var(--dt-typography-headline-xl-compact-line-height) var(--dt-typography-headline-xl-compact-font-family);
|
|
14964
|
+
--dt-typography-headline-xxl: var(--dt-typography-headline-xxl-font-weight) var(--dt-typography-headline-xxl-font-size)/var(--dt-typography-headline-xxl-line-height) var(--dt-typography-headline-xxl-font-family);
|
|
14965
|
+
--dt-typography-headline-xxl-compact: var(--dt-typography-headline-xxl-compact-font-weight) var(--dt-typography-headline-xxl-compact-font-size)/var(--dt-typography-headline-xxl-compact-line-height) var(--dt-typography-headline-xxl-compact-font-family);
|
|
14966
|
+
--dt-typography-label-md: var(--dt-typography-label-md-font-weight) var(--dt-typography-label-md-font-size)/var(--dt-typography-label-md-line-height) var(--dt-typography-label-md-font-family);
|
|
14967
|
+
--dt-typography-label-md-compact: var(--dt-typography-label-md-compact-font-weight) var(--dt-typography-label-md-compact-font-size)/var(--dt-typography-label-md-compact-line-height) var(--dt-typography-label-md-compact-font-family);
|
|
14968
|
+
--dt-typography-label-md-plain: var(--dt-typography-label-md-plain-font-weight) var(--dt-typography-label-md-plain-font-size)/var(--dt-typography-label-md-plain-line-height) var(--dt-typography-label-md-plain-font-family);
|
|
14969
|
+
--dt-typography-label-md-plain-compact: var(--dt-typography-label-md-plain-compact-font-weight) var(--dt-typography-label-md-plain-compact-font-size)/var(--dt-typography-label-md-plain-compact-line-height) var(--dt-typography-label-md-plain-compact-font-family);
|
|
14970
|
+
--dt-typography-label-sm: var(--dt-typography-label-sm-font-weight) var(--dt-typography-label-sm-font-size)/var(--dt-typography-label-sm-line-height) var(--dt-typography-label-sm-font-family);
|
|
14971
|
+
--dt-typography-label-sm-compact: var(--dt-typography-label-sm-compact-font-weight) var(--dt-typography-label-sm-compact-font-size)/var(--dt-typography-label-sm-compact-line-height) var(--dt-typography-label-sm-compact-font-family);
|
|
14972
|
+
--dt-typography-label-sm-plain: var(--dt-typography-label-sm-plain-font-weight) var(--dt-typography-label-sm-plain-font-size)/var(--dt-typography-label-sm-plain-line-height) var(--dt-typography-label-sm-plain-font-family);
|
|
14973
|
+
--dt-typography-label-sm-plain-compact: var(--dt-typography-label-sm-plain-compact-font-weight) var(--dt-typography-label-sm-plain-compact-font-size)/var(--dt-typography-label-sm-plain-compact-line-height) var(--dt-typography-label-sm-plain-compact-font-family);
|
|
14974
|
+
--dt-typography-helper-md: var(--dt-typography-helper-md-font-weight) var(--dt-typography-helper-md-font-size)/var(--dt-typography-helper-md-line-height) var(--dt-typography-helper-md-font-family);
|
|
14975
|
+
--dt-typography-helper-sm: var(--dt-typography-helper-sm-font-weight) var(--dt-typography-helper-sm-font-size)/var(--dt-typography-helper-sm-line-height) var(--dt-typography-helper-sm-font-family);
|
|
14976
|
+
--dt-typography-code-md: var(--dt-typography-code-md-font-weight) var(--dt-typography-code-md-font-size)/var(--dt-typography-code-md-line-height) var(--dt-typography-code-md-font-family);
|
|
14977
|
+
--dt-typography-code-sm: var(--dt-typography-code-sm-font-weight) var(--dt-typography-code-sm-font-size)/var(--dt-typography-code-sm-line-height) var(--dt-typography-code-sm-font-family);
|
|
14937
14978
|
}
|
|
14938
14979
|
|
|
14939
14980
|
.dialtone-theme-dark {
|