1mpacto-react-ui 0.2.0-beta.9 → 1.0.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/dist/assets/_colors.scss +80 -0
- package/dist/assets/_mixins.scss +32 -5
- package/dist/assets/_typography.scss +582 -0
- package/dist/assets/colors.css +40 -0
- package/dist/assets/core.css +1 -1
- package/dist/assets/fontfamily.css +1 -1
- package/dist/assets/fonts/PlusJakartaSans-Italic.ttf +0 -0
- package/dist/assets/fonts/PlusJakartaSans.ttf +0 -0
- package/dist/assets/style.css +1 -1
- package/dist/assets/toast.css +98 -194
- package/dist/assets/typography.css +96 -0
- package/dist/index.cjs +120 -117
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +27703 -27059
- package/dist/package.json.d.ts +46 -47
- package/dist/src/components/Alert/index.d.ts +1 -0
- package/dist/src/components/Badges/Badges.config.d.ts +57 -0
- package/dist/src/components/Badges/Badges.d.ts +1 -0
- package/dist/src/components/Badges/Badges.stories.d.ts +117 -2
- package/dist/src/components/Breadcrumbs/Breadcrumbs.config.d.ts +113 -0
- package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +2 -1
- package/dist/src/components/Breadcrumbs/Breadcrumbs.stories.d.ts +221 -6
- package/dist/src/components/Button/Button.config.d.ts +70 -0
- package/dist/src/components/Button/Button.d.ts +1 -0
- package/dist/src/components/Button/Button.stories.d.ts +129 -4
- package/dist/src/components/ButtonIcon/ButtonIcon.config.d.ts +53 -0
- package/dist/src/components/ButtonIcon/ButtonIcon.d.ts +1 -0
- package/dist/src/components/ButtonIcon/ButtonIcon.stories.d.ts +123 -4
- package/dist/src/components/ButtonPopover/ButtonPopover.d.ts +1 -0
- package/dist/src/components/ButtonPopover/ButtonPopover.stories.d.ts +258 -2
- package/dist/src/components/Calendar/Calendar.d.ts +3 -1
- package/dist/src/components/Calendar/Calendar.stories.d.ts +283 -2
- package/dist/src/components/Calendar/CalendarButton.d.ts +1 -0
- package/dist/src/components/Calendar/CalendarCell.d.ts +1 -0
- package/dist/src/components/Calendar/CalendarMonth.d.ts +1 -0
- package/dist/src/components/Calendar/CalendarRange.d.ts +1 -0
- package/dist/src/components/Calendar/CalendarYear.d.ts +1 -0
- package/dist/src/components/Chart/DoughnutChart.d.ts +1 -0
- package/dist/src/components/Chart/GradientBarChart.d.ts +1 -0
- package/dist/src/components/Chart/GradientBarChart.stories.d.ts +71 -4
- package/dist/src/components/Chart/GradientLineChart.d.ts +1 -0
- package/dist/src/components/Chart/GradientLineChart.stories.d.ts +82 -4
- package/dist/src/components/Chart/LineChart.d.ts +1 -0
- package/dist/src/components/Chart/LineChart.stories.d.ts +35 -2
- package/dist/src/components/Chips/Chips.config.d.ts +35 -0
- package/dist/src/components/Chips/Chips.d.ts +1 -0
- package/dist/src/components/Chips/Chips.stories.d.ts +137 -2
- package/dist/src/components/Collapse/Collapse.d.ts +1 -0
- package/dist/src/components/Collapse/Collapse.stories.d.ts +89 -2
- package/dist/src/components/Collapse/CollapseV2.d.ts +1 -0
- package/dist/src/components/Collapse/CollapseV2.stories.d.ts +59 -2
- package/dist/src/components/Colors/Colors.stories.d.ts +2 -1
- package/dist/src/components/DatePicker/DatePicker.d.ts +1 -0
- package/dist/src/components/DatePicker/DatePicker.stories.d.ts +221 -2
- package/dist/src/components/DatePicker/DateRangePicker.d.ts +1 -0
- package/dist/src/components/DatePicker/FilterDate.d.ts +2 -1
- package/dist/src/components/DatePicker/FilterDate.stories.d.ts +232 -3
- package/dist/src/components/DatePicker/MonthYearPicker.d.ts +1 -0
- package/dist/src/components/DatePicker/MonthYearPicker.stories.d.ts +198 -2
- package/dist/src/components/ErrorMessage/ErrorMessage.config.d.ts +8 -0
- package/dist/src/components/ErrorMessage/ErrorMessage.d.ts +1 -0
- package/dist/src/components/ErrorMessage/ErrorMessage.stories.d.ts +39 -2
- package/dist/src/components/FilterContainer/FilterContainer.d.ts +1 -0
- package/dist/src/components/FilterContainer/FilterContainer.stories.d.ts +165 -0
- package/dist/src/components/Input/InputFloatingInner.config.d.ts +9 -0
- package/dist/src/components/Input/InputFloatingInner.d.ts +1 -0
- package/dist/src/components/Input/InputFloatingInner.stories.d.ts +177 -6
- package/dist/src/components/Input/InputInnerLabel.config.d.ts +8 -0
- package/dist/src/components/Input/InputInnerLabel.d.ts +5 -0
- package/dist/src/components/Input/InputInnerLabel.stories.d.ts +205 -0
- package/dist/src/components/Input/InputNative.config.d.ts +9 -0
- package/dist/src/components/Input/InputNative.d.ts +1 -0
- package/dist/src/components/Input/InputNative.stories.d.ts +149 -5
- package/dist/src/components/Input/InputReguler.config.d.ts +9 -0
- package/dist/src/components/Input/InputReguler.d.ts +1 -0
- package/dist/src/components/Input/InputReguler.stories.d.ts +177 -6
- package/dist/src/components/Modal/ModalDialog.config.d.ts +9 -0
- package/dist/src/components/Modal/ModalDialog.d.ts +1 -0
- package/dist/src/components/Modal/ModalDialog.stories.d.ts +121 -2
- package/dist/src/components/NumberFormat/NumberFormat.d.ts +1 -0
- package/dist/src/components/NumberFormat/NumberFormat.stories.d.ts +373 -18
- package/dist/src/components/Pagination/Pagination.config.d.ts +5 -0
- package/dist/src/components/Pagination/Pagination.d.ts +2 -1
- package/dist/src/components/Pagination/Pagination.stories.d.ts +200 -3
- package/dist/src/components/Popover/Popover.d.ts +1 -0
- package/dist/src/components/Popover/Popover.stories.d.ts +216 -7
- package/dist/src/components/PortalComponent/PortalComponent.d.ts +1 -0
- package/dist/src/components/PortalComponent/PortalComponent.stories.d.ts +61 -0
- package/dist/src/components/RadioCheckbox/CheckboxTable.d.ts +1 -0
- package/dist/src/components/RadioCheckbox/RadioCheckbox.config.d.ts +41 -0
- package/dist/src/components/RadioCheckbox/RadioCheckbox.d.ts +1 -0
- package/dist/src/components/RadioCheckbox/RadioCheckbox.stories.d.ts +230 -8
- package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.config.d.ts +25 -0
- package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.d.ts +1 -0
- package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.stories.d.ts +196 -4
- package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.config.d.ts +26 -0
- package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.d.ts +2 -1
- package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.stories.d.ts +5 -4
- package/dist/src/components/SelectDropdownContainer/styleConfig.d.ts +5 -1
- package/dist/src/components/Sidebar/ItemSidebar.config.d.ts +34 -0
- package/dist/src/components/Sidebar/ItemSidebar.d.ts +1 -0
- package/dist/src/components/Sidebar/Sidebar.config.d.ts +16 -0
- package/dist/src/components/Sidebar/Sidebar.d.ts +2 -1
- package/dist/src/components/Sidebar/Sidebar.stories.d.ts +6 -5
- package/dist/src/components/Step/Step.d.ts +1 -0
- package/dist/src/components/Step/Step.stories.d.ts +135 -2
- package/dist/src/components/Step/StepIndicator.d.ts +1 -0
- package/dist/src/components/Step/StepIndicator.stories.d.ts +148 -2
- package/dist/src/components/Switch/Switch.config.d.ts +26 -0
- package/dist/src/components/Switch/Switch.d.ts +1 -0
- package/dist/src/components/Switch/Switch.stories.d.ts +128 -2
- package/dist/src/components/Table/Table.config.d.ts +5 -0
- package/dist/src/components/Table/Table.d.ts +3 -3
- package/dist/src/components/Table/Table.stories.d.ts +71 -52
- package/dist/src/components/Table/TableSubMobile.d.ts +4 -0
- package/dist/src/components/Tabs/TabPanel.d.ts +1 -0
- package/dist/src/components/Tabs/Tabs.config.d.ts +31 -0
- package/dist/src/components/Tabs/Tabs.d.ts +2 -1
- package/dist/src/components/Tabs/Tabs.stories.d.ts +220 -3
- package/dist/src/components/TextEditor/TextEditor.d.ts +1 -0
- package/dist/src/components/TextEditor/TextEditor.stories.d.ts +59 -10
- package/dist/src/components/Textarea/Textarea.config.d.ts +31 -0
- package/dist/src/components/Textarea/Textarea.d.ts +1 -0
- package/dist/src/components/Textarea/Textarea.stories.d.ts +250 -3
- package/dist/src/components/Textarea/TextareaFloatingInner.config.d.ts +6 -0
- package/dist/src/components/Textarea/TextareaFloatingInner.d.ts +1 -0
- package/dist/src/components/Textarea/TextareaFloatingInner.stories.d.ts +260 -3
- package/dist/src/components/Textarea/TextareaInnerLabel.config.d.ts +7 -0
- package/dist/src/components/Textarea/TextareaInnerLabel.d.ts +5 -0
- package/dist/src/components/Textarea/TextareaInnerLabel.stories.d.ts +259 -0
- package/dist/src/components/TimeRange/TimeRange.d.ts +4 -0
- package/dist/src/components/TimeRange/TimeRange.stories.d.ts +186 -0
- package/dist/src/components/Timeline/Timeline.d.ts +1 -0
- package/dist/src/components/Timeline/Timeline.stories.d.ts +40 -2
- package/dist/src/components/Tooltip/Tooltip.d.ts +1 -0
- package/dist/src/components/Tooltip/Tooltip.stories.d.ts +159 -2
- package/dist/src/components/TruncateComponent/TruncateComponent.d.ts +1 -0
- package/dist/src/components/TruncateComponent/TruncateComponent.stories.d.ts +106 -2
- package/dist/src/components/Typography/Typography.stories.d.ts +2 -1
- package/dist/src/components/Upload/UploadFile.d.ts +1 -0
- package/dist/src/components/Upload/UploadFile.stories.d.ts +127 -2
- package/dist/src/components/Upload/UploadImage.d.ts +2 -1
- package/dist/src/components/Upload/UploadImage.stories.d.ts +145 -3
- package/dist/src/components/Upload/UploadMultipleFile.d.ts +2 -1
- package/dist/src/components/Upload/UploadMultipleFile.stories.d.ts +190 -3
- package/dist/src/components/Virtualization/ListVirtualization.d.ts +1 -0
- package/dist/src/components/Virtualization/ListVirtualization.stories.d.ts +279 -2
- package/dist/src/components/Virtualization/TableVirtualization.d.ts +1 -0
- package/dist/src/components/Virtualization/TableVirtualization.stories.d.ts +296 -2
- package/dist/src/components/index.d.ts +15 -8
- package/dist/src/components/screens/Screens.stories.d.ts +14 -0
- package/dist/src/config/bigNumber/index.d.ts +1 -0
- package/dist/src/config/components/borderRadius.d.ts +1 -0
- package/dist/src/config/components/font.d.ts +7 -0
- package/dist/src/config/components/gap.d.ts +1 -0
- package/dist/src/config/components/tinymce.d.ts +1 -0
- package/dist/src/config/components/typography.d.ts +3 -49
- package/dist/src/config/tailwind/index.d.ts +3 -1
- package/dist/src/config/tailwind/nativeScreen.d.ts +3 -0
- package/dist/src/config/tailwind/typography.d.ts +1 -0
- package/dist/src/hooks/index.d.ts +6 -3
- package/dist/src/hooks/useAsyncDebounce.d.ts +9 -0
- package/dist/src/hooks/useCombinedResizeObserver.d.ts +67 -0
- package/dist/src/hooks/useCountdown.d.ts +67 -3
- package/dist/src/hooks/useDeepCompareEffect.d.ts +14 -0
- package/dist/src/hooks/useElementOrWindowMediaQuery.d.ts +9 -0
- package/dist/src/hooks/useEventListener.d.ts +28 -0
- package/dist/src/hooks/useMasonry.d.ts +80 -0
- package/dist/src/hooks/useMergeRefs.d.ts +27 -0
- package/dist/src/hooks/useOtpInput.d.ts +200 -0
- package/dist/src/hooks/useStateRef.d.ts +9 -0
- package/dist/src/interfaces/components/Alert/index.d.ts +9 -0
- package/dist/src/interfaces/components/Badges/index.d.ts +31 -1
- package/dist/src/interfaces/components/Breadcrumbs/index.d.ts +86 -2
- package/dist/src/interfaces/components/Button/index.d.ts +47 -2
- package/dist/src/interfaces/components/ButtonIcon/index.d.ts +37 -0
- package/dist/src/interfaces/components/ButtonPopover/index.d.ts +79 -0
- package/dist/src/interfaces/components/Calendar/index.d.ts +385 -3
- package/dist/src/interfaces/components/Chart/index.d.ts +461 -0
- package/dist/src/interfaces/components/Checkbox/index.d.ts +13 -0
- package/dist/src/interfaces/components/Chips/index.d.ts +39 -1
- package/dist/src/interfaces/components/Collapse/index.d.ts +61 -0
- package/dist/src/interfaces/components/DatePicker/index.d.ts +278 -1
- package/dist/src/interfaces/components/ErrorMessage/index.d.ts +17 -1
- package/dist/src/interfaces/components/FilterContainer/index.d.ts +103 -0
- package/dist/src/interfaces/components/Input/index.d.ts +194 -0
- package/dist/src/interfaces/components/Modal/index.d.ts +46 -0
- package/dist/src/interfaces/components/NumberFormat/index.d.ts +26 -0
- package/dist/src/interfaces/components/Pagination/index.d.ts +84 -0
- package/dist/src/interfaces/components/Popover/index.d.ts +99 -1
- package/dist/src/interfaces/components/RadioCheckbox/RadioCheckbox.d.ts +60 -2
- package/dist/src/interfaces/components/RadioCheckbox/RadioCheckboxLabel.d.ts +47 -1
- package/dist/src/interfaces/components/SelectDropdownContainer/index.d.ts +197 -2
- package/dist/src/interfaces/components/Sidebar/index.d.ts +230 -1
- package/dist/src/interfaces/components/Step/index.d.ts +154 -0
- package/dist/src/interfaces/components/Switch/index.d.ts +54 -1
- package/dist/src/interfaces/components/Table/index.d.ts +403 -6
- package/dist/src/interfaces/components/Tabs/index.d.ts +131 -1
- package/dist/src/interfaces/components/TextEditor/index.d.ts +13 -0
- package/dist/src/interfaces/components/Textarea/index.d.ts +170 -0
- package/dist/src/interfaces/components/TimeRange/index.d.ts +129 -0
- package/dist/src/interfaces/components/Timeline/index.d.ts +37 -0
- package/dist/src/interfaces/components/Tooltip/index.d.ts +57 -0
- package/dist/src/interfaces/components/TruncateComponent/index.d.ts +34 -0
- package/dist/src/interfaces/components/UploadFile/index.d.ts +187 -0
- package/dist/src/interfaces/components/Virtualization/ListVirtualization.d.ts +139 -0
- package/dist/src/interfaces/components/Virtualization/TableVirtualization.d.ts +144 -0
- package/dist/src/main.d.ts +1 -0
- package/dist/src/utils/common.d.ts +5 -4
- package/dist/src/utils/constant.d.ts +1 -0
- package/dist/types-external/table.d.ts +3 -0
- package/package.json +46 -47
- package/dist/index.cjs.map +0 -1
- package/dist/index.mjs.map +0 -1
|
@@ -3,273 +3,855 @@
|
|
|
3
3
|
line-height: 72px;
|
|
4
4
|
font-weight: 700;
|
|
5
5
|
}
|
|
6
|
+
@mixin text-payhere-h1() {
|
|
7
|
+
font-size: 60px;
|
|
8
|
+
line-height: 72px;
|
|
9
|
+
font-weight: 700;
|
|
10
|
+
}
|
|
6
11
|
|
|
7
12
|
.text-payhere-h2 {
|
|
8
13
|
font-size: 48px;
|
|
9
14
|
line-height: 58px;
|
|
10
15
|
font-weight: 700;
|
|
11
16
|
}
|
|
17
|
+
@mixin text-payhere-h2() {
|
|
18
|
+
font-size: 48px;
|
|
19
|
+
line-height: 58px;
|
|
20
|
+
font-weight: 700;
|
|
21
|
+
}
|
|
12
22
|
|
|
13
23
|
.text-payhere-h3 {
|
|
14
24
|
font-size: 40px;
|
|
15
25
|
line-height: 48px;
|
|
16
26
|
font-weight: 700;
|
|
17
27
|
}
|
|
28
|
+
@mixin text-payhere-h3() {
|
|
29
|
+
font-size: 40px;
|
|
30
|
+
line-height: 48px;
|
|
31
|
+
font-weight: 700;
|
|
32
|
+
}
|
|
18
33
|
|
|
19
34
|
.text-payhere-h4 {
|
|
20
35
|
font-size: 30px;
|
|
21
36
|
line-height: 38px;
|
|
22
37
|
font-weight: 700;
|
|
23
38
|
}
|
|
39
|
+
@mixin text-payhere-h4() {
|
|
40
|
+
font-size: 30px;
|
|
41
|
+
line-height: 38px;
|
|
42
|
+
font-weight: 700;
|
|
43
|
+
}
|
|
24
44
|
|
|
25
45
|
.text-payhere-h5 {
|
|
26
46
|
font-size: 28px;
|
|
27
47
|
line-height: 40px;
|
|
28
48
|
font-weight: 600;
|
|
29
49
|
}
|
|
50
|
+
@mixin text-payhere-h5() {
|
|
51
|
+
font-size: 28px;
|
|
52
|
+
line-height: 40px;
|
|
53
|
+
font-weight: 600;
|
|
54
|
+
}
|
|
30
55
|
|
|
31
56
|
.text-payhere-h6 {
|
|
32
57
|
font-size: 24px;
|
|
33
58
|
line-height: 30px;
|
|
34
59
|
font-weight: 600;
|
|
35
60
|
}
|
|
61
|
+
@mixin text-payhere-h6() {
|
|
62
|
+
font-size: 24px;
|
|
63
|
+
line-height: 30px;
|
|
64
|
+
font-weight: 600;
|
|
65
|
+
}
|
|
36
66
|
|
|
37
67
|
.text-payhere-body-lr {
|
|
38
68
|
font-size: 18px;
|
|
39
69
|
line-height: 26px;
|
|
40
70
|
font-weight: 400;
|
|
41
71
|
}
|
|
72
|
+
@mixin text-payhere-body-lr() {
|
|
73
|
+
font-size: 18px;
|
|
74
|
+
line-height: 26px;
|
|
75
|
+
font-weight: 400;
|
|
76
|
+
}
|
|
42
77
|
|
|
43
78
|
.text-payhere-body-lm {
|
|
44
79
|
font-size: 18px;
|
|
45
80
|
line-height: 26px;
|
|
46
81
|
font-weight: 500;
|
|
47
82
|
}
|
|
83
|
+
@mixin text-payhere-body-lm() {
|
|
84
|
+
font-size: 18px;
|
|
85
|
+
line-height: 26px;
|
|
86
|
+
font-weight: 500;
|
|
87
|
+
}
|
|
48
88
|
|
|
49
89
|
.text-payhere-body-ls {
|
|
50
90
|
font-size: 18px;
|
|
51
91
|
line-height: 26px;
|
|
52
92
|
font-weight: 600;
|
|
53
93
|
}
|
|
94
|
+
@mixin text-payhere-body-ls() {
|
|
95
|
+
font-size: 18px;
|
|
96
|
+
line-height: 26px;
|
|
97
|
+
font-weight: 600;
|
|
98
|
+
}
|
|
54
99
|
|
|
55
100
|
.text-payhere-body-lb {
|
|
56
101
|
font-size: 18px;
|
|
57
102
|
line-height: 26px;
|
|
58
103
|
font-weight: 700;
|
|
59
104
|
}
|
|
105
|
+
@mixin text-payhere-body-lb() {
|
|
106
|
+
font-size: 18px;
|
|
107
|
+
line-height: 26px;
|
|
108
|
+
font-weight: 700;
|
|
109
|
+
}
|
|
60
110
|
|
|
61
111
|
.text-payhere-body-mr {
|
|
62
112
|
font-size: 16px;
|
|
63
113
|
line-height: 24px;
|
|
64
114
|
font-weight: 400;
|
|
65
115
|
}
|
|
116
|
+
@mixin text-payhere-body-mr() {
|
|
117
|
+
font-size: 16px;
|
|
118
|
+
line-height: 24px;
|
|
119
|
+
font-weight: 400;
|
|
120
|
+
}
|
|
66
121
|
|
|
67
122
|
.text-payhere-body-mm {
|
|
68
123
|
font-size: 16px;
|
|
69
124
|
line-height: 24px;
|
|
70
125
|
font-weight: 500;
|
|
71
126
|
}
|
|
127
|
+
@mixin text-payhere-body-mm() {
|
|
128
|
+
font-size: 16px;
|
|
129
|
+
line-height: 24px;
|
|
130
|
+
font-weight: 500;
|
|
131
|
+
}
|
|
72
132
|
|
|
73
133
|
.text-payhere-body-ms {
|
|
74
134
|
font-size: 16px;
|
|
75
135
|
line-height: 24px;
|
|
76
136
|
font-weight: 600;
|
|
77
137
|
}
|
|
138
|
+
@mixin text-payhere-body-ms() {
|
|
139
|
+
font-size: 16px;
|
|
140
|
+
line-height: 24px;
|
|
141
|
+
font-weight: 600;
|
|
142
|
+
}
|
|
78
143
|
|
|
79
144
|
.text-payhere-body-mb {
|
|
80
145
|
font-size: 16px;
|
|
81
146
|
line-height: 24px;
|
|
82
147
|
font-weight: 700;
|
|
83
148
|
}
|
|
149
|
+
@mixin text-payhere-body-mb() {
|
|
150
|
+
font-size: 16px;
|
|
151
|
+
line-height: 24px;
|
|
152
|
+
font-weight: 700;
|
|
153
|
+
}
|
|
84
154
|
|
|
85
155
|
.text-payhere-label-r {
|
|
86
156
|
font-size: 15px;
|
|
87
157
|
line-height: 26px;
|
|
88
158
|
font-weight: 400;
|
|
89
159
|
}
|
|
160
|
+
@mixin text-payhere-label-r() {
|
|
161
|
+
font-size: 15px;
|
|
162
|
+
line-height: 26px;
|
|
163
|
+
font-weight: 400;
|
|
164
|
+
}
|
|
90
165
|
|
|
91
166
|
.text-payhere-label-m {
|
|
92
167
|
font-size: 15px;
|
|
93
168
|
line-height: 26px;
|
|
94
169
|
font-weight: 500;
|
|
95
170
|
}
|
|
171
|
+
@mixin text-payhere-label-m() {
|
|
172
|
+
font-size: 15px;
|
|
173
|
+
line-height: 26px;
|
|
174
|
+
font-weight: 500;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.text-payhere-label-sb {
|
|
178
|
+
font-size: 15px;
|
|
179
|
+
line-height: 26px;
|
|
180
|
+
font-weight: 600;
|
|
181
|
+
}
|
|
182
|
+
@mixin text-payhere-label-sb() {
|
|
183
|
+
font-size: 15px;
|
|
184
|
+
line-height: 26px;
|
|
185
|
+
font-weight: 600;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.text-payhere-label-b {
|
|
189
|
+
font-size: 15px;
|
|
190
|
+
line-height: 26px;
|
|
191
|
+
font-weight: 700;
|
|
192
|
+
}
|
|
193
|
+
@mixin text-payhere-label-b() {
|
|
194
|
+
font-size: 15px;
|
|
195
|
+
line-height: 26px;
|
|
196
|
+
font-weight: 700;
|
|
197
|
+
}
|
|
96
198
|
|
|
97
199
|
.text-payhere-body-sr {
|
|
98
200
|
font-size: 14px;
|
|
99
201
|
line-height: 22px;
|
|
100
202
|
font-weight: 400;
|
|
101
203
|
}
|
|
204
|
+
@mixin text-payhere-body-sr() {
|
|
205
|
+
font-size: 14px;
|
|
206
|
+
line-height: 22px;
|
|
207
|
+
font-weight: 400;
|
|
208
|
+
}
|
|
102
209
|
|
|
103
210
|
.text-payhere-body-sm {
|
|
104
211
|
font-size: 14px;
|
|
105
212
|
line-height: 22px;
|
|
106
213
|
font-weight: 500;
|
|
107
214
|
}
|
|
215
|
+
@mixin text-payhere-body-sm() {
|
|
216
|
+
font-size: 14px;
|
|
217
|
+
line-height: 22px;
|
|
218
|
+
font-weight: 500;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.text-payhere-body-smb {
|
|
222
|
+
font-size: 14px;
|
|
223
|
+
line-height: 22px;
|
|
224
|
+
font-weight: 600;
|
|
225
|
+
}
|
|
226
|
+
@mixin text-payhere-body-smb() {
|
|
227
|
+
font-size: 14px;
|
|
228
|
+
line-height: 22px;
|
|
229
|
+
font-weight: 600;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.text-payhere-body-sb {
|
|
233
|
+
font-size: 14px;
|
|
234
|
+
line-height: 22px;
|
|
235
|
+
font-weight: 700;
|
|
236
|
+
}
|
|
237
|
+
@mixin text-payhere-body-sb() {
|
|
238
|
+
font-size: 14px;
|
|
239
|
+
line-height: 22px;
|
|
240
|
+
font-weight: 700;
|
|
241
|
+
}
|
|
108
242
|
|
|
109
243
|
.text-payhere-body-esr {
|
|
110
244
|
font-size: 12px;
|
|
111
245
|
line-height: 20px;
|
|
112
246
|
font-weight: 400;
|
|
113
247
|
}
|
|
248
|
+
@mixin text-payhere-body-esr() {
|
|
249
|
+
font-size: 12px;
|
|
250
|
+
line-height: 20px;
|
|
251
|
+
font-weight: 400;
|
|
252
|
+
}
|
|
114
253
|
|
|
115
254
|
.text-payhere-body-esm {
|
|
116
255
|
font-size: 12px;
|
|
117
256
|
line-height: 20px;
|
|
118
257
|
font-weight: 500;
|
|
119
258
|
}
|
|
259
|
+
@mixin text-payhere-body-esm() {
|
|
260
|
+
font-size: 12px;
|
|
261
|
+
line-height: 20px;
|
|
262
|
+
font-weight: 500;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.text-payhere-body-esmb {
|
|
266
|
+
font-size: 12px;
|
|
267
|
+
line-height: 20px;
|
|
268
|
+
font-weight: 600;
|
|
269
|
+
}
|
|
270
|
+
@mixin text-payhere-body-esmb() {
|
|
271
|
+
font-size: 12px;
|
|
272
|
+
line-height: 20px;
|
|
273
|
+
font-weight: 600;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.text-payhere-body-esb {
|
|
277
|
+
font-size: 12px;
|
|
278
|
+
line-height: 20px;
|
|
279
|
+
font-weight: 700;
|
|
280
|
+
}
|
|
281
|
+
@mixin text-payhere-body-esb() {
|
|
282
|
+
font-size: 12px;
|
|
283
|
+
line-height: 20px;
|
|
284
|
+
font-weight: 700;
|
|
285
|
+
}
|
|
120
286
|
|
|
121
287
|
.text-laba-title-lb {
|
|
122
288
|
font-size: 36px;
|
|
123
289
|
line-height: 44px;
|
|
124
290
|
font-weight: 700;
|
|
125
291
|
}
|
|
292
|
+
@mixin text-laba-title-lb() {
|
|
293
|
+
font-size: 36px;
|
|
294
|
+
line-height: 44px;
|
|
295
|
+
font-weight: 700;
|
|
296
|
+
}
|
|
126
297
|
|
|
127
298
|
.text-laba-title-ls {
|
|
128
299
|
font-size: 36px;
|
|
129
300
|
line-height: 44px;
|
|
130
301
|
font-weight: 600;
|
|
131
302
|
}
|
|
303
|
+
@mixin text-laba-title-ls() {
|
|
304
|
+
font-size: 36px;
|
|
305
|
+
line-height: 44px;
|
|
306
|
+
font-weight: 600;
|
|
307
|
+
}
|
|
132
308
|
|
|
133
309
|
.text-laba-title-lr {
|
|
134
310
|
font-size: 36px;
|
|
135
311
|
line-height: 44px;
|
|
136
312
|
font-weight: 400;
|
|
137
313
|
}
|
|
314
|
+
@mixin text-laba-title-lr() {
|
|
315
|
+
font-size: 36px;
|
|
316
|
+
line-height: 44px;
|
|
317
|
+
font-weight: 400;
|
|
318
|
+
}
|
|
138
319
|
|
|
139
320
|
.text-laba-title-mb {
|
|
140
321
|
font-size: 32px;
|
|
141
322
|
line-height: 40px;
|
|
142
323
|
font-weight: 700;
|
|
143
324
|
}
|
|
325
|
+
@mixin text-laba-title-mb() {
|
|
326
|
+
font-size: 32px;
|
|
327
|
+
line-height: 40px;
|
|
328
|
+
font-weight: 700;
|
|
329
|
+
}
|
|
144
330
|
|
|
145
331
|
.text-laba-title-ms {
|
|
146
332
|
font-size: 32px;
|
|
147
333
|
line-height: 40px;
|
|
148
334
|
font-weight: 600;
|
|
149
335
|
}
|
|
336
|
+
@mixin text-laba-title-ms() {
|
|
337
|
+
font-size: 32px;
|
|
338
|
+
line-height: 40px;
|
|
339
|
+
font-weight: 600;
|
|
340
|
+
}
|
|
150
341
|
|
|
151
342
|
.text-laba-title-mr {
|
|
152
343
|
font-size: 32px;
|
|
153
344
|
line-height: 40px;
|
|
154
345
|
font-weight: 400;
|
|
155
346
|
}
|
|
347
|
+
@mixin text-laba-title-mr() {
|
|
348
|
+
font-size: 32px;
|
|
349
|
+
line-height: 40px;
|
|
350
|
+
font-weight: 400;
|
|
351
|
+
}
|
|
156
352
|
|
|
157
353
|
.text-laba-h1 {
|
|
158
354
|
font-size: 24px;
|
|
159
355
|
line-height: 30px;
|
|
160
356
|
font-weight: 700;
|
|
161
357
|
}
|
|
358
|
+
@mixin text-laba-h1() {
|
|
359
|
+
font-size: 24px;
|
|
360
|
+
line-height: 30px;
|
|
361
|
+
font-weight: 700;
|
|
362
|
+
}
|
|
162
363
|
|
|
163
364
|
.text-laba-h1-b {
|
|
164
365
|
font-size: 24px;
|
|
165
366
|
line-height: 30px;
|
|
166
367
|
font-weight: 700;
|
|
167
368
|
}
|
|
369
|
+
@mixin text-laba-h1-b() {
|
|
370
|
+
font-size: 24px;
|
|
371
|
+
line-height: 30px;
|
|
372
|
+
font-weight: 700;
|
|
373
|
+
}
|
|
168
374
|
|
|
169
375
|
.text-laba-h1-sb {
|
|
170
376
|
font-size: 24px;
|
|
171
377
|
line-height: 30px;
|
|
172
378
|
font-weight: 600;
|
|
173
379
|
}
|
|
380
|
+
@mixin text-laba-h1-sb() {
|
|
381
|
+
font-size: 24px;
|
|
382
|
+
line-height: 30px;
|
|
383
|
+
font-weight: 600;
|
|
384
|
+
}
|
|
174
385
|
|
|
175
386
|
.text-laba-h1-r {
|
|
176
387
|
font-size: 24px;
|
|
177
388
|
line-height: 30px;
|
|
178
389
|
font-weight: 400;
|
|
179
390
|
}
|
|
391
|
+
@mixin text-laba-h1-r() {
|
|
392
|
+
font-size: 24px;
|
|
393
|
+
line-height: 30px;
|
|
394
|
+
font-weight: 400;
|
|
395
|
+
}
|
|
180
396
|
|
|
181
397
|
.text-laba-h2 {
|
|
182
398
|
font-size: 18px;
|
|
183
399
|
line-height: 26px;
|
|
184
400
|
font-weight: 700;
|
|
185
401
|
}
|
|
402
|
+
@mixin text-laba-h2() {
|
|
403
|
+
font-size: 18px;
|
|
404
|
+
line-height: 26px;
|
|
405
|
+
font-weight: 700;
|
|
406
|
+
}
|
|
186
407
|
|
|
187
408
|
.text-laba-h2-b {
|
|
188
409
|
font-size: 18px;
|
|
189
410
|
line-height: 26px;
|
|
190
411
|
font-weight: 700;
|
|
191
412
|
}
|
|
413
|
+
@mixin text-laba-h2-b() {
|
|
414
|
+
font-size: 18px;
|
|
415
|
+
line-height: 26px;
|
|
416
|
+
font-weight: 700;
|
|
417
|
+
}
|
|
192
418
|
|
|
193
419
|
.text-laba-h2-sb {
|
|
194
420
|
font-size: 18px;
|
|
195
421
|
line-height: 26px;
|
|
196
422
|
font-weight: 600;
|
|
197
423
|
}
|
|
424
|
+
@mixin text-laba-h2-sb() {
|
|
425
|
+
font-size: 18px;
|
|
426
|
+
line-height: 26px;
|
|
427
|
+
font-weight: 600;
|
|
428
|
+
}
|
|
198
429
|
|
|
199
430
|
.text-laba-h2-r {
|
|
200
431
|
font-size: 18px;
|
|
201
432
|
line-height: 26px;
|
|
202
433
|
font-weight: 400;
|
|
203
434
|
}
|
|
435
|
+
@mixin text-laba-h2-r() {
|
|
436
|
+
font-size: 18px;
|
|
437
|
+
line-height: 26px;
|
|
438
|
+
font-weight: 400;
|
|
439
|
+
}
|
|
204
440
|
|
|
205
441
|
.text-laba-base-rb {
|
|
206
442
|
font-size: 16px;
|
|
207
443
|
line-height: 24px;
|
|
208
444
|
font-weight: 700;
|
|
209
445
|
}
|
|
446
|
+
@mixin text-laba-base-rb() {
|
|
447
|
+
font-size: 16px;
|
|
448
|
+
line-height: 24px;
|
|
449
|
+
font-weight: 700;
|
|
450
|
+
}
|
|
210
451
|
|
|
211
452
|
.text-laba-base-rs {
|
|
212
453
|
font-size: 16px;
|
|
213
454
|
line-height: 24px;
|
|
214
455
|
font-weight: 600;
|
|
215
456
|
}
|
|
457
|
+
@mixin text-laba-base-rs() {
|
|
458
|
+
font-size: 16px;
|
|
459
|
+
line-height: 24px;
|
|
460
|
+
font-weight: 600;
|
|
461
|
+
}
|
|
216
462
|
|
|
217
463
|
.text-laba-base-rr {
|
|
218
464
|
font-size: 16px;
|
|
219
465
|
line-height: 24px;
|
|
220
466
|
font-weight: 400;
|
|
221
467
|
}
|
|
468
|
+
@mixin text-laba-base-rr() {
|
|
469
|
+
font-size: 16px;
|
|
470
|
+
line-height: 24px;
|
|
471
|
+
font-weight: 400;
|
|
472
|
+
}
|
|
222
473
|
|
|
223
474
|
.text-laba-base-sb {
|
|
224
475
|
font-size: 14px;
|
|
225
476
|
line-height: 20px;
|
|
226
477
|
font-weight: 700;
|
|
227
478
|
}
|
|
479
|
+
@mixin text-laba-base-sb() {
|
|
480
|
+
font-size: 14px;
|
|
481
|
+
line-height: 20px;
|
|
482
|
+
font-weight: 700;
|
|
483
|
+
}
|
|
228
484
|
|
|
229
485
|
.text-laba-base-ss {
|
|
230
486
|
font-size: 14px;
|
|
231
487
|
line-height: 20px;
|
|
232
488
|
font-weight: 600;
|
|
233
489
|
}
|
|
490
|
+
@mixin text-laba-base-ss() {
|
|
491
|
+
font-size: 14px;
|
|
492
|
+
line-height: 20px;
|
|
493
|
+
font-weight: 600;
|
|
494
|
+
}
|
|
234
495
|
|
|
235
496
|
.text-laba-base-sr {
|
|
236
497
|
font-size: 14px;
|
|
237
498
|
line-height: 20px;
|
|
238
499
|
font-weight: 400;
|
|
239
500
|
}
|
|
501
|
+
@mixin text-laba-base-sr() {
|
|
502
|
+
font-size: 14px;
|
|
503
|
+
line-height: 20px;
|
|
504
|
+
font-weight: 400;
|
|
505
|
+
}
|
|
240
506
|
|
|
241
507
|
.text-laba-subtitle-rb {
|
|
242
508
|
font-size: 12px;
|
|
243
509
|
line-height: 16px;
|
|
244
510
|
font-weight: 700;
|
|
245
511
|
}
|
|
512
|
+
@mixin text-laba-subtitle-rb() {
|
|
513
|
+
font-size: 12px;
|
|
514
|
+
line-height: 16px;
|
|
515
|
+
font-weight: 700;
|
|
516
|
+
}
|
|
246
517
|
|
|
247
518
|
.text-laba-subtitle-rs {
|
|
248
519
|
font-size: 12px;
|
|
249
520
|
line-height: 16px;
|
|
250
521
|
font-weight: 600;
|
|
251
522
|
}
|
|
523
|
+
@mixin text-laba-subtitle-rs() {
|
|
524
|
+
font-size: 12px;
|
|
525
|
+
line-height: 16px;
|
|
526
|
+
font-weight: 600;
|
|
527
|
+
}
|
|
252
528
|
|
|
253
529
|
.text-laba-subtitle-rr {
|
|
254
530
|
font-size: 12px;
|
|
255
531
|
line-height: 16px;
|
|
256
532
|
font-weight: 400;
|
|
257
533
|
}
|
|
534
|
+
@mixin text-laba-subtitle-rr() {
|
|
535
|
+
font-size: 12px;
|
|
536
|
+
line-height: 16px;
|
|
537
|
+
font-weight: 400;
|
|
538
|
+
}
|
|
258
539
|
|
|
259
540
|
.text-laba-subtitle-sb {
|
|
260
541
|
font-size: 10px;
|
|
261
542
|
line-height: 12px;
|
|
262
543
|
font-weight: 700;
|
|
263
544
|
}
|
|
545
|
+
@mixin text-laba-subtitle-sb() {
|
|
546
|
+
font-size: 10px;
|
|
547
|
+
line-height: 12px;
|
|
548
|
+
font-weight: 700;
|
|
549
|
+
}
|
|
264
550
|
|
|
265
551
|
.text-laba-subtitle-ss {
|
|
266
552
|
font-size: 10px;
|
|
267
553
|
line-height: 12px;
|
|
268
554
|
font-weight: 600;
|
|
269
555
|
}
|
|
556
|
+
@mixin text-laba-subtitle-ss() {
|
|
557
|
+
font-size: 10px;
|
|
558
|
+
line-height: 12px;
|
|
559
|
+
font-weight: 600;
|
|
560
|
+
}
|
|
270
561
|
|
|
271
562
|
.text-laba-subtitle-sr {
|
|
272
563
|
font-size: 10px;
|
|
273
564
|
line-height: 12px;
|
|
274
565
|
font-weight: 400;
|
|
566
|
+
}
|
|
567
|
+
@mixin text-laba-subtitle-sr() {
|
|
568
|
+
font-size: 10px;
|
|
569
|
+
line-height: 12px;
|
|
570
|
+
font-weight: 400;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.text-bill-h1 {
|
|
574
|
+
font-size: 60px;
|
|
575
|
+
line-height: 72px;
|
|
576
|
+
font-weight: 700;
|
|
577
|
+
}
|
|
578
|
+
@mixin text-bill-h1() {
|
|
579
|
+
font-size: 60px;
|
|
580
|
+
line-height: 72px;
|
|
581
|
+
font-weight: 700;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.text-bill-h2 {
|
|
585
|
+
font-size: 48px;
|
|
586
|
+
line-height: 58px;
|
|
587
|
+
font-weight: 700;
|
|
588
|
+
}
|
|
589
|
+
@mixin text-bill-h2() {
|
|
590
|
+
font-size: 48px;
|
|
591
|
+
line-height: 58px;
|
|
592
|
+
font-weight: 700;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.text-bill-h3 {
|
|
596
|
+
font-size: 40px;
|
|
597
|
+
line-height: 58px;
|
|
598
|
+
font-weight: 700;
|
|
599
|
+
}
|
|
600
|
+
@mixin text-bill-h3() {
|
|
601
|
+
font-size: 40px;
|
|
602
|
+
line-height: 58px;
|
|
603
|
+
font-weight: 700;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.text-bill-h4 {
|
|
607
|
+
font-size: 30px;
|
|
608
|
+
line-height: 38px;
|
|
609
|
+
font-weight: 700;
|
|
610
|
+
}
|
|
611
|
+
@mixin text-bill-h4() {
|
|
612
|
+
font-size: 30px;
|
|
613
|
+
line-height: 38px;
|
|
614
|
+
font-weight: 700;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.text-bill-h5 {
|
|
618
|
+
font-size: 28px;
|
|
619
|
+
line-height: 40px;
|
|
620
|
+
font-weight: 600;
|
|
621
|
+
}
|
|
622
|
+
@mixin text-bill-h5() {
|
|
623
|
+
font-size: 28px;
|
|
624
|
+
line-height: 40px;
|
|
625
|
+
font-weight: 600;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.text-bill-h6 {
|
|
629
|
+
font-size: 24px;
|
|
630
|
+
line-height: 30px;
|
|
631
|
+
font-weight: 600;
|
|
632
|
+
}
|
|
633
|
+
@mixin text-bill-h6() {
|
|
634
|
+
font-size: 24px;
|
|
635
|
+
line-height: 30px;
|
|
636
|
+
font-weight: 600;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.text-bill-body-lr {
|
|
640
|
+
font-size: 18px;
|
|
641
|
+
line-height: 26px;
|
|
642
|
+
font-weight: 400;
|
|
643
|
+
}
|
|
644
|
+
@mixin text-bill-body-lr() {
|
|
645
|
+
font-size: 18px;
|
|
646
|
+
line-height: 26px;
|
|
647
|
+
font-weight: 400;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.text-bill-body-lm {
|
|
651
|
+
font-size: 18px;
|
|
652
|
+
line-height: 26px;
|
|
653
|
+
font-weight: 500;
|
|
654
|
+
}
|
|
655
|
+
@mixin text-bill-body-lm() {
|
|
656
|
+
font-size: 18px;
|
|
657
|
+
line-height: 26px;
|
|
658
|
+
font-weight: 500;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.text-bill-body-lsm {
|
|
662
|
+
font-size: 18px;
|
|
663
|
+
line-height: 26px;
|
|
664
|
+
font-weight: 600;
|
|
665
|
+
}
|
|
666
|
+
@mixin text-bill-body-lsm() {
|
|
667
|
+
font-size: 18px;
|
|
668
|
+
line-height: 26px;
|
|
669
|
+
font-weight: 600;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.text-bill-body-blb {
|
|
673
|
+
font-size: 18px;
|
|
674
|
+
line-height: 26px;
|
|
675
|
+
font-weight: 700;
|
|
676
|
+
}
|
|
677
|
+
@mixin text-bill-body-blb() {
|
|
678
|
+
font-size: 18px;
|
|
679
|
+
line-height: 26px;
|
|
680
|
+
font-weight: 700;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.text-bill-body-mr {
|
|
684
|
+
font-size: 16px;
|
|
685
|
+
line-height: 24px;
|
|
686
|
+
font-weight: 400;
|
|
687
|
+
}
|
|
688
|
+
@mixin text-bill-body-mr() {
|
|
689
|
+
font-size: 16px;
|
|
690
|
+
line-height: 24px;
|
|
691
|
+
font-weight: 400;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.text-bill-body-mm {
|
|
695
|
+
font-size: 16px;
|
|
696
|
+
line-height: 24px;
|
|
697
|
+
font-weight: 500;
|
|
698
|
+
}
|
|
699
|
+
@mixin text-bill-body-mm() {
|
|
700
|
+
font-size: 16px;
|
|
701
|
+
line-height: 24px;
|
|
702
|
+
font-weight: 500;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.text-bill-body-msm {
|
|
706
|
+
font-size: 16px;
|
|
707
|
+
line-height: 24px;
|
|
708
|
+
font-weight: 600;
|
|
709
|
+
}
|
|
710
|
+
@mixin text-bill-body-msm() {
|
|
711
|
+
font-size: 16px;
|
|
712
|
+
line-height: 24px;
|
|
713
|
+
font-weight: 600;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.text-bill-body-mb {
|
|
717
|
+
font-size: 16px;
|
|
718
|
+
line-height: 24px;
|
|
719
|
+
font-weight: 700;
|
|
720
|
+
}
|
|
721
|
+
@mixin text-bill-body-mb() {
|
|
722
|
+
font-size: 16px;
|
|
723
|
+
line-height: 24px;
|
|
724
|
+
font-weight: 700;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.text-bill-label-r {
|
|
728
|
+
font-size: 15px;
|
|
729
|
+
line-height: 26px;
|
|
730
|
+
font-weight: 400;
|
|
731
|
+
}
|
|
732
|
+
@mixin text-bill-label-r() {
|
|
733
|
+
font-size: 15px;
|
|
734
|
+
line-height: 26px;
|
|
735
|
+
font-weight: 400;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
.text-bill-label-m {
|
|
739
|
+
font-size: 15px;
|
|
740
|
+
line-height: 26px;
|
|
741
|
+
font-weight: 500;
|
|
742
|
+
}
|
|
743
|
+
@mixin text-bill-label-m() {
|
|
744
|
+
font-size: 15px;
|
|
745
|
+
line-height: 26px;
|
|
746
|
+
font-weight: 500;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.text-bill-label-sm {
|
|
750
|
+
font-size: 15px;
|
|
751
|
+
line-height: 26px;
|
|
752
|
+
font-weight: 600;
|
|
753
|
+
}
|
|
754
|
+
@mixin text-bill-label-sm() {
|
|
755
|
+
font-size: 15px;
|
|
756
|
+
line-height: 26px;
|
|
757
|
+
font-weight: 600;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.text-bill-label-b {
|
|
761
|
+
font-size: 15px;
|
|
762
|
+
line-height: 26px;
|
|
763
|
+
font-weight: 700;
|
|
764
|
+
}
|
|
765
|
+
@mixin text-bill-label-b() {
|
|
766
|
+
font-size: 15px;
|
|
767
|
+
line-height: 26px;
|
|
768
|
+
font-weight: 700;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.text-bill-body-sr {
|
|
772
|
+
font-size: 14px;
|
|
773
|
+
line-height: 22px;
|
|
774
|
+
font-weight: 400;
|
|
775
|
+
}
|
|
776
|
+
@mixin text-bill-body-sr() {
|
|
777
|
+
font-size: 14px;
|
|
778
|
+
line-height: 22px;
|
|
779
|
+
font-weight: 400;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.text-bill-body-sm {
|
|
783
|
+
font-size: 14px;
|
|
784
|
+
line-height: 22px;
|
|
785
|
+
font-weight: 500;
|
|
786
|
+
}
|
|
787
|
+
@mixin text-bill-body-sm() {
|
|
788
|
+
font-size: 14px;
|
|
789
|
+
line-height: 22px;
|
|
790
|
+
font-weight: 500;
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
.text-bill-body-ssm {
|
|
794
|
+
font-size: 14px;
|
|
795
|
+
line-height: 22px;
|
|
796
|
+
font-weight: 600;
|
|
797
|
+
}
|
|
798
|
+
@mixin text-bill-body-ssm() {
|
|
799
|
+
font-size: 14px;
|
|
800
|
+
line-height: 22px;
|
|
801
|
+
font-weight: 600;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.text-bill-body-sb {
|
|
805
|
+
font-size: 14px;
|
|
806
|
+
line-height: 22px;
|
|
807
|
+
font-weight: 700;
|
|
808
|
+
}
|
|
809
|
+
@mixin text-bill-body-sb() {
|
|
810
|
+
font-size: 14px;
|
|
811
|
+
line-height: 22px;
|
|
812
|
+
font-weight: 700;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
.text-bill-body-esr {
|
|
816
|
+
font-size: 12px;
|
|
817
|
+
line-height: 20px;
|
|
818
|
+
font-weight: 400;
|
|
819
|
+
}
|
|
820
|
+
@mixin text-bill-body-esr() {
|
|
821
|
+
font-size: 12px;
|
|
822
|
+
line-height: 20px;
|
|
823
|
+
font-weight: 400;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.text-bill-body-ems {
|
|
827
|
+
font-size: 12px;
|
|
828
|
+
line-height: 20px;
|
|
829
|
+
font-weight: 500;
|
|
830
|
+
}
|
|
831
|
+
@mixin text-bill-body-ems() {
|
|
832
|
+
font-size: 12px;
|
|
833
|
+
line-height: 20px;
|
|
834
|
+
font-weight: 500;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.text-bill-body-essm {
|
|
838
|
+
font-size: 12px;
|
|
839
|
+
line-height: 20px;
|
|
840
|
+
font-weight: 600;
|
|
841
|
+
}
|
|
842
|
+
@mixin text-bill-body-essm() {
|
|
843
|
+
font-size: 12px;
|
|
844
|
+
line-height: 20px;
|
|
845
|
+
font-weight: 600;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.text-bill-body-esb {
|
|
849
|
+
font-size: 12px;
|
|
850
|
+
line-height: 20px;
|
|
851
|
+
font-weight: 700;
|
|
852
|
+
}
|
|
853
|
+
@mixin text-bill-body-esb() {
|
|
854
|
+
font-size: 12px;
|
|
855
|
+
line-height: 20px;
|
|
856
|
+
font-weight: 700;
|
|
275
857
|
}
|