primer_view_components 0.0.121 → 0.0.123
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +28 -0
- data/app/assets/javascripts/primer_view_components.js +1 -1
- data/app/assets/javascripts/primer_view_components.js.map +1 -1
- data/app/assets/styles/primer_view_components.css +2 -2
- data/app/assets/styles/primer_view_components.css.map +1 -1
- data/app/components/primer/alpha/action_list/item.rb +7 -0
- data/app/components/primer/alpha/action_list.css.json +123 -1
- data/app/components/primer/alpha/auto_complete.css.json +23 -1
- data/app/components/primer/alpha/banner.css.json +24 -1
- data/app/components/primer/alpha/button_marketing.css.json +33 -1
- data/app/components/primer/alpha/check_box.rb +74 -0
- data/app/components/primer/alpha/check_box_group.rb +36 -0
- data/app/components/primer/alpha/dialog.css.json +82 -1
- data/app/components/primer/alpha/dialog.rb +1 -1
- data/app/components/primer/alpha/dropdown.css.json +40 -1
- data/app/components/primer/alpha/form_button.rb +32 -0
- data/app/components/primer/alpha/form_control.html.erb +26 -0
- data/app/components/primer/alpha/form_control.rb +105 -0
- data/app/components/primer/alpha/layout.css.json +80 -1
- data/app/components/primer/alpha/menu.css.json +28 -1
- data/app/components/primer/alpha/multi_input.rb +81 -0
- data/app/components/primer/alpha/nav_list/item.rb +4 -0
- data/app/components/primer/alpha/nav_list/section.rb +1 -1
- data/app/components/primer/alpha/nav_list.d.ts +6 -3
- data/app/components/primer/alpha/nav_list.js +95 -6
- data/app/components/primer/alpha/nav_list.rb +5 -0
- data/app/components/primer/alpha/nav_list.ts +105 -3
- data/app/components/primer/alpha/radio_button.rb +25 -0
- data/app/components/primer/alpha/radio_button_group.rb +36 -0
- data/app/components/primer/alpha/segmented_control.css +1 -1
- data/app/components/primer/alpha/segmented_control.css.json +31 -1
- data/app/components/primer/alpha/segmented_control.css.map +1 -1
- data/app/components/primer/alpha/segmented_control.pcss +43 -12
- data/app/components/primer/alpha/select.rb +37 -0
- data/app/components/primer/alpha/submit_button.rb +32 -0
- data/app/components/primer/alpha/tab_nav.css.json +24 -1
- data/app/components/primer/alpha/tab_panels.rb +7 -0
- data/app/components/primer/alpha/text_area.rb +24 -0
- data/app/components/primer/alpha/text_field.css +2 -2
- data/app/components/primer/alpha/text_field.css.json +134 -1
- data/app/components/primer/alpha/text_field.css.map +1 -1
- data/app/components/primer/alpha/text_field.pcss +27 -0
- data/app/components/primer/alpha/text_field.rb +15 -20
- data/app/components/primer/alpha/toggle_switch.css +1 -1
- data/app/components/primer/alpha/toggle_switch.css.json +40 -1
- data/app/components/primer/alpha/toggle_switch.css.map +1 -1
- data/app/components/primer/alpha/toggle_switch.pcss +31 -61
- data/app/components/primer/alpha/underline_nav.css.json +28 -1
- data/app/components/primer/beta/avatar.css.json +17 -1
- data/app/components/primer/beta/avatar_stack.css.json +28 -1
- data/app/components/primer/beta/blankslate.css.json +22 -1
- data/app/components/primer/beta/border_box.css.json +54 -1
- data/app/components/primer/beta/breadcrumbs.css.json +11 -1
- data/app/components/primer/beta/button.css.json +71 -1
- data/app/components/primer/beta/counter.css.json +10 -1
- data/app/components/primer/beta/flash.css.json +27 -1
- data/app/components/primer/beta/label.css.json +25 -1
- data/app/components/primer/beta/link.css.json +19 -1
- data/app/components/primer/beta/popover.css.json +39 -1
- data/app/components/primer/beta/progress_bar.css.json +10 -1
- data/app/components/primer/beta/state.css.json +13 -1
- data/app/components/primer/beta/subhead.css.json +12 -1
- data/app/components/primer/beta/timeline_item.css.json +16 -1
- data/app/components/primer/beta/truncate.css.json +12 -1
- data/app/components/primer/component.rb +10 -2
- data/app/components/primer/truncate.css.json +13 -1
- data/app/forms/{select_list_form.rb → select_form.rb} +1 -1
- data/app/lib/primer/css/layout.css.json +316 -1
- data/app/lib/primer/css/utilities.css.json +1659 -1
- data/lib/primer/form_components.rb +26 -6
- data/lib/primer/forms/builder.rb +1 -17
- data/lib/primer/forms/button.rb +4 -1
- data/lib/primer/forms/check_box_group.html.erb +14 -9
- data/lib/primer/forms/check_box_group.rb +5 -0
- data/lib/primer/forms/dsl/check_box_group_input.rb +3 -4
- data/lib/primer/forms/dsl/input.rb +33 -2
- data/lib/primer/forms/dsl/input_methods.rb +49 -1
- data/lib/primer/forms/dsl/radio_button_group_input.rb +2 -3
- data/lib/primer/forms/dsl/{select_list_input.rb → select_input.rb} +2 -2
- data/lib/primer/forms/dsl/text_field_input.rb +7 -5
- data/lib/primer/forms/form_control.rb +0 -1
- data/lib/primer/forms/group.html.erb +1 -1
- data/lib/primer/forms/multi.html.erb +8 -6
- data/lib/primer/forms/multi.rb +2 -0
- data/lib/primer/forms/radio_button_group.html.erb +14 -9
- data/lib/primer/forms/radio_button_group.rb +5 -0
- data/lib/primer/forms/{select_list.html.erb → select.html.erb} +0 -0
- data/lib/primer/forms/{select_list.rb → select.rb} +2 -2
- data/lib/primer/forms/spacing_wrapper.html.erb +1 -1
- data/lib/primer/forms/text_area.rb +1 -1
- data/lib/primer/forms/text_field.rb +5 -1
- data/lib/primer/forms/utils.rb +20 -0
- data/lib/primer/view_components/engine.rb +1 -1
- data/lib/primer/view_components/version.rb +1 -1
- data/lib/primer/yard/backend.rb +1 -15
- data/lib/primer/yard/component_manifest.rb +44 -25
- data/lib/primer/yard/component_ref.rb +40 -0
- data/lib/primer/yard/docs_helper.rb +16 -2
- data/lib/primer/yard/legacy_gatsby_backend.rb +9 -15
- data/lib/primer/yard/lookbook_docs_helper.rb +32 -0
- data/lib/primer/yard/lookbook_pages_backend.rb +194 -0
- data/lib/primer/yard/registry.rb +6 -21
- data/lib/primer/yard/renders_many_handler.rb +1 -1
- data/lib/primer/yard/renders_one_handler.rb +1 -1
- data/lib/primer/yard.rb +14 -0
- data/lib/tasks/docs.rake +26 -13
- data/previews/pages/forms/01_introduction.md.erb +44 -0
- data/previews/pages/forms/02_getting_started.md.erb +125 -0
- data/previews/pages/forms/03_caption_templates.md.erb +30 -0
- data/previews/pages/forms/04_after_content.md.erb +39 -0
- data/previews/pages/forms/05_groups_layouts.md.erb +22 -0
- data/previews/pages/forms/06_miscellaneous_inputs.md.erb +43 -0
- data/previews/pages/forms/07_toggle_switch_forms.md.erb +58 -0
- data/previews/pages/forms/08_validations.md.erb +28 -0
- data/previews/pages/forms/09_compound_forms.md.erb +97 -0
- data/previews/primer/alpha/check_box_group_preview.rb +89 -0
- data/previews/primer/alpha/check_box_preview.rb +62 -0
- data/previews/primer/alpha/form_control_preview/playground.html.erb +9 -0
- data/previews/primer/alpha/form_control_preview.rb +106 -0
- data/previews/primer/alpha/multi_input_preview/playground.html.erb +41 -0
- data/previews/primer/alpha/multi_input_preview.rb +80 -0
- data/previews/primer/alpha/radio_button_group_preview.rb +83 -0
- data/previews/primer/alpha/radio_button_preview.rb +62 -0
- data/previews/primer/alpha/select_preview.rb +130 -0
- data/previews/primer/alpha/text_area_preview.rb +87 -0
- data/previews/primer/alpha/text_field_preview.rb +10 -1
- data/previews/primer/forms/forms_preview/example_toggle_switch_form.html.erb +2 -2
- data/previews/primer/forms/forms_preview/{select_list_form.html.erb → select_form.html.erb} +1 -1
- data/previews/primer/forms/forms_preview.rb +3 -1
- data/static/arguments.json +1358 -1328
- data/static/audited_at.json +10 -0
- data/static/constants.json +20 -0
- data/static/previews.json +218 -40
- data/static/statuses.json +10 -0
- metadata +41 -7
@@ -1 +1,1659 @@
|
|
1
|
-
{"name":"utilities","selectors":[".anim-fade-in",".anim-fade-in.fast","0%","100%",".anim-fade-out",".anim-fade-out.fast",".anim-fade-up",".anim-fade-down",".anim-grow-x","to",".anim-shrink-x",".anim-scale-in",".anim-pulse","10%",".anim-pulse-in","50%",".hover-grow",".anim-hover-grow",".hover-grow:hover",".anim-hover-grow:hover",".anim-rotate",".border-x",".border-y",".border",".border-0",".border-top",".border-right",".border-bottom",".border-left",".border-top-0",".border-right-0",".border-bottom-0",".border-left-0",".rounded",".rounded-0",".rounded-1",".rounded-2",".rounded-3",".rounded-top-0",".rounded-top-1",".rounded-top-2",".rounded-top-3",".rounded-right-0",".rounded-right-1",".rounded-right-2",".rounded-right-3",".rounded-bottom-0",".rounded-bottom-1",".rounded-bottom-2",".rounded-bottom-3",".rounded-left-0",".rounded-left-1",".rounded-left-2",".rounded-left-3",".border-sm",".border-sm-0",".border-sm-top",".border-sm-right",".border-sm-bottom",".border-sm-left",".border-sm-top-0",".border-sm-right-0",".border-sm-bottom-0",".border-sm-left-0",".rounded-sm",".rounded-sm-0",".rounded-sm-1",".rounded-sm-2",".rounded-sm-3",".rounded-sm-top-0",".rounded-sm-top-1",".rounded-sm-top-2",".rounded-sm-top-3",".rounded-sm-right-0",".rounded-sm-right-1",".rounded-sm-right-2",".rounded-sm-right-3",".rounded-sm-bottom-0",".rounded-sm-bottom-1",".rounded-sm-bottom-2",".rounded-sm-bottom-3",".rounded-sm-left-0",".rounded-sm-left-1",".rounded-sm-left-2",".rounded-sm-left-3",".border-md",".border-md-0",".border-md-top",".border-md-right",".border-md-bottom",".border-md-left",".border-md-top-0",".border-md-right-0",".border-md-bottom-0",".border-md-left-0",".rounded-md",".rounded-md-0",".rounded-md-1",".rounded-md-2",".rounded-md-3",".rounded-md-top-0",".rounded-md-top-1",".rounded-md-top-2",".rounded-md-top-3",".rounded-md-right-0",".rounded-md-right-1",".rounded-md-right-2",".rounded-md-right-3",".rounded-md-bottom-0",".rounded-md-bottom-1",".rounded-md-bottom-2",".rounded-md-bottom-3",".rounded-md-left-0",".rounded-md-left-1",".rounded-md-left-2",".rounded-md-left-3",".border-lg",".border-lg-0",".border-lg-top",".border-lg-right",".border-lg-bottom",".border-lg-left",".border-lg-top-0",".border-lg-right-0",".border-lg-bottom-0",".border-lg-left-0",".rounded-lg",".rounded-lg-0",".rounded-lg-1",".rounded-lg-2",".rounded-lg-3",".rounded-lg-top-0",".rounded-lg-top-1",".rounded-lg-top-2",".rounded-lg-top-3",".rounded-lg-right-0",".rounded-lg-right-1",".rounded-lg-right-2",".rounded-lg-right-3",".rounded-lg-bottom-0",".rounded-lg-bottom-1",".rounded-lg-bottom-2",".rounded-lg-bottom-3",".rounded-lg-left-0",".rounded-lg-left-1",".rounded-lg-left-2",".rounded-lg-left-3",".border-xl",".border-xl-0",".border-xl-top",".border-xl-right",".border-xl-bottom",".border-xl-left",".border-xl-top-0",".border-xl-right-0",".border-xl-bottom-0",".border-xl-left-0",".rounded-xl",".rounded-xl-0",".rounded-xl-1",".rounded-xl-2",".rounded-xl-3",".rounded-xl-top-0",".rounded-xl-top-1",".rounded-xl-top-2",".rounded-xl-top-3",".rounded-xl-right-0",".rounded-xl-right-1",".rounded-xl-right-2",".rounded-xl-right-3",".rounded-xl-bottom-0",".rounded-xl-bottom-1",".rounded-xl-bottom-2",".rounded-xl-bottom-3",".rounded-xl-left-0",".rounded-xl-left-1",".rounded-xl-left-2",".rounded-xl-left-3",".circle",".border-dashed",".color-shadow-small",".color-shadow-medium",".color-shadow-large",".color-shadow-extra-large",".box-shadow-none",".color-fg-default",".color-fg-muted",".color-fg-subtle",".color-fg-accent",".color-fg-success",".color-fg-attention",".color-fg-severe",".color-fg-danger",".color-fg-open",".color-fg-closed",".color-fg-done",".color-fg-sponsors",".color-fg-on-emphasis",".color-bg-default",".color-bg-overlay",".color-bg-inset",".color-bg-subtle",".color-bg-emphasis",".color-bg-accent",".color-bg-accent-emphasis",".color-bg-success",".color-bg-success-emphasis",".color-bg-attention",".color-bg-attention-emphasis",".color-bg-severe",".color-bg-severe-emphasis",".color-bg-danger",".color-bg-danger-emphasis",".color-bg-open",".color-bg-open-emphasis",".color-bg-closed",".color-bg-closed-emphasis",".color-bg-done",".color-bg-done-emphasis",".color-bg-sponsors",".color-bg-sponsors-emphasis",".color-bg-transparent",".color-border-default",".color-border-muted",".color-border-subtle",".color-border-accent",".color-border-accent-emphasis",".color-border-success",".color-border-success-emphasis",".color-border-attention",".color-border-attention-emphasis",".color-border-severe",".color-border-severe-emphasis",".color-border-danger",".color-border-danger-emphasis",".color-border-open",".color-border-open-emphasis",".color-border-closed",".color-border-closed-emphasis",".color-border-done",".color-border-done-emphasis",".color-border-sponsors",".color-border-sponsors-emphasis",".color-fg-inherit",".details-overlay[open]>summary::before",".details-overlay-dark[open]>summary::before",".details-reset>summary",".details-reset>summary:focus",".details-reset>summary:focus:not(:focus-visible)",".details-reset>summary:focus-visible",".details-reset>summary.btn-primary:focus",".details-reset>summary.btn-primary:focus:not(:focus-visible)",".details-reset>summary.btn-primary:focus-visible",".details-reset>summary::before",".details-reset>summary::-webkit-details-marker",".details-overlay>summary",".details-overlay>summary:focus",".details-overlay>summary:focus:not(:focus-visible)",".details-overlay>summary:focus-visible",".details-overlay>summary.btn-primary:focus",".details-overlay>summary.btn-primary:focus:not(:focus-visible)",".details-overlay>summary.btn-primary:focus-visible",".flex-row",".flex-row-reverse",".flex-column",".flex-column-reverse",".flex-wrap",".flex-nowrap",".flex-wrap-reverse",".flex-justify-start",".flex-justify-end",".flex-justify-center",".flex-justify-between",".flex-justify-around",".flex-items-start",".flex-items-end",".flex-items-center",".flex-items-baseline",".flex-items-stretch",".flex-content-start",".flex-content-end",".flex-content-center",".flex-content-between",".flex-content-around",".flex-content-stretch",".flex-1",".flex-auto",".flex-grow-0",".flex-shrink-0",".flex-self-auto",".flex-self-start",".flex-self-end",".flex-self-center",".flex-self-baseline",".flex-self-stretch",".flex-order-1",".flex-order-2",".flex-order-none",".flex-sm-row",".flex-sm-row-reverse",".flex-sm-column",".flex-sm-column-reverse",".flex-sm-wrap",".flex-sm-nowrap",".flex-sm-wrap-reverse",".flex-sm-justify-start",".flex-sm-justify-end",".flex-sm-justify-center",".flex-sm-justify-between",".flex-sm-justify-around",".flex-sm-items-start",".flex-sm-items-end",".flex-sm-items-center",".flex-sm-items-baseline",".flex-sm-items-stretch",".flex-sm-content-start",".flex-sm-content-end",".flex-sm-content-center",".flex-sm-content-between",".flex-sm-content-around",".flex-sm-content-stretch",".flex-sm-1",".flex-sm-auto",".flex-sm-grow-0",".flex-sm-shrink-0",".flex-sm-self-auto",".flex-sm-self-start",".flex-sm-self-end",".flex-sm-self-center",".flex-sm-self-baseline",".flex-sm-self-stretch",".flex-sm-order-1",".flex-sm-order-2",".flex-sm-order-none",".flex-md-row",".flex-md-row-reverse",".flex-md-column",".flex-md-column-reverse",".flex-md-wrap",".flex-md-nowrap",".flex-md-wrap-reverse",".flex-md-justify-start",".flex-md-justify-end",".flex-md-justify-center",".flex-md-justify-between",".flex-md-justify-around",".flex-md-items-start",".flex-md-items-end",".flex-md-items-center",".flex-md-items-baseline",".flex-md-items-stretch",".flex-md-content-start",".flex-md-content-end",".flex-md-content-center",".flex-md-content-between",".flex-md-content-around",".flex-md-content-stretch",".flex-md-1",".flex-md-auto",".flex-md-grow-0",".flex-md-shrink-0",".flex-md-self-auto",".flex-md-self-start",".flex-md-self-end",".flex-md-self-center",".flex-md-self-baseline",".flex-md-self-stretch",".flex-md-order-1",".flex-md-order-2",".flex-md-order-none",".flex-lg-row",".flex-lg-row-reverse",".flex-lg-column",".flex-lg-column-reverse",".flex-lg-wrap",".flex-lg-nowrap",".flex-lg-wrap-reverse",".flex-lg-justify-start",".flex-lg-justify-end",".flex-lg-justify-center",".flex-lg-justify-between",".flex-lg-justify-around",".flex-lg-items-start",".flex-lg-items-end",".flex-lg-items-center",".flex-lg-items-baseline",".flex-lg-items-stretch",".flex-lg-content-start",".flex-lg-content-end",".flex-lg-content-center",".flex-lg-content-between",".flex-lg-content-around",".flex-lg-content-stretch",".flex-lg-1",".flex-lg-auto",".flex-lg-grow-0",".flex-lg-shrink-0",".flex-lg-self-auto",".flex-lg-self-start",".flex-lg-self-end",".flex-lg-self-center",".flex-lg-self-baseline",".flex-lg-self-stretch",".flex-lg-order-1",".flex-lg-order-2",".flex-lg-order-none",".flex-xl-row",".flex-xl-row-reverse",".flex-xl-column",".flex-xl-column-reverse",".flex-xl-wrap",".flex-xl-nowrap",".flex-xl-wrap-reverse",".flex-xl-justify-start",".flex-xl-justify-end",".flex-xl-justify-center",".flex-xl-justify-between",".flex-xl-justify-around",".flex-xl-items-start",".flex-xl-items-end",".flex-xl-items-center",".flex-xl-items-baseline",".flex-xl-items-stretch",".flex-xl-content-start",".flex-xl-content-end",".flex-xl-content-center",".flex-xl-content-between",".flex-xl-content-around",".flex-xl-content-stretch",".flex-xl-1",".flex-xl-auto",".flex-xl-grow-0",".flex-xl-shrink-0",".flex-xl-self-auto",".flex-xl-self-start",".flex-xl-self-end",".flex-xl-self-center",".flex-xl-self-baseline",".flex-xl-self-stretch",".flex-xl-order-1",".flex-xl-order-2",".flex-xl-order-none",".position-static",".position-relative",".position-absolute",".position-fixed",".position-sticky",".position-sm-static",".position-sm-relative",".position-sm-absolute",".position-sm-fixed",".position-sm-sticky",".position-md-static",".position-md-relative",".position-md-absolute",".position-md-fixed",".position-md-sticky",".position-lg-static",".position-lg-relative",".position-lg-absolute",".position-lg-fixed",".position-lg-sticky",".position-xl-static",".position-xl-relative",".position-xl-absolute",".position-xl-fixed",".position-xl-sticky",".top-0",".right-0",".bottom-0",".left-0",".top-auto",".right-auto",".bottom-auto",".left-auto",".top-sm-0",".right-sm-0",".bottom-sm-0",".left-sm-0",".top-sm-auto",".right-sm-auto",".bottom-sm-auto",".left-sm-auto",".top-md-0",".right-md-0",".bottom-md-0",".left-md-0",".top-md-auto",".right-md-auto",".bottom-md-auto",".left-md-auto",".top-lg-0",".right-lg-0",".bottom-lg-0",".left-lg-0",".top-lg-auto",".right-lg-auto",".bottom-lg-auto",".left-lg-auto",".top-xl-0",".right-xl-0",".bottom-xl-0",".left-xl-0",".top-xl-auto",".right-xl-auto",".bottom-xl-auto",".left-xl-auto",".v-align-middle",".v-align-top",".v-align-bottom",".v-align-text-top",".v-align-text-bottom",".v-align-baseline",".overflow-visible",".overflow-x-visible",".overflow-y-visible",".overflow-hidden",".overflow-x-hidden",".overflow-y-hidden",".overflow-auto",".overflow-x-auto",".overflow-y-auto",".overflow-scroll",".overflow-x-scroll",".overflow-y-scroll",".overflow-sm-visible",".overflow-sm-x-visible",".overflow-sm-y-visible",".overflow-sm-hidden",".overflow-sm-x-hidden",".overflow-sm-y-hidden",".overflow-sm-auto",".overflow-sm-x-auto",".overflow-sm-y-auto",".overflow-sm-scroll",".overflow-sm-x-scroll",".overflow-sm-y-scroll",".overflow-md-visible",".overflow-md-x-visible",".overflow-md-y-visible",".overflow-md-hidden",".overflow-md-x-hidden",".overflow-md-y-hidden",".overflow-md-auto",".overflow-md-x-auto",".overflow-md-y-auto",".overflow-md-scroll",".overflow-md-x-scroll",".overflow-md-y-scroll",".overflow-lg-visible",".overflow-lg-x-visible",".overflow-lg-y-visible",".overflow-lg-hidden",".overflow-lg-x-hidden",".overflow-lg-y-hidden",".overflow-lg-auto",".overflow-lg-x-auto",".overflow-lg-y-auto",".overflow-lg-scroll",".overflow-lg-x-scroll",".overflow-lg-y-scroll",".overflow-xl-visible",".overflow-xl-x-visible",".overflow-xl-y-visible",".overflow-xl-hidden",".overflow-xl-x-hidden",".overflow-xl-y-hidden",".overflow-xl-auto",".overflow-xl-x-auto",".overflow-xl-y-auto",".overflow-xl-scroll",".overflow-xl-x-scroll",".overflow-xl-y-scroll",".clearfix::before",".clearfix::after",".float-left",".float-right",".float-none",".float-sm-left",".float-sm-right",".float-sm-none",".float-md-left",".float-md-right",".float-md-none",".float-lg-left",".float-lg-right",".float-lg-none",".float-xl-left",".float-xl-right",".float-xl-none",".width-fit",".width-full",".height-fit",".height-full",".min-width-0",".width-auto",".direction-rtl",".direction-ltr",".width-sm-auto",".direction-sm-rtl",".direction-sm-ltr",".width-md-auto",".direction-md-rtl",".direction-md-ltr",".width-lg-auto",".direction-lg-rtl",".direction-lg-ltr",".width-xl-auto",".direction-xl-rtl",".direction-xl-ltr",".m-0",".mt-0",".mb-0",".mr-0",".ml-0",".mx-0",".my-0",".m-1",".mt-1",".mb-1",".mr-1",".ml-1",".mt-n1",".mb-n1",".mr-n1",".ml-n1",".mx-1",".my-1",".m-2",".mt-2",".mb-2",".mr-2",".ml-2",".mt-n2",".mb-n2",".mr-n2",".ml-n2",".mx-2",".my-2",".m-3",".mt-3",".mb-3",".mr-3",".ml-3",".mt-n3",".mb-n3",".mr-n3",".ml-n3",".mx-3",".my-3",".m-4",".mt-4",".mb-4",".mr-4",".ml-4",".mt-n4",".mb-n4",".mr-n4",".ml-n4",".mx-4",".my-4",".m-5",".mt-5",".mb-5",".mr-5",".ml-5",".mt-n5",".mb-n5",".mr-n5",".ml-n5",".mx-5",".my-5",".m-6",".mt-6",".mb-6",".mr-6",".ml-6",".mt-n6",".mb-n6",".mr-n6",".ml-n6",".mx-6",".my-6",".mt-7",".mb-7",".mt-n7",".mb-n7",".my-7",".mt-8",".mb-8",".mt-n8",".mb-n8",".my-8",".mt-9",".mb-9",".mt-n9",".mb-n9",".my-9",".mt-10",".mb-10",".mt-n10",".mb-n10",".my-10",".mt-11",".mb-11",".mt-n11",".mb-n11",".my-11",".mt-12",".mb-12",".mt-n12",".mb-n12",".my-12",".mx-auto",".m-sm-0",".mt-sm-0",".mb-sm-0",".mr-sm-0",".ml-sm-0",".mx-sm-0",".my-sm-0",".m-sm-1",".mt-sm-1",".mb-sm-1",".mr-sm-1",".ml-sm-1",".mt-sm-n1",".mb-sm-n1",".mr-sm-n1",".ml-sm-n1",".mx-sm-1",".my-sm-1",".m-sm-2",".mt-sm-2",".mb-sm-2",".mr-sm-2",".ml-sm-2",".mt-sm-n2",".mb-sm-n2",".mr-sm-n2",".ml-sm-n2",".mx-sm-2",".my-sm-2",".m-sm-3",".mt-sm-3",".mb-sm-3",".mr-sm-3",".ml-sm-3",".mt-sm-n3",".mb-sm-n3",".mr-sm-n3",".ml-sm-n3",".mx-sm-3",".my-sm-3",".m-sm-4",".mt-sm-4",".mb-sm-4",".mr-sm-4",".ml-sm-4",".mt-sm-n4",".mb-sm-n4",".mr-sm-n4",".ml-sm-n4",".mx-sm-4",".my-sm-4",".m-sm-5",".mt-sm-5",".mb-sm-5",".mr-sm-5",".ml-sm-5",".mt-sm-n5",".mb-sm-n5",".mr-sm-n5",".ml-sm-n5",".mx-sm-5",".my-sm-5",".m-sm-6",".mt-sm-6",".mb-sm-6",".mr-sm-6",".ml-sm-6",".mt-sm-n6",".mb-sm-n6",".mr-sm-n6",".ml-sm-n6",".mx-sm-6",".my-sm-6",".mt-sm-7",".mb-sm-7",".mt-sm-n7",".mb-sm-n7",".my-sm-7",".mt-sm-8",".mb-sm-8",".mt-sm-n8",".mb-sm-n8",".my-sm-8",".mt-sm-9",".mb-sm-9",".mt-sm-n9",".mb-sm-n9",".my-sm-9",".mt-sm-10",".mb-sm-10",".mt-sm-n10",".mb-sm-n10",".my-sm-10",".mt-sm-11",".mb-sm-11",".mt-sm-n11",".mb-sm-n11",".my-sm-11",".mt-sm-12",".mb-sm-12",".mt-sm-n12",".mb-sm-n12",".my-sm-12",".mx-sm-auto",".m-md-0",".mt-md-0",".mb-md-0",".mr-md-0",".ml-md-0",".mx-md-0",".my-md-0",".m-md-1",".mt-md-1",".mb-md-1",".mr-md-1",".ml-md-1",".mt-md-n1",".mb-md-n1",".mr-md-n1",".ml-md-n1",".mx-md-1",".my-md-1",".m-md-2",".mt-md-2",".mb-md-2",".mr-md-2",".ml-md-2",".mt-md-n2",".mb-md-n2",".mr-md-n2",".ml-md-n2",".mx-md-2",".my-md-2",".m-md-3",".mt-md-3",".mb-md-3",".mr-md-3",".ml-md-3",".mt-md-n3",".mb-md-n3",".mr-md-n3",".ml-md-n3",".mx-md-3",".my-md-3",".m-md-4",".mt-md-4",".mb-md-4",".mr-md-4",".ml-md-4",".mt-md-n4",".mb-md-n4",".mr-md-n4",".ml-md-n4",".mx-md-4",".my-md-4",".m-md-5",".mt-md-5",".mb-md-5",".mr-md-5",".ml-md-5",".mt-md-n5",".mb-md-n5",".mr-md-n5",".ml-md-n5",".mx-md-5",".my-md-5",".m-md-6",".mt-md-6",".mb-md-6",".mr-md-6",".ml-md-6",".mt-md-n6",".mb-md-n6",".mr-md-n6",".ml-md-n6",".mx-md-6",".my-md-6",".mt-md-7",".mb-md-7",".mt-md-n7",".mb-md-n7",".my-md-7",".mt-md-8",".mb-md-8",".mt-md-n8",".mb-md-n8",".my-md-8",".mt-md-9",".mb-md-9",".mt-md-n9",".mb-md-n9",".my-md-9",".mt-md-10",".mb-md-10",".mt-md-n10",".mb-md-n10",".my-md-10",".mt-md-11",".mb-md-11",".mt-md-n11",".mb-md-n11",".my-md-11",".mt-md-12",".mb-md-12",".mt-md-n12",".mb-md-n12",".my-md-12",".mx-md-auto",".m-lg-0",".mt-lg-0",".mb-lg-0",".mr-lg-0",".ml-lg-0",".mx-lg-0",".my-lg-0",".m-lg-1",".mt-lg-1",".mb-lg-1",".mr-lg-1",".ml-lg-1",".mt-lg-n1",".mb-lg-n1",".mr-lg-n1",".ml-lg-n1",".mx-lg-1",".my-lg-1",".m-lg-2",".mt-lg-2",".mb-lg-2",".mr-lg-2",".ml-lg-2",".mt-lg-n2",".mb-lg-n2",".mr-lg-n2",".ml-lg-n2",".mx-lg-2",".my-lg-2",".m-lg-3",".mt-lg-3",".mb-lg-3",".mr-lg-3",".ml-lg-3",".mt-lg-n3",".mb-lg-n3",".mr-lg-n3",".ml-lg-n3",".mx-lg-3",".my-lg-3",".m-lg-4",".mt-lg-4",".mb-lg-4",".mr-lg-4",".ml-lg-4",".mt-lg-n4",".mb-lg-n4",".mr-lg-n4",".ml-lg-n4",".mx-lg-4",".my-lg-4",".m-lg-5",".mt-lg-5",".mb-lg-5",".mr-lg-5",".ml-lg-5",".mt-lg-n5",".mb-lg-n5",".mr-lg-n5",".ml-lg-n5",".mx-lg-5",".my-lg-5",".m-lg-6",".mt-lg-6",".mb-lg-6",".mr-lg-6",".ml-lg-6",".mt-lg-n6",".mb-lg-n6",".mr-lg-n6",".ml-lg-n6",".mx-lg-6",".my-lg-6",".mt-lg-7",".mb-lg-7",".mt-lg-n7",".mb-lg-n7",".my-lg-7",".mt-lg-8",".mb-lg-8",".mt-lg-n8",".mb-lg-n8",".my-lg-8",".mt-lg-9",".mb-lg-9",".mt-lg-n9",".mb-lg-n9",".my-lg-9",".mt-lg-10",".mb-lg-10",".mt-lg-n10",".mb-lg-n10",".my-lg-10",".mt-lg-11",".mb-lg-11",".mt-lg-n11",".mb-lg-n11",".my-lg-11",".mt-lg-12",".mb-lg-12",".mt-lg-n12",".mb-lg-n12",".my-lg-12",".mx-lg-auto",".m-xl-0",".mt-xl-0",".mb-xl-0",".mr-xl-0",".ml-xl-0",".mx-xl-0",".my-xl-0",".m-xl-1",".mt-xl-1",".mb-xl-1",".mr-xl-1",".ml-xl-1",".mt-xl-n1",".mb-xl-n1",".mr-xl-n1",".ml-xl-n1",".mx-xl-1",".my-xl-1",".m-xl-2",".mt-xl-2",".mb-xl-2",".mr-xl-2",".ml-xl-2",".mt-xl-n2",".mb-xl-n2",".mr-xl-n2",".ml-xl-n2",".mx-xl-2",".my-xl-2",".m-xl-3",".mt-xl-3",".mb-xl-3",".mr-xl-3",".ml-xl-3",".mt-xl-n3",".mb-xl-n3",".mr-xl-n3",".ml-xl-n3",".mx-xl-3",".my-xl-3",".m-xl-4",".mt-xl-4",".mb-xl-4",".mr-xl-4",".ml-xl-4",".mt-xl-n4",".mb-xl-n4",".mr-xl-n4",".ml-xl-n4",".mx-xl-4",".my-xl-4",".m-xl-5",".mt-xl-5",".mb-xl-5",".mr-xl-5",".ml-xl-5",".mt-xl-n5",".mb-xl-n5",".mr-xl-n5",".ml-xl-n5",".mx-xl-5",".my-xl-5",".m-xl-6",".mt-xl-6",".mb-xl-6",".mr-xl-6",".ml-xl-6",".mt-xl-n6",".mb-xl-n6",".mr-xl-n6",".ml-xl-n6",".mx-xl-6",".my-xl-6",".mt-xl-7",".mb-xl-7",".mt-xl-n7",".mb-xl-n7",".my-xl-7",".mt-xl-8",".mb-xl-8",".mt-xl-n8",".mb-xl-n8",".my-xl-8",".mt-xl-9",".mb-xl-9",".mt-xl-n9",".mb-xl-n9",".my-xl-9",".mt-xl-10",".mb-xl-10",".mt-xl-n10",".mb-xl-n10",".my-xl-10",".mt-xl-11",".mb-xl-11",".mt-xl-n11",".mb-xl-n11",".my-xl-11",".mt-xl-12",".mb-xl-12",".mt-xl-n12",".mb-xl-n12",".my-xl-12",".mx-xl-auto",".m-auto",".mt-auto",".mr-auto",".mb-auto",".ml-auto",".p-0",".pt-0",".pr-0",".pb-0",".pl-0",".px-0",".py-0",".p-1",".pt-1",".pr-1",".pb-1",".pl-1",".px-1",".py-1",".p-2",".pt-2",".pr-2",".pb-2",".pl-2",".px-2",".py-2",".p-3",".pt-3",".pr-3",".pb-3",".pl-3",".px-3",".py-3",".p-4",".pt-4",".pr-4",".pb-4",".pl-4",".px-4",".py-4",".p-5",".pt-5",".pr-5",".pb-5",".pl-5",".px-5",".py-5",".p-6",".pt-6",".pr-6",".pb-6",".pl-6",".px-6",".py-6",".pt-7",".pr-7",".pb-7",".pl-7",".py-7",".pt-8",".pr-8",".pb-8",".pl-8",".py-8",".pt-9",".pr-9",".pb-9",".pl-9",".py-9",".pt-10",".pr-10",".pb-10",".pl-10",".py-10",".pt-11",".pr-11",".pb-11",".pl-11",".py-11",".pt-12",".pr-12",".pb-12",".pl-12",".py-12",".p-sm-0",".pt-sm-0",".pr-sm-0",".pb-sm-0",".pl-sm-0",".px-sm-0",".py-sm-0",".p-sm-1",".pt-sm-1",".pr-sm-1",".pb-sm-1",".pl-sm-1",".px-sm-1",".py-sm-1",".p-sm-2",".pt-sm-2",".pr-sm-2",".pb-sm-2",".pl-sm-2",".px-sm-2",".py-sm-2",".p-sm-3",".pt-sm-3",".pr-sm-3",".pb-sm-3",".pl-sm-3",".px-sm-3",".py-sm-3",".p-sm-4",".pt-sm-4",".pr-sm-4",".pb-sm-4",".pl-sm-4",".px-sm-4",".py-sm-4",".p-sm-5",".pt-sm-5",".pr-sm-5",".pb-sm-5",".pl-sm-5",".px-sm-5",".py-sm-5",".p-sm-6",".pt-sm-6",".pr-sm-6",".pb-sm-6",".pl-sm-6",".px-sm-6",".py-sm-6",".pt-sm-7",".pr-sm-7",".pb-sm-7",".pl-sm-7",".py-sm-7",".pt-sm-8",".pr-sm-8",".pb-sm-8",".pl-sm-8",".py-sm-8",".pt-sm-9",".pr-sm-9",".pb-sm-9",".pl-sm-9",".py-sm-9",".pt-sm-10",".pr-sm-10",".pb-sm-10",".pl-sm-10",".py-sm-10",".pt-sm-11",".pr-sm-11",".pb-sm-11",".pl-sm-11",".py-sm-11",".pt-sm-12",".pr-sm-12",".pb-sm-12",".pl-sm-12",".py-sm-12",".p-md-0",".pt-md-0",".pr-md-0",".pb-md-0",".pl-md-0",".px-md-0",".py-md-0",".p-md-1",".pt-md-1",".pr-md-1",".pb-md-1",".pl-md-1",".px-md-1",".py-md-1",".p-md-2",".pt-md-2",".pr-md-2",".pb-md-2",".pl-md-2",".px-md-2",".py-md-2",".p-md-3",".pt-md-3",".pr-md-3",".pb-md-3",".pl-md-3",".px-md-3",".py-md-3",".p-md-4",".pt-md-4",".pr-md-4",".pb-md-4",".pl-md-4",".px-md-4",".py-md-4",".p-md-5",".pt-md-5",".pr-md-5",".pb-md-5",".pl-md-5",".px-md-5",".py-md-5",".p-md-6",".pt-md-6",".pr-md-6",".pb-md-6",".pl-md-6",".px-md-6",".py-md-6",".pt-md-7",".pr-md-7",".pb-md-7",".pl-md-7",".py-md-7",".pt-md-8",".pr-md-8",".pb-md-8",".pl-md-8",".py-md-8",".pt-md-9",".pr-md-9",".pb-md-9",".pl-md-9",".py-md-9",".pt-md-10",".pr-md-10",".pb-md-10",".pl-md-10",".py-md-10",".pt-md-11",".pr-md-11",".pb-md-11",".pl-md-11",".py-md-11",".pt-md-12",".pr-md-12",".pb-md-12",".pl-md-12",".py-md-12",".p-lg-0",".pt-lg-0",".pr-lg-0",".pb-lg-0",".pl-lg-0",".px-lg-0",".py-lg-0",".p-lg-1",".pt-lg-1",".pr-lg-1",".pb-lg-1",".pl-lg-1",".px-lg-1",".py-lg-1",".p-lg-2",".pt-lg-2",".pr-lg-2",".pb-lg-2",".pl-lg-2",".px-lg-2",".py-lg-2",".p-lg-3",".pt-lg-3",".pr-lg-3",".pb-lg-3",".pl-lg-3",".px-lg-3",".py-lg-3",".p-lg-4",".pt-lg-4",".pr-lg-4",".pb-lg-4",".pl-lg-4",".px-lg-4",".py-lg-4",".p-lg-5",".pt-lg-5",".pr-lg-5",".pb-lg-5",".pl-lg-5",".px-lg-5",".py-lg-5",".p-lg-6",".pt-lg-6",".pr-lg-6",".pb-lg-6",".pl-lg-6",".px-lg-6",".py-lg-6",".pt-lg-7",".pr-lg-7",".pb-lg-7",".pl-lg-7",".py-lg-7",".pt-lg-8",".pr-lg-8",".pb-lg-8",".pl-lg-8",".py-lg-8",".pt-lg-9",".pr-lg-9",".pb-lg-9",".pl-lg-9",".py-lg-9",".pt-lg-10",".pr-lg-10",".pb-lg-10",".pl-lg-10",".py-lg-10",".pt-lg-11",".pr-lg-11",".pb-lg-11",".pl-lg-11",".py-lg-11",".pt-lg-12",".pr-lg-12",".pb-lg-12",".pl-lg-12",".py-lg-12",".p-xl-0",".pt-xl-0",".pr-xl-0",".pb-xl-0",".pl-xl-0",".px-xl-0",".py-xl-0",".p-xl-1",".pt-xl-1",".pr-xl-1",".pb-xl-1",".pl-xl-1",".px-xl-1",".py-xl-1",".p-xl-2",".pt-xl-2",".pr-xl-2",".pb-xl-2",".pl-xl-2",".px-xl-2",".py-xl-2",".p-xl-3",".pt-xl-3",".pr-xl-3",".pb-xl-3",".pl-xl-3",".px-xl-3",".py-xl-3",".p-xl-4",".pt-xl-4",".pr-xl-4",".pb-xl-4",".pl-xl-4",".px-xl-4",".py-xl-4",".p-xl-5",".pt-xl-5",".pr-xl-5",".pb-xl-5",".pl-xl-5",".px-xl-5",".py-xl-5",".p-xl-6",".pt-xl-6",".pr-xl-6",".pb-xl-6",".pl-xl-6",".px-xl-6",".py-xl-6",".pt-xl-7",".pr-xl-7",".pb-xl-7",".pl-xl-7",".py-xl-7",".pt-xl-8",".pr-xl-8",".pb-xl-8",".pl-xl-8",".py-xl-8",".pt-xl-9",".pr-xl-9",".pb-xl-9",".pl-xl-9",".py-xl-9",".pt-xl-10",".pr-xl-10",".pb-xl-10",".pl-xl-10",".py-xl-10",".pt-xl-11",".pr-xl-11",".pb-xl-11",".pl-xl-11",".py-xl-11",".pt-xl-12",".pr-xl-12",".pb-xl-12",".pl-xl-12",".py-xl-12",".p-responsive",".h1",".h2",".h3",".h4",".h5",".h6",".f1",".f2",".f3",".f4",".f5",".f6",".f00-light",".f0-light",".f1-light",".f2-light",".f3-light",".text-small",".lead",".lh-condensed-ultra",".lh-condensed",".lh-default",".lh-0",".lh-sm-condensed-ultra",".lh-sm-condensed",".lh-sm-default",".lh-sm-0",".lh-md-condensed-ultra",".lh-md-condensed",".lh-md-default",".lh-md-0",".lh-lg-condensed-ultra",".lh-lg-condensed",".lh-lg-default",".lh-lg-0",".lh-xl-condensed-ultra",".lh-xl-condensed",".lh-xl-default",".lh-xl-0",".text-right",".text-left",".text-center",".text-sm-right",".text-sm-left",".text-sm-center",".text-md-right",".text-md-left",".text-md-center",".text-lg-right",".text-lg-left",".text-lg-center",".text-xl-right",".text-xl-left",".text-xl-center",".text-normal",".text-bold",".text-semibold",".text-light",".text-italic",".text-uppercase",".text-underline",".no-underline",".no-wrap",".ws-normal",".wb-break-word",".wb-break-all",".text-emphasized",".list-style-none",".text-mono",".user-select-none",".text-capitalize",".d-block",".d-flex",".d-inline",".d-inline-block",".d-inline-flex",".d-none",".d-table",".d-table-cell",".d-sm-block",".d-sm-flex",".d-sm-inline",".d-sm-inline-block",".d-sm-inline-flex",".d-sm-none",".d-sm-table",".d-sm-table-cell",".d-md-block",".d-md-flex",".d-md-inline",".d-md-inline-block",".d-md-inline-flex",".d-md-none",".d-md-table",".d-md-table-cell",".d-lg-block",".d-lg-flex",".d-lg-inline",".d-lg-inline-block",".d-lg-inline-flex",".d-lg-none",".d-lg-table",".d-lg-table-cell",".d-xl-block",".d-xl-flex",".d-xl-inline",".d-xl-inline-block",".d-xl-inline-flex",".d-xl-none",".d-xl-table",".d-xl-table-cell",".v-hidden",".v-visible",".hide-sm",".hide-md",".hide-lg",".hide-xl",".show-whenNarrow",".show-whenRegular",".show-whenWide",".show-whenRegular.hide-whenWide",".hide-whenNarrow",".hide-whenRegular",".hide-whenWide",".table-fixed",".sr-only",".show-on-focus",".show-on-focus:focus"]}
|
1
|
+
{
|
2
|
+
"name": "utilities",
|
3
|
+
"selectors": [
|
4
|
+
".anim-fade-in",
|
5
|
+
".anim-fade-in.fast",
|
6
|
+
".anim-fade-out",
|
7
|
+
".anim-fade-out.fast",
|
8
|
+
".anim-fade-up",
|
9
|
+
".anim-fade-down",
|
10
|
+
".anim-grow-x",
|
11
|
+
".anim-shrink-x",
|
12
|
+
".anim-scale-in",
|
13
|
+
".anim-pulse",
|
14
|
+
".anim-pulse-in",
|
15
|
+
".hover-grow",
|
16
|
+
".anim-hover-grow",
|
17
|
+
".hover-grow:hover",
|
18
|
+
".anim-hover-grow:hover",
|
19
|
+
".anim-rotate",
|
20
|
+
".border-x",
|
21
|
+
".border-y",
|
22
|
+
".border",
|
23
|
+
".border-0",
|
24
|
+
".border-top",
|
25
|
+
".border-right",
|
26
|
+
".border-bottom",
|
27
|
+
".border-left",
|
28
|
+
".border-top-0",
|
29
|
+
".border-right-0",
|
30
|
+
".border-bottom-0",
|
31
|
+
".border-left-0",
|
32
|
+
".rounded",
|
33
|
+
".rounded-0",
|
34
|
+
".rounded-1",
|
35
|
+
".rounded-2",
|
36
|
+
".rounded-3",
|
37
|
+
".rounded-top-0",
|
38
|
+
".rounded-top-1",
|
39
|
+
".rounded-top-2",
|
40
|
+
".rounded-top-3",
|
41
|
+
".rounded-right-0",
|
42
|
+
".rounded-right-1",
|
43
|
+
".rounded-right-2",
|
44
|
+
".rounded-right-3",
|
45
|
+
".rounded-bottom-0",
|
46
|
+
".rounded-bottom-1",
|
47
|
+
".rounded-bottom-2",
|
48
|
+
".rounded-bottom-3",
|
49
|
+
".rounded-left-0",
|
50
|
+
".rounded-left-1",
|
51
|
+
".rounded-left-2",
|
52
|
+
".rounded-left-3",
|
53
|
+
".border-sm",
|
54
|
+
".border-sm-0",
|
55
|
+
".border-sm-top",
|
56
|
+
".border-sm-right",
|
57
|
+
".border-sm-bottom",
|
58
|
+
".border-sm-left",
|
59
|
+
".border-sm-top-0",
|
60
|
+
".border-sm-right-0",
|
61
|
+
".border-sm-bottom-0",
|
62
|
+
".border-sm-left-0",
|
63
|
+
".rounded-sm",
|
64
|
+
".rounded-sm-0",
|
65
|
+
".rounded-sm-1",
|
66
|
+
".rounded-sm-2",
|
67
|
+
".rounded-sm-3",
|
68
|
+
".rounded-sm-top-0",
|
69
|
+
".rounded-sm-top-1",
|
70
|
+
".rounded-sm-top-2",
|
71
|
+
".rounded-sm-top-3",
|
72
|
+
".rounded-sm-right-0",
|
73
|
+
".rounded-sm-right-1",
|
74
|
+
".rounded-sm-right-2",
|
75
|
+
".rounded-sm-right-3",
|
76
|
+
".rounded-sm-bottom-0",
|
77
|
+
".rounded-sm-bottom-1",
|
78
|
+
".rounded-sm-bottom-2",
|
79
|
+
".rounded-sm-bottom-3",
|
80
|
+
".rounded-sm-left-0",
|
81
|
+
".rounded-sm-left-1",
|
82
|
+
".rounded-sm-left-2",
|
83
|
+
".rounded-sm-left-3",
|
84
|
+
".border-md",
|
85
|
+
".border-md-0",
|
86
|
+
".border-md-top",
|
87
|
+
".border-md-right",
|
88
|
+
".border-md-bottom",
|
89
|
+
".border-md-left",
|
90
|
+
".border-md-top-0",
|
91
|
+
".border-md-right-0",
|
92
|
+
".border-md-bottom-0",
|
93
|
+
".border-md-left-0",
|
94
|
+
".rounded-md",
|
95
|
+
".rounded-md-0",
|
96
|
+
".rounded-md-1",
|
97
|
+
".rounded-md-2",
|
98
|
+
".rounded-md-3",
|
99
|
+
".rounded-md-top-0",
|
100
|
+
".rounded-md-top-1",
|
101
|
+
".rounded-md-top-2",
|
102
|
+
".rounded-md-top-3",
|
103
|
+
".rounded-md-right-0",
|
104
|
+
".rounded-md-right-1",
|
105
|
+
".rounded-md-right-2",
|
106
|
+
".rounded-md-right-3",
|
107
|
+
".rounded-md-bottom-0",
|
108
|
+
".rounded-md-bottom-1",
|
109
|
+
".rounded-md-bottom-2",
|
110
|
+
".rounded-md-bottom-3",
|
111
|
+
".rounded-md-left-0",
|
112
|
+
".rounded-md-left-1",
|
113
|
+
".rounded-md-left-2",
|
114
|
+
".rounded-md-left-3",
|
115
|
+
".border-lg",
|
116
|
+
".border-lg-0",
|
117
|
+
".border-lg-top",
|
118
|
+
".border-lg-right",
|
119
|
+
".border-lg-bottom",
|
120
|
+
".border-lg-left",
|
121
|
+
".border-lg-top-0",
|
122
|
+
".border-lg-right-0",
|
123
|
+
".border-lg-bottom-0",
|
124
|
+
".border-lg-left-0",
|
125
|
+
".rounded-lg",
|
126
|
+
".rounded-lg-0",
|
127
|
+
".rounded-lg-1",
|
128
|
+
".rounded-lg-2",
|
129
|
+
".rounded-lg-3",
|
130
|
+
".rounded-lg-top-0",
|
131
|
+
".rounded-lg-top-1",
|
132
|
+
".rounded-lg-top-2",
|
133
|
+
".rounded-lg-top-3",
|
134
|
+
".rounded-lg-right-0",
|
135
|
+
".rounded-lg-right-1",
|
136
|
+
".rounded-lg-right-2",
|
137
|
+
".rounded-lg-right-3",
|
138
|
+
".rounded-lg-bottom-0",
|
139
|
+
".rounded-lg-bottom-1",
|
140
|
+
".rounded-lg-bottom-2",
|
141
|
+
".rounded-lg-bottom-3",
|
142
|
+
".rounded-lg-left-0",
|
143
|
+
".rounded-lg-left-1",
|
144
|
+
".rounded-lg-left-2",
|
145
|
+
".rounded-lg-left-3",
|
146
|
+
".border-xl",
|
147
|
+
".border-xl-0",
|
148
|
+
".border-xl-top",
|
149
|
+
".border-xl-right",
|
150
|
+
".border-xl-bottom",
|
151
|
+
".border-xl-left",
|
152
|
+
".border-xl-top-0",
|
153
|
+
".border-xl-right-0",
|
154
|
+
".border-xl-bottom-0",
|
155
|
+
".border-xl-left-0",
|
156
|
+
".rounded-xl",
|
157
|
+
".rounded-xl-0",
|
158
|
+
".rounded-xl-1",
|
159
|
+
".rounded-xl-2",
|
160
|
+
".rounded-xl-3",
|
161
|
+
".rounded-xl-top-0",
|
162
|
+
".rounded-xl-top-1",
|
163
|
+
".rounded-xl-top-2",
|
164
|
+
".rounded-xl-top-3",
|
165
|
+
".rounded-xl-right-0",
|
166
|
+
".rounded-xl-right-1",
|
167
|
+
".rounded-xl-right-2",
|
168
|
+
".rounded-xl-right-3",
|
169
|
+
".rounded-xl-bottom-0",
|
170
|
+
".rounded-xl-bottom-1",
|
171
|
+
".rounded-xl-bottom-2",
|
172
|
+
".rounded-xl-bottom-3",
|
173
|
+
".rounded-xl-left-0",
|
174
|
+
".rounded-xl-left-1",
|
175
|
+
".rounded-xl-left-2",
|
176
|
+
".rounded-xl-left-3",
|
177
|
+
".circle",
|
178
|
+
".border-dashed",
|
179
|
+
".color-shadow-small",
|
180
|
+
".color-shadow-medium",
|
181
|
+
".color-shadow-large",
|
182
|
+
".color-shadow-extra-large",
|
183
|
+
".box-shadow-none",
|
184
|
+
".color-fg-default",
|
185
|
+
".color-fg-muted",
|
186
|
+
".color-fg-subtle",
|
187
|
+
".color-fg-accent",
|
188
|
+
".color-fg-success",
|
189
|
+
".color-fg-attention",
|
190
|
+
".color-fg-severe",
|
191
|
+
".color-fg-danger",
|
192
|
+
".color-fg-open",
|
193
|
+
".color-fg-closed",
|
194
|
+
".color-fg-done",
|
195
|
+
".color-fg-sponsors",
|
196
|
+
".color-fg-on-emphasis",
|
197
|
+
".color-bg-default",
|
198
|
+
".color-bg-overlay",
|
199
|
+
".color-bg-inset",
|
200
|
+
".color-bg-subtle",
|
201
|
+
".color-bg-emphasis",
|
202
|
+
".color-bg-accent",
|
203
|
+
".color-bg-accent-emphasis",
|
204
|
+
".color-bg-success",
|
205
|
+
".color-bg-success-emphasis",
|
206
|
+
".color-bg-attention",
|
207
|
+
".color-bg-attention-emphasis",
|
208
|
+
".color-bg-severe",
|
209
|
+
".color-bg-severe-emphasis",
|
210
|
+
".color-bg-danger",
|
211
|
+
".color-bg-danger-emphasis",
|
212
|
+
".color-bg-open",
|
213
|
+
".color-bg-open-emphasis",
|
214
|
+
".color-bg-closed",
|
215
|
+
".color-bg-closed-emphasis",
|
216
|
+
".color-bg-done",
|
217
|
+
".color-bg-done-emphasis",
|
218
|
+
".color-bg-sponsors",
|
219
|
+
".color-bg-sponsors-emphasis",
|
220
|
+
".color-bg-transparent",
|
221
|
+
".color-border-default",
|
222
|
+
".color-border-muted",
|
223
|
+
".color-border-subtle",
|
224
|
+
".color-border-accent",
|
225
|
+
".color-border-accent-emphasis",
|
226
|
+
".color-border-success",
|
227
|
+
".color-border-success-emphasis",
|
228
|
+
".color-border-attention",
|
229
|
+
".color-border-attention-emphasis",
|
230
|
+
".color-border-severe",
|
231
|
+
".color-border-severe-emphasis",
|
232
|
+
".color-border-danger",
|
233
|
+
".color-border-danger-emphasis",
|
234
|
+
".color-border-open",
|
235
|
+
".color-border-open-emphasis",
|
236
|
+
".color-border-closed",
|
237
|
+
".color-border-closed-emphasis",
|
238
|
+
".color-border-done",
|
239
|
+
".color-border-done-emphasis",
|
240
|
+
".color-border-sponsors",
|
241
|
+
".color-border-sponsors-emphasis",
|
242
|
+
".color-fg-inherit",
|
243
|
+
".details-overlay[open]>summary::before",
|
244
|
+
".details-overlay-dark[open]>summary::before",
|
245
|
+
".details-reset>summary",
|
246
|
+
".details-reset>summary:focus",
|
247
|
+
".details-reset>summary:focus:not(:focus-visible)",
|
248
|
+
".details-reset>summary:focus-visible",
|
249
|
+
".details-reset>summary.btn-primary:focus",
|
250
|
+
".details-reset>summary.btn-primary:focus:not(:focus-visible)",
|
251
|
+
".details-reset>summary.btn-primary:focus-visible",
|
252
|
+
".details-reset>summary::before",
|
253
|
+
".details-reset>summary::-webkit-details-marker",
|
254
|
+
".details-overlay>summary",
|
255
|
+
".details-overlay>summary:focus",
|
256
|
+
".details-overlay>summary:focus:not(:focus-visible)",
|
257
|
+
".details-overlay>summary:focus-visible",
|
258
|
+
".details-overlay>summary.btn-primary:focus",
|
259
|
+
".details-overlay>summary.btn-primary:focus:not(:focus-visible)",
|
260
|
+
".details-overlay>summary.btn-primary:focus-visible",
|
261
|
+
".flex-row",
|
262
|
+
".flex-row-reverse",
|
263
|
+
".flex-column",
|
264
|
+
".flex-column-reverse",
|
265
|
+
".flex-wrap",
|
266
|
+
".flex-nowrap",
|
267
|
+
".flex-wrap-reverse",
|
268
|
+
".flex-justify-start",
|
269
|
+
".flex-justify-end",
|
270
|
+
".flex-justify-center",
|
271
|
+
".flex-justify-between",
|
272
|
+
".flex-justify-around",
|
273
|
+
".flex-items-start",
|
274
|
+
".flex-items-end",
|
275
|
+
".flex-items-center",
|
276
|
+
".flex-items-baseline",
|
277
|
+
".flex-items-stretch",
|
278
|
+
".flex-content-start",
|
279
|
+
".flex-content-end",
|
280
|
+
".flex-content-center",
|
281
|
+
".flex-content-between",
|
282
|
+
".flex-content-around",
|
283
|
+
".flex-content-stretch",
|
284
|
+
".flex-1",
|
285
|
+
".flex-auto",
|
286
|
+
".flex-grow-0",
|
287
|
+
".flex-shrink-0",
|
288
|
+
".flex-self-auto",
|
289
|
+
".flex-self-start",
|
290
|
+
".flex-self-end",
|
291
|
+
".flex-self-center",
|
292
|
+
".flex-self-baseline",
|
293
|
+
".flex-self-stretch",
|
294
|
+
".flex-order-1",
|
295
|
+
".flex-order-2",
|
296
|
+
".flex-order-none",
|
297
|
+
".flex-sm-row",
|
298
|
+
".flex-sm-row-reverse",
|
299
|
+
".flex-sm-column",
|
300
|
+
".flex-sm-column-reverse",
|
301
|
+
".flex-sm-wrap",
|
302
|
+
".flex-sm-nowrap",
|
303
|
+
".flex-sm-wrap-reverse",
|
304
|
+
".flex-sm-justify-start",
|
305
|
+
".flex-sm-justify-end",
|
306
|
+
".flex-sm-justify-center",
|
307
|
+
".flex-sm-justify-between",
|
308
|
+
".flex-sm-justify-around",
|
309
|
+
".flex-sm-items-start",
|
310
|
+
".flex-sm-items-end",
|
311
|
+
".flex-sm-items-center",
|
312
|
+
".flex-sm-items-baseline",
|
313
|
+
".flex-sm-items-stretch",
|
314
|
+
".flex-sm-content-start",
|
315
|
+
".flex-sm-content-end",
|
316
|
+
".flex-sm-content-center",
|
317
|
+
".flex-sm-content-between",
|
318
|
+
".flex-sm-content-around",
|
319
|
+
".flex-sm-content-stretch",
|
320
|
+
".flex-sm-1",
|
321
|
+
".flex-sm-auto",
|
322
|
+
".flex-sm-grow-0",
|
323
|
+
".flex-sm-shrink-0",
|
324
|
+
".flex-sm-self-auto",
|
325
|
+
".flex-sm-self-start",
|
326
|
+
".flex-sm-self-end",
|
327
|
+
".flex-sm-self-center",
|
328
|
+
".flex-sm-self-baseline",
|
329
|
+
".flex-sm-self-stretch",
|
330
|
+
".flex-sm-order-1",
|
331
|
+
".flex-sm-order-2",
|
332
|
+
".flex-sm-order-none",
|
333
|
+
".flex-md-row",
|
334
|
+
".flex-md-row-reverse",
|
335
|
+
".flex-md-column",
|
336
|
+
".flex-md-column-reverse",
|
337
|
+
".flex-md-wrap",
|
338
|
+
".flex-md-nowrap",
|
339
|
+
".flex-md-wrap-reverse",
|
340
|
+
".flex-md-justify-start",
|
341
|
+
".flex-md-justify-end",
|
342
|
+
".flex-md-justify-center",
|
343
|
+
".flex-md-justify-between",
|
344
|
+
".flex-md-justify-around",
|
345
|
+
".flex-md-items-start",
|
346
|
+
".flex-md-items-end",
|
347
|
+
".flex-md-items-center",
|
348
|
+
".flex-md-items-baseline",
|
349
|
+
".flex-md-items-stretch",
|
350
|
+
".flex-md-content-start",
|
351
|
+
".flex-md-content-end",
|
352
|
+
".flex-md-content-center",
|
353
|
+
".flex-md-content-between",
|
354
|
+
".flex-md-content-around",
|
355
|
+
".flex-md-content-stretch",
|
356
|
+
".flex-md-1",
|
357
|
+
".flex-md-auto",
|
358
|
+
".flex-md-grow-0",
|
359
|
+
".flex-md-shrink-0",
|
360
|
+
".flex-md-self-auto",
|
361
|
+
".flex-md-self-start",
|
362
|
+
".flex-md-self-end",
|
363
|
+
".flex-md-self-center",
|
364
|
+
".flex-md-self-baseline",
|
365
|
+
".flex-md-self-stretch",
|
366
|
+
".flex-md-order-1",
|
367
|
+
".flex-md-order-2",
|
368
|
+
".flex-md-order-none",
|
369
|
+
".flex-lg-row",
|
370
|
+
".flex-lg-row-reverse",
|
371
|
+
".flex-lg-column",
|
372
|
+
".flex-lg-column-reverse",
|
373
|
+
".flex-lg-wrap",
|
374
|
+
".flex-lg-nowrap",
|
375
|
+
".flex-lg-wrap-reverse",
|
376
|
+
".flex-lg-justify-start",
|
377
|
+
".flex-lg-justify-end",
|
378
|
+
".flex-lg-justify-center",
|
379
|
+
".flex-lg-justify-between",
|
380
|
+
".flex-lg-justify-around",
|
381
|
+
".flex-lg-items-start",
|
382
|
+
".flex-lg-items-end",
|
383
|
+
".flex-lg-items-center",
|
384
|
+
".flex-lg-items-baseline",
|
385
|
+
".flex-lg-items-stretch",
|
386
|
+
".flex-lg-content-start",
|
387
|
+
".flex-lg-content-end",
|
388
|
+
".flex-lg-content-center",
|
389
|
+
".flex-lg-content-between",
|
390
|
+
".flex-lg-content-around",
|
391
|
+
".flex-lg-content-stretch",
|
392
|
+
".flex-lg-1",
|
393
|
+
".flex-lg-auto",
|
394
|
+
".flex-lg-grow-0",
|
395
|
+
".flex-lg-shrink-0",
|
396
|
+
".flex-lg-self-auto",
|
397
|
+
".flex-lg-self-start",
|
398
|
+
".flex-lg-self-end",
|
399
|
+
".flex-lg-self-center",
|
400
|
+
".flex-lg-self-baseline",
|
401
|
+
".flex-lg-self-stretch",
|
402
|
+
".flex-lg-order-1",
|
403
|
+
".flex-lg-order-2",
|
404
|
+
".flex-lg-order-none",
|
405
|
+
".flex-xl-row",
|
406
|
+
".flex-xl-row-reverse",
|
407
|
+
".flex-xl-column",
|
408
|
+
".flex-xl-column-reverse",
|
409
|
+
".flex-xl-wrap",
|
410
|
+
".flex-xl-nowrap",
|
411
|
+
".flex-xl-wrap-reverse",
|
412
|
+
".flex-xl-justify-start",
|
413
|
+
".flex-xl-justify-end",
|
414
|
+
".flex-xl-justify-center",
|
415
|
+
".flex-xl-justify-between",
|
416
|
+
".flex-xl-justify-around",
|
417
|
+
".flex-xl-items-start",
|
418
|
+
".flex-xl-items-end",
|
419
|
+
".flex-xl-items-center",
|
420
|
+
".flex-xl-items-baseline",
|
421
|
+
".flex-xl-items-stretch",
|
422
|
+
".flex-xl-content-start",
|
423
|
+
".flex-xl-content-end",
|
424
|
+
".flex-xl-content-center",
|
425
|
+
".flex-xl-content-between",
|
426
|
+
".flex-xl-content-around",
|
427
|
+
".flex-xl-content-stretch",
|
428
|
+
".flex-xl-1",
|
429
|
+
".flex-xl-auto",
|
430
|
+
".flex-xl-grow-0",
|
431
|
+
".flex-xl-shrink-0",
|
432
|
+
".flex-xl-self-auto",
|
433
|
+
".flex-xl-self-start",
|
434
|
+
".flex-xl-self-end",
|
435
|
+
".flex-xl-self-center",
|
436
|
+
".flex-xl-self-baseline",
|
437
|
+
".flex-xl-self-stretch",
|
438
|
+
".flex-xl-order-1",
|
439
|
+
".flex-xl-order-2",
|
440
|
+
".flex-xl-order-none",
|
441
|
+
".position-static",
|
442
|
+
".position-relative",
|
443
|
+
".position-absolute",
|
444
|
+
".position-fixed",
|
445
|
+
".position-sticky",
|
446
|
+
".position-sm-static",
|
447
|
+
".position-sm-relative",
|
448
|
+
".position-sm-absolute",
|
449
|
+
".position-sm-fixed",
|
450
|
+
".position-sm-sticky",
|
451
|
+
".position-md-static",
|
452
|
+
".position-md-relative",
|
453
|
+
".position-md-absolute",
|
454
|
+
".position-md-fixed",
|
455
|
+
".position-md-sticky",
|
456
|
+
".position-lg-static",
|
457
|
+
".position-lg-relative",
|
458
|
+
".position-lg-absolute",
|
459
|
+
".position-lg-fixed",
|
460
|
+
".position-lg-sticky",
|
461
|
+
".position-xl-static",
|
462
|
+
".position-xl-relative",
|
463
|
+
".position-xl-absolute",
|
464
|
+
".position-xl-fixed",
|
465
|
+
".position-xl-sticky",
|
466
|
+
".top-0",
|
467
|
+
".right-0",
|
468
|
+
".bottom-0",
|
469
|
+
".left-0",
|
470
|
+
".top-auto",
|
471
|
+
".right-auto",
|
472
|
+
".bottom-auto",
|
473
|
+
".left-auto",
|
474
|
+
".top-sm-0",
|
475
|
+
".right-sm-0",
|
476
|
+
".bottom-sm-0",
|
477
|
+
".left-sm-0",
|
478
|
+
".top-sm-auto",
|
479
|
+
".right-sm-auto",
|
480
|
+
".bottom-sm-auto",
|
481
|
+
".left-sm-auto",
|
482
|
+
".top-md-0",
|
483
|
+
".right-md-0",
|
484
|
+
".bottom-md-0",
|
485
|
+
".left-md-0",
|
486
|
+
".top-md-auto",
|
487
|
+
".right-md-auto",
|
488
|
+
".bottom-md-auto",
|
489
|
+
".left-md-auto",
|
490
|
+
".top-lg-0",
|
491
|
+
".right-lg-0",
|
492
|
+
".bottom-lg-0",
|
493
|
+
".left-lg-0",
|
494
|
+
".top-lg-auto",
|
495
|
+
".right-lg-auto",
|
496
|
+
".bottom-lg-auto",
|
497
|
+
".left-lg-auto",
|
498
|
+
".top-xl-0",
|
499
|
+
".right-xl-0",
|
500
|
+
".bottom-xl-0",
|
501
|
+
".left-xl-0",
|
502
|
+
".top-xl-auto",
|
503
|
+
".right-xl-auto",
|
504
|
+
".bottom-xl-auto",
|
505
|
+
".left-xl-auto",
|
506
|
+
".v-align-middle",
|
507
|
+
".v-align-top",
|
508
|
+
".v-align-bottom",
|
509
|
+
".v-align-text-top",
|
510
|
+
".v-align-text-bottom",
|
511
|
+
".v-align-baseline",
|
512
|
+
".overflow-visible",
|
513
|
+
".overflow-x-visible",
|
514
|
+
".overflow-y-visible",
|
515
|
+
".overflow-hidden",
|
516
|
+
".overflow-x-hidden",
|
517
|
+
".overflow-y-hidden",
|
518
|
+
".overflow-auto",
|
519
|
+
".overflow-x-auto",
|
520
|
+
".overflow-y-auto",
|
521
|
+
".overflow-scroll",
|
522
|
+
".overflow-x-scroll",
|
523
|
+
".overflow-y-scroll",
|
524
|
+
".overflow-sm-visible",
|
525
|
+
".overflow-sm-x-visible",
|
526
|
+
".overflow-sm-y-visible",
|
527
|
+
".overflow-sm-hidden",
|
528
|
+
".overflow-sm-x-hidden",
|
529
|
+
".overflow-sm-y-hidden",
|
530
|
+
".overflow-sm-auto",
|
531
|
+
".overflow-sm-x-auto",
|
532
|
+
".overflow-sm-y-auto",
|
533
|
+
".overflow-sm-scroll",
|
534
|
+
".overflow-sm-x-scroll",
|
535
|
+
".overflow-sm-y-scroll",
|
536
|
+
".overflow-md-visible",
|
537
|
+
".overflow-md-x-visible",
|
538
|
+
".overflow-md-y-visible",
|
539
|
+
".overflow-md-hidden",
|
540
|
+
".overflow-md-x-hidden",
|
541
|
+
".overflow-md-y-hidden",
|
542
|
+
".overflow-md-auto",
|
543
|
+
".overflow-md-x-auto",
|
544
|
+
".overflow-md-y-auto",
|
545
|
+
".overflow-md-scroll",
|
546
|
+
".overflow-md-x-scroll",
|
547
|
+
".overflow-md-y-scroll",
|
548
|
+
".overflow-lg-visible",
|
549
|
+
".overflow-lg-x-visible",
|
550
|
+
".overflow-lg-y-visible",
|
551
|
+
".overflow-lg-hidden",
|
552
|
+
".overflow-lg-x-hidden",
|
553
|
+
".overflow-lg-y-hidden",
|
554
|
+
".overflow-lg-auto",
|
555
|
+
".overflow-lg-x-auto",
|
556
|
+
".overflow-lg-y-auto",
|
557
|
+
".overflow-lg-scroll",
|
558
|
+
".overflow-lg-x-scroll",
|
559
|
+
".overflow-lg-y-scroll",
|
560
|
+
".overflow-xl-visible",
|
561
|
+
".overflow-xl-x-visible",
|
562
|
+
".overflow-xl-y-visible",
|
563
|
+
".overflow-xl-hidden",
|
564
|
+
".overflow-xl-x-hidden",
|
565
|
+
".overflow-xl-y-hidden",
|
566
|
+
".overflow-xl-auto",
|
567
|
+
".overflow-xl-x-auto",
|
568
|
+
".overflow-xl-y-auto",
|
569
|
+
".overflow-xl-scroll",
|
570
|
+
".overflow-xl-x-scroll",
|
571
|
+
".overflow-xl-y-scroll",
|
572
|
+
".clearfix::before",
|
573
|
+
".clearfix::after",
|
574
|
+
".float-left",
|
575
|
+
".float-right",
|
576
|
+
".float-none",
|
577
|
+
".float-sm-left",
|
578
|
+
".float-sm-right",
|
579
|
+
".float-sm-none",
|
580
|
+
".float-md-left",
|
581
|
+
".float-md-right",
|
582
|
+
".float-md-none",
|
583
|
+
".float-lg-left",
|
584
|
+
".float-lg-right",
|
585
|
+
".float-lg-none",
|
586
|
+
".float-xl-left",
|
587
|
+
".float-xl-right",
|
588
|
+
".float-xl-none",
|
589
|
+
".width-fit",
|
590
|
+
".width-full",
|
591
|
+
".height-fit",
|
592
|
+
".height-full",
|
593
|
+
".min-width-0",
|
594
|
+
".width-auto",
|
595
|
+
".direction-rtl",
|
596
|
+
".direction-ltr",
|
597
|
+
".width-sm-auto",
|
598
|
+
".direction-sm-rtl",
|
599
|
+
".direction-sm-ltr",
|
600
|
+
".width-md-auto",
|
601
|
+
".direction-md-rtl",
|
602
|
+
".direction-md-ltr",
|
603
|
+
".width-lg-auto",
|
604
|
+
".direction-lg-rtl",
|
605
|
+
".direction-lg-ltr",
|
606
|
+
".width-xl-auto",
|
607
|
+
".direction-xl-rtl",
|
608
|
+
".direction-xl-ltr",
|
609
|
+
".m-0",
|
610
|
+
".mt-0",
|
611
|
+
".mb-0",
|
612
|
+
".mr-0",
|
613
|
+
".ml-0",
|
614
|
+
".mx-0",
|
615
|
+
".my-0",
|
616
|
+
".m-1",
|
617
|
+
".mt-1",
|
618
|
+
".mb-1",
|
619
|
+
".mr-1",
|
620
|
+
".ml-1",
|
621
|
+
".mt-n1",
|
622
|
+
".mb-n1",
|
623
|
+
".mr-n1",
|
624
|
+
".ml-n1",
|
625
|
+
".mx-1",
|
626
|
+
".my-1",
|
627
|
+
".m-2",
|
628
|
+
".mt-2",
|
629
|
+
".mb-2",
|
630
|
+
".mr-2",
|
631
|
+
".ml-2",
|
632
|
+
".mt-n2",
|
633
|
+
".mb-n2",
|
634
|
+
".mr-n2",
|
635
|
+
".ml-n2",
|
636
|
+
".mx-2",
|
637
|
+
".my-2",
|
638
|
+
".m-3",
|
639
|
+
".mt-3",
|
640
|
+
".mb-3",
|
641
|
+
".mr-3",
|
642
|
+
".ml-3",
|
643
|
+
".mt-n3",
|
644
|
+
".mb-n3",
|
645
|
+
".mr-n3",
|
646
|
+
".ml-n3",
|
647
|
+
".mx-3",
|
648
|
+
".my-3",
|
649
|
+
".m-4",
|
650
|
+
".mt-4",
|
651
|
+
".mb-4",
|
652
|
+
".mr-4",
|
653
|
+
".ml-4",
|
654
|
+
".mt-n4",
|
655
|
+
".mb-n4",
|
656
|
+
".mr-n4",
|
657
|
+
".ml-n4",
|
658
|
+
".mx-4",
|
659
|
+
".my-4",
|
660
|
+
".m-5",
|
661
|
+
".mt-5",
|
662
|
+
".mb-5",
|
663
|
+
".mr-5",
|
664
|
+
".ml-5",
|
665
|
+
".mt-n5",
|
666
|
+
".mb-n5",
|
667
|
+
".mr-n5",
|
668
|
+
".ml-n5",
|
669
|
+
".mx-5",
|
670
|
+
".my-5",
|
671
|
+
".m-6",
|
672
|
+
".mt-6",
|
673
|
+
".mb-6",
|
674
|
+
".mr-6",
|
675
|
+
".ml-6",
|
676
|
+
".mt-n6",
|
677
|
+
".mb-n6",
|
678
|
+
".mr-n6",
|
679
|
+
".ml-n6",
|
680
|
+
".mx-6",
|
681
|
+
".my-6",
|
682
|
+
".mt-7",
|
683
|
+
".mb-7",
|
684
|
+
".mt-n7",
|
685
|
+
".mb-n7",
|
686
|
+
".my-7",
|
687
|
+
".mt-8",
|
688
|
+
".mb-8",
|
689
|
+
".mt-n8",
|
690
|
+
".mb-n8",
|
691
|
+
".my-8",
|
692
|
+
".mt-9",
|
693
|
+
".mb-9",
|
694
|
+
".mt-n9",
|
695
|
+
".mb-n9",
|
696
|
+
".my-9",
|
697
|
+
".mt-10",
|
698
|
+
".mb-10",
|
699
|
+
".mt-n10",
|
700
|
+
".mb-n10",
|
701
|
+
".my-10",
|
702
|
+
".mt-11",
|
703
|
+
".mb-11",
|
704
|
+
".mt-n11",
|
705
|
+
".mb-n11",
|
706
|
+
".my-11",
|
707
|
+
".mt-12",
|
708
|
+
".mb-12",
|
709
|
+
".mt-n12",
|
710
|
+
".mb-n12",
|
711
|
+
".my-12",
|
712
|
+
".mx-auto",
|
713
|
+
".m-sm-0",
|
714
|
+
".mt-sm-0",
|
715
|
+
".mb-sm-0",
|
716
|
+
".mr-sm-0",
|
717
|
+
".ml-sm-0",
|
718
|
+
".mx-sm-0",
|
719
|
+
".my-sm-0",
|
720
|
+
".m-sm-1",
|
721
|
+
".mt-sm-1",
|
722
|
+
".mb-sm-1",
|
723
|
+
".mr-sm-1",
|
724
|
+
".ml-sm-1",
|
725
|
+
".mt-sm-n1",
|
726
|
+
".mb-sm-n1",
|
727
|
+
".mr-sm-n1",
|
728
|
+
".ml-sm-n1",
|
729
|
+
".mx-sm-1",
|
730
|
+
".my-sm-1",
|
731
|
+
".m-sm-2",
|
732
|
+
".mt-sm-2",
|
733
|
+
".mb-sm-2",
|
734
|
+
".mr-sm-2",
|
735
|
+
".ml-sm-2",
|
736
|
+
".mt-sm-n2",
|
737
|
+
".mb-sm-n2",
|
738
|
+
".mr-sm-n2",
|
739
|
+
".ml-sm-n2",
|
740
|
+
".mx-sm-2",
|
741
|
+
".my-sm-2",
|
742
|
+
".m-sm-3",
|
743
|
+
".mt-sm-3",
|
744
|
+
".mb-sm-3",
|
745
|
+
".mr-sm-3",
|
746
|
+
".ml-sm-3",
|
747
|
+
".mt-sm-n3",
|
748
|
+
".mb-sm-n3",
|
749
|
+
".mr-sm-n3",
|
750
|
+
".ml-sm-n3",
|
751
|
+
".mx-sm-3",
|
752
|
+
".my-sm-3",
|
753
|
+
".m-sm-4",
|
754
|
+
".mt-sm-4",
|
755
|
+
".mb-sm-4",
|
756
|
+
".mr-sm-4",
|
757
|
+
".ml-sm-4",
|
758
|
+
".mt-sm-n4",
|
759
|
+
".mb-sm-n4",
|
760
|
+
".mr-sm-n4",
|
761
|
+
".ml-sm-n4",
|
762
|
+
".mx-sm-4",
|
763
|
+
".my-sm-4",
|
764
|
+
".m-sm-5",
|
765
|
+
".mt-sm-5",
|
766
|
+
".mb-sm-5",
|
767
|
+
".mr-sm-5",
|
768
|
+
".ml-sm-5",
|
769
|
+
".mt-sm-n5",
|
770
|
+
".mb-sm-n5",
|
771
|
+
".mr-sm-n5",
|
772
|
+
".ml-sm-n5",
|
773
|
+
".mx-sm-5",
|
774
|
+
".my-sm-5",
|
775
|
+
".m-sm-6",
|
776
|
+
".mt-sm-6",
|
777
|
+
".mb-sm-6",
|
778
|
+
".mr-sm-6",
|
779
|
+
".ml-sm-6",
|
780
|
+
".mt-sm-n6",
|
781
|
+
".mb-sm-n6",
|
782
|
+
".mr-sm-n6",
|
783
|
+
".ml-sm-n6",
|
784
|
+
".mx-sm-6",
|
785
|
+
".my-sm-6",
|
786
|
+
".mt-sm-7",
|
787
|
+
".mb-sm-7",
|
788
|
+
".mt-sm-n7",
|
789
|
+
".mb-sm-n7",
|
790
|
+
".my-sm-7",
|
791
|
+
".mt-sm-8",
|
792
|
+
".mb-sm-8",
|
793
|
+
".mt-sm-n8",
|
794
|
+
".mb-sm-n8",
|
795
|
+
".my-sm-8",
|
796
|
+
".mt-sm-9",
|
797
|
+
".mb-sm-9",
|
798
|
+
".mt-sm-n9",
|
799
|
+
".mb-sm-n9",
|
800
|
+
".my-sm-9",
|
801
|
+
".mt-sm-10",
|
802
|
+
".mb-sm-10",
|
803
|
+
".mt-sm-n10",
|
804
|
+
".mb-sm-n10",
|
805
|
+
".my-sm-10",
|
806
|
+
".mt-sm-11",
|
807
|
+
".mb-sm-11",
|
808
|
+
".mt-sm-n11",
|
809
|
+
".mb-sm-n11",
|
810
|
+
".my-sm-11",
|
811
|
+
".mt-sm-12",
|
812
|
+
".mb-sm-12",
|
813
|
+
".mt-sm-n12",
|
814
|
+
".mb-sm-n12",
|
815
|
+
".my-sm-12",
|
816
|
+
".mx-sm-auto",
|
817
|
+
".m-md-0",
|
818
|
+
".mt-md-0",
|
819
|
+
".mb-md-0",
|
820
|
+
".mr-md-0",
|
821
|
+
".ml-md-0",
|
822
|
+
".mx-md-0",
|
823
|
+
".my-md-0",
|
824
|
+
".m-md-1",
|
825
|
+
".mt-md-1",
|
826
|
+
".mb-md-1",
|
827
|
+
".mr-md-1",
|
828
|
+
".ml-md-1",
|
829
|
+
".mt-md-n1",
|
830
|
+
".mb-md-n1",
|
831
|
+
".mr-md-n1",
|
832
|
+
".ml-md-n1",
|
833
|
+
".mx-md-1",
|
834
|
+
".my-md-1",
|
835
|
+
".m-md-2",
|
836
|
+
".mt-md-2",
|
837
|
+
".mb-md-2",
|
838
|
+
".mr-md-2",
|
839
|
+
".ml-md-2",
|
840
|
+
".mt-md-n2",
|
841
|
+
".mb-md-n2",
|
842
|
+
".mr-md-n2",
|
843
|
+
".ml-md-n2",
|
844
|
+
".mx-md-2",
|
845
|
+
".my-md-2",
|
846
|
+
".m-md-3",
|
847
|
+
".mt-md-3",
|
848
|
+
".mb-md-3",
|
849
|
+
".mr-md-3",
|
850
|
+
".ml-md-3",
|
851
|
+
".mt-md-n3",
|
852
|
+
".mb-md-n3",
|
853
|
+
".mr-md-n3",
|
854
|
+
".ml-md-n3",
|
855
|
+
".mx-md-3",
|
856
|
+
".my-md-3",
|
857
|
+
".m-md-4",
|
858
|
+
".mt-md-4",
|
859
|
+
".mb-md-4",
|
860
|
+
".mr-md-4",
|
861
|
+
".ml-md-4",
|
862
|
+
".mt-md-n4",
|
863
|
+
".mb-md-n4",
|
864
|
+
".mr-md-n4",
|
865
|
+
".ml-md-n4",
|
866
|
+
".mx-md-4",
|
867
|
+
".my-md-4",
|
868
|
+
".m-md-5",
|
869
|
+
".mt-md-5",
|
870
|
+
".mb-md-5",
|
871
|
+
".mr-md-5",
|
872
|
+
".ml-md-5",
|
873
|
+
".mt-md-n5",
|
874
|
+
".mb-md-n5",
|
875
|
+
".mr-md-n5",
|
876
|
+
".ml-md-n5",
|
877
|
+
".mx-md-5",
|
878
|
+
".my-md-5",
|
879
|
+
".m-md-6",
|
880
|
+
".mt-md-6",
|
881
|
+
".mb-md-6",
|
882
|
+
".mr-md-6",
|
883
|
+
".ml-md-6",
|
884
|
+
".mt-md-n6",
|
885
|
+
".mb-md-n6",
|
886
|
+
".mr-md-n6",
|
887
|
+
".ml-md-n6",
|
888
|
+
".mx-md-6",
|
889
|
+
".my-md-6",
|
890
|
+
".mt-md-7",
|
891
|
+
".mb-md-7",
|
892
|
+
".mt-md-n7",
|
893
|
+
".mb-md-n7",
|
894
|
+
".my-md-7",
|
895
|
+
".mt-md-8",
|
896
|
+
".mb-md-8",
|
897
|
+
".mt-md-n8",
|
898
|
+
".mb-md-n8",
|
899
|
+
".my-md-8",
|
900
|
+
".mt-md-9",
|
901
|
+
".mb-md-9",
|
902
|
+
".mt-md-n9",
|
903
|
+
".mb-md-n9",
|
904
|
+
".my-md-9",
|
905
|
+
".mt-md-10",
|
906
|
+
".mb-md-10",
|
907
|
+
".mt-md-n10",
|
908
|
+
".mb-md-n10",
|
909
|
+
".my-md-10",
|
910
|
+
".mt-md-11",
|
911
|
+
".mb-md-11",
|
912
|
+
".mt-md-n11",
|
913
|
+
".mb-md-n11",
|
914
|
+
".my-md-11",
|
915
|
+
".mt-md-12",
|
916
|
+
".mb-md-12",
|
917
|
+
".mt-md-n12",
|
918
|
+
".mb-md-n12",
|
919
|
+
".my-md-12",
|
920
|
+
".mx-md-auto",
|
921
|
+
".m-lg-0",
|
922
|
+
".mt-lg-0",
|
923
|
+
".mb-lg-0",
|
924
|
+
".mr-lg-0",
|
925
|
+
".ml-lg-0",
|
926
|
+
".mx-lg-0",
|
927
|
+
".my-lg-0",
|
928
|
+
".m-lg-1",
|
929
|
+
".mt-lg-1",
|
930
|
+
".mb-lg-1",
|
931
|
+
".mr-lg-1",
|
932
|
+
".ml-lg-1",
|
933
|
+
".mt-lg-n1",
|
934
|
+
".mb-lg-n1",
|
935
|
+
".mr-lg-n1",
|
936
|
+
".ml-lg-n1",
|
937
|
+
".mx-lg-1",
|
938
|
+
".my-lg-1",
|
939
|
+
".m-lg-2",
|
940
|
+
".mt-lg-2",
|
941
|
+
".mb-lg-2",
|
942
|
+
".mr-lg-2",
|
943
|
+
".ml-lg-2",
|
944
|
+
".mt-lg-n2",
|
945
|
+
".mb-lg-n2",
|
946
|
+
".mr-lg-n2",
|
947
|
+
".ml-lg-n2",
|
948
|
+
".mx-lg-2",
|
949
|
+
".my-lg-2",
|
950
|
+
".m-lg-3",
|
951
|
+
".mt-lg-3",
|
952
|
+
".mb-lg-3",
|
953
|
+
".mr-lg-3",
|
954
|
+
".ml-lg-3",
|
955
|
+
".mt-lg-n3",
|
956
|
+
".mb-lg-n3",
|
957
|
+
".mr-lg-n3",
|
958
|
+
".ml-lg-n3",
|
959
|
+
".mx-lg-3",
|
960
|
+
".my-lg-3",
|
961
|
+
".m-lg-4",
|
962
|
+
".mt-lg-4",
|
963
|
+
".mb-lg-4",
|
964
|
+
".mr-lg-4",
|
965
|
+
".ml-lg-4",
|
966
|
+
".mt-lg-n4",
|
967
|
+
".mb-lg-n4",
|
968
|
+
".mr-lg-n4",
|
969
|
+
".ml-lg-n4",
|
970
|
+
".mx-lg-4",
|
971
|
+
".my-lg-4",
|
972
|
+
".m-lg-5",
|
973
|
+
".mt-lg-5",
|
974
|
+
".mb-lg-5",
|
975
|
+
".mr-lg-5",
|
976
|
+
".ml-lg-5",
|
977
|
+
".mt-lg-n5",
|
978
|
+
".mb-lg-n5",
|
979
|
+
".mr-lg-n5",
|
980
|
+
".ml-lg-n5",
|
981
|
+
".mx-lg-5",
|
982
|
+
".my-lg-5",
|
983
|
+
".m-lg-6",
|
984
|
+
".mt-lg-6",
|
985
|
+
".mb-lg-6",
|
986
|
+
".mr-lg-6",
|
987
|
+
".ml-lg-6",
|
988
|
+
".mt-lg-n6",
|
989
|
+
".mb-lg-n6",
|
990
|
+
".mr-lg-n6",
|
991
|
+
".ml-lg-n6",
|
992
|
+
".mx-lg-6",
|
993
|
+
".my-lg-6",
|
994
|
+
".mt-lg-7",
|
995
|
+
".mb-lg-7",
|
996
|
+
".mt-lg-n7",
|
997
|
+
".mb-lg-n7",
|
998
|
+
".my-lg-7",
|
999
|
+
".mt-lg-8",
|
1000
|
+
".mb-lg-8",
|
1001
|
+
".mt-lg-n8",
|
1002
|
+
".mb-lg-n8",
|
1003
|
+
".my-lg-8",
|
1004
|
+
".mt-lg-9",
|
1005
|
+
".mb-lg-9",
|
1006
|
+
".mt-lg-n9",
|
1007
|
+
".mb-lg-n9",
|
1008
|
+
".my-lg-9",
|
1009
|
+
".mt-lg-10",
|
1010
|
+
".mb-lg-10",
|
1011
|
+
".mt-lg-n10",
|
1012
|
+
".mb-lg-n10",
|
1013
|
+
".my-lg-10",
|
1014
|
+
".mt-lg-11",
|
1015
|
+
".mb-lg-11",
|
1016
|
+
".mt-lg-n11",
|
1017
|
+
".mb-lg-n11",
|
1018
|
+
".my-lg-11",
|
1019
|
+
".mt-lg-12",
|
1020
|
+
".mb-lg-12",
|
1021
|
+
".mt-lg-n12",
|
1022
|
+
".mb-lg-n12",
|
1023
|
+
".my-lg-12",
|
1024
|
+
".mx-lg-auto",
|
1025
|
+
".m-xl-0",
|
1026
|
+
".mt-xl-0",
|
1027
|
+
".mb-xl-0",
|
1028
|
+
".mr-xl-0",
|
1029
|
+
".ml-xl-0",
|
1030
|
+
".mx-xl-0",
|
1031
|
+
".my-xl-0",
|
1032
|
+
".m-xl-1",
|
1033
|
+
".mt-xl-1",
|
1034
|
+
".mb-xl-1",
|
1035
|
+
".mr-xl-1",
|
1036
|
+
".ml-xl-1",
|
1037
|
+
".mt-xl-n1",
|
1038
|
+
".mb-xl-n1",
|
1039
|
+
".mr-xl-n1",
|
1040
|
+
".ml-xl-n1",
|
1041
|
+
".mx-xl-1",
|
1042
|
+
".my-xl-1",
|
1043
|
+
".m-xl-2",
|
1044
|
+
".mt-xl-2",
|
1045
|
+
".mb-xl-2",
|
1046
|
+
".mr-xl-2",
|
1047
|
+
".ml-xl-2",
|
1048
|
+
".mt-xl-n2",
|
1049
|
+
".mb-xl-n2",
|
1050
|
+
".mr-xl-n2",
|
1051
|
+
".ml-xl-n2",
|
1052
|
+
".mx-xl-2",
|
1053
|
+
".my-xl-2",
|
1054
|
+
".m-xl-3",
|
1055
|
+
".mt-xl-3",
|
1056
|
+
".mb-xl-3",
|
1057
|
+
".mr-xl-3",
|
1058
|
+
".ml-xl-3",
|
1059
|
+
".mt-xl-n3",
|
1060
|
+
".mb-xl-n3",
|
1061
|
+
".mr-xl-n3",
|
1062
|
+
".ml-xl-n3",
|
1063
|
+
".mx-xl-3",
|
1064
|
+
".my-xl-3",
|
1065
|
+
".m-xl-4",
|
1066
|
+
".mt-xl-4",
|
1067
|
+
".mb-xl-4",
|
1068
|
+
".mr-xl-4",
|
1069
|
+
".ml-xl-4",
|
1070
|
+
".mt-xl-n4",
|
1071
|
+
".mb-xl-n4",
|
1072
|
+
".mr-xl-n4",
|
1073
|
+
".ml-xl-n4",
|
1074
|
+
".mx-xl-4",
|
1075
|
+
".my-xl-4",
|
1076
|
+
".m-xl-5",
|
1077
|
+
".mt-xl-5",
|
1078
|
+
".mb-xl-5",
|
1079
|
+
".mr-xl-5",
|
1080
|
+
".ml-xl-5",
|
1081
|
+
".mt-xl-n5",
|
1082
|
+
".mb-xl-n5",
|
1083
|
+
".mr-xl-n5",
|
1084
|
+
".ml-xl-n5",
|
1085
|
+
".mx-xl-5",
|
1086
|
+
".my-xl-5",
|
1087
|
+
".m-xl-6",
|
1088
|
+
".mt-xl-6",
|
1089
|
+
".mb-xl-6",
|
1090
|
+
".mr-xl-6",
|
1091
|
+
".ml-xl-6",
|
1092
|
+
".mt-xl-n6",
|
1093
|
+
".mb-xl-n6",
|
1094
|
+
".mr-xl-n6",
|
1095
|
+
".ml-xl-n6",
|
1096
|
+
".mx-xl-6",
|
1097
|
+
".my-xl-6",
|
1098
|
+
".mt-xl-7",
|
1099
|
+
".mb-xl-7",
|
1100
|
+
".mt-xl-n7",
|
1101
|
+
".mb-xl-n7",
|
1102
|
+
".my-xl-7",
|
1103
|
+
".mt-xl-8",
|
1104
|
+
".mb-xl-8",
|
1105
|
+
".mt-xl-n8",
|
1106
|
+
".mb-xl-n8",
|
1107
|
+
".my-xl-8",
|
1108
|
+
".mt-xl-9",
|
1109
|
+
".mb-xl-9",
|
1110
|
+
".mt-xl-n9",
|
1111
|
+
".mb-xl-n9",
|
1112
|
+
".my-xl-9",
|
1113
|
+
".mt-xl-10",
|
1114
|
+
".mb-xl-10",
|
1115
|
+
".mt-xl-n10",
|
1116
|
+
".mb-xl-n10",
|
1117
|
+
".my-xl-10",
|
1118
|
+
".mt-xl-11",
|
1119
|
+
".mb-xl-11",
|
1120
|
+
".mt-xl-n11",
|
1121
|
+
".mb-xl-n11",
|
1122
|
+
".my-xl-11",
|
1123
|
+
".mt-xl-12",
|
1124
|
+
".mb-xl-12",
|
1125
|
+
".mt-xl-n12",
|
1126
|
+
".mb-xl-n12",
|
1127
|
+
".my-xl-12",
|
1128
|
+
".mx-xl-auto",
|
1129
|
+
".m-auto",
|
1130
|
+
".mt-auto",
|
1131
|
+
".mr-auto",
|
1132
|
+
".mb-auto",
|
1133
|
+
".ml-auto",
|
1134
|
+
".p-0",
|
1135
|
+
".pt-0",
|
1136
|
+
".pr-0",
|
1137
|
+
".pb-0",
|
1138
|
+
".pl-0",
|
1139
|
+
".px-0",
|
1140
|
+
".py-0",
|
1141
|
+
".p-1",
|
1142
|
+
".pt-1",
|
1143
|
+
".pr-1",
|
1144
|
+
".pb-1",
|
1145
|
+
".pl-1",
|
1146
|
+
".px-1",
|
1147
|
+
".py-1",
|
1148
|
+
".p-2",
|
1149
|
+
".pt-2",
|
1150
|
+
".pr-2",
|
1151
|
+
".pb-2",
|
1152
|
+
".pl-2",
|
1153
|
+
".px-2",
|
1154
|
+
".py-2",
|
1155
|
+
".p-3",
|
1156
|
+
".pt-3",
|
1157
|
+
".pr-3",
|
1158
|
+
".pb-3",
|
1159
|
+
".pl-3",
|
1160
|
+
".px-3",
|
1161
|
+
".py-3",
|
1162
|
+
".p-4",
|
1163
|
+
".pt-4",
|
1164
|
+
".pr-4",
|
1165
|
+
".pb-4",
|
1166
|
+
".pl-4",
|
1167
|
+
".px-4",
|
1168
|
+
".py-4",
|
1169
|
+
".p-5",
|
1170
|
+
".pt-5",
|
1171
|
+
".pr-5",
|
1172
|
+
".pb-5",
|
1173
|
+
".pl-5",
|
1174
|
+
".px-5",
|
1175
|
+
".py-5",
|
1176
|
+
".p-6",
|
1177
|
+
".pt-6",
|
1178
|
+
".pr-6",
|
1179
|
+
".pb-6",
|
1180
|
+
".pl-6",
|
1181
|
+
".px-6",
|
1182
|
+
".py-6",
|
1183
|
+
".pt-7",
|
1184
|
+
".pr-7",
|
1185
|
+
".pb-7",
|
1186
|
+
".pl-7",
|
1187
|
+
".py-7",
|
1188
|
+
".pt-8",
|
1189
|
+
".pr-8",
|
1190
|
+
".pb-8",
|
1191
|
+
".pl-8",
|
1192
|
+
".py-8",
|
1193
|
+
".pt-9",
|
1194
|
+
".pr-9",
|
1195
|
+
".pb-9",
|
1196
|
+
".pl-9",
|
1197
|
+
".py-9",
|
1198
|
+
".pt-10",
|
1199
|
+
".pr-10",
|
1200
|
+
".pb-10",
|
1201
|
+
".pl-10",
|
1202
|
+
".py-10",
|
1203
|
+
".pt-11",
|
1204
|
+
".pr-11",
|
1205
|
+
".pb-11",
|
1206
|
+
".pl-11",
|
1207
|
+
".py-11",
|
1208
|
+
".pt-12",
|
1209
|
+
".pr-12",
|
1210
|
+
".pb-12",
|
1211
|
+
".pl-12",
|
1212
|
+
".py-12",
|
1213
|
+
".p-sm-0",
|
1214
|
+
".pt-sm-0",
|
1215
|
+
".pr-sm-0",
|
1216
|
+
".pb-sm-0",
|
1217
|
+
".pl-sm-0",
|
1218
|
+
".px-sm-0",
|
1219
|
+
".py-sm-0",
|
1220
|
+
".p-sm-1",
|
1221
|
+
".pt-sm-1",
|
1222
|
+
".pr-sm-1",
|
1223
|
+
".pb-sm-1",
|
1224
|
+
".pl-sm-1",
|
1225
|
+
".px-sm-1",
|
1226
|
+
".py-sm-1",
|
1227
|
+
".p-sm-2",
|
1228
|
+
".pt-sm-2",
|
1229
|
+
".pr-sm-2",
|
1230
|
+
".pb-sm-2",
|
1231
|
+
".pl-sm-2",
|
1232
|
+
".px-sm-2",
|
1233
|
+
".py-sm-2",
|
1234
|
+
".p-sm-3",
|
1235
|
+
".pt-sm-3",
|
1236
|
+
".pr-sm-3",
|
1237
|
+
".pb-sm-3",
|
1238
|
+
".pl-sm-3",
|
1239
|
+
".px-sm-3",
|
1240
|
+
".py-sm-3",
|
1241
|
+
".p-sm-4",
|
1242
|
+
".pt-sm-4",
|
1243
|
+
".pr-sm-4",
|
1244
|
+
".pb-sm-4",
|
1245
|
+
".pl-sm-4",
|
1246
|
+
".px-sm-4",
|
1247
|
+
".py-sm-4",
|
1248
|
+
".p-sm-5",
|
1249
|
+
".pt-sm-5",
|
1250
|
+
".pr-sm-5",
|
1251
|
+
".pb-sm-5",
|
1252
|
+
".pl-sm-5",
|
1253
|
+
".px-sm-5",
|
1254
|
+
".py-sm-5",
|
1255
|
+
".p-sm-6",
|
1256
|
+
".pt-sm-6",
|
1257
|
+
".pr-sm-6",
|
1258
|
+
".pb-sm-6",
|
1259
|
+
".pl-sm-6",
|
1260
|
+
".px-sm-6",
|
1261
|
+
".py-sm-6",
|
1262
|
+
".pt-sm-7",
|
1263
|
+
".pr-sm-7",
|
1264
|
+
".pb-sm-7",
|
1265
|
+
".pl-sm-7",
|
1266
|
+
".py-sm-7",
|
1267
|
+
".pt-sm-8",
|
1268
|
+
".pr-sm-8",
|
1269
|
+
".pb-sm-8",
|
1270
|
+
".pl-sm-8",
|
1271
|
+
".py-sm-8",
|
1272
|
+
".pt-sm-9",
|
1273
|
+
".pr-sm-9",
|
1274
|
+
".pb-sm-9",
|
1275
|
+
".pl-sm-9",
|
1276
|
+
".py-sm-9",
|
1277
|
+
".pt-sm-10",
|
1278
|
+
".pr-sm-10",
|
1279
|
+
".pb-sm-10",
|
1280
|
+
".pl-sm-10",
|
1281
|
+
".py-sm-10",
|
1282
|
+
".pt-sm-11",
|
1283
|
+
".pr-sm-11",
|
1284
|
+
".pb-sm-11",
|
1285
|
+
".pl-sm-11",
|
1286
|
+
".py-sm-11",
|
1287
|
+
".pt-sm-12",
|
1288
|
+
".pr-sm-12",
|
1289
|
+
".pb-sm-12",
|
1290
|
+
".pl-sm-12",
|
1291
|
+
".py-sm-12",
|
1292
|
+
".p-md-0",
|
1293
|
+
".pt-md-0",
|
1294
|
+
".pr-md-0",
|
1295
|
+
".pb-md-0",
|
1296
|
+
".pl-md-0",
|
1297
|
+
".px-md-0",
|
1298
|
+
".py-md-0",
|
1299
|
+
".p-md-1",
|
1300
|
+
".pt-md-1",
|
1301
|
+
".pr-md-1",
|
1302
|
+
".pb-md-1",
|
1303
|
+
".pl-md-1",
|
1304
|
+
".px-md-1",
|
1305
|
+
".py-md-1",
|
1306
|
+
".p-md-2",
|
1307
|
+
".pt-md-2",
|
1308
|
+
".pr-md-2",
|
1309
|
+
".pb-md-2",
|
1310
|
+
".pl-md-2",
|
1311
|
+
".px-md-2",
|
1312
|
+
".py-md-2",
|
1313
|
+
".p-md-3",
|
1314
|
+
".pt-md-3",
|
1315
|
+
".pr-md-3",
|
1316
|
+
".pb-md-3",
|
1317
|
+
".pl-md-3",
|
1318
|
+
".px-md-3",
|
1319
|
+
".py-md-3",
|
1320
|
+
".p-md-4",
|
1321
|
+
".pt-md-4",
|
1322
|
+
".pr-md-4",
|
1323
|
+
".pb-md-4",
|
1324
|
+
".pl-md-4",
|
1325
|
+
".px-md-4",
|
1326
|
+
".py-md-4",
|
1327
|
+
".p-md-5",
|
1328
|
+
".pt-md-5",
|
1329
|
+
".pr-md-5",
|
1330
|
+
".pb-md-5",
|
1331
|
+
".pl-md-5",
|
1332
|
+
".px-md-5",
|
1333
|
+
".py-md-5",
|
1334
|
+
".p-md-6",
|
1335
|
+
".pt-md-6",
|
1336
|
+
".pr-md-6",
|
1337
|
+
".pb-md-6",
|
1338
|
+
".pl-md-6",
|
1339
|
+
".px-md-6",
|
1340
|
+
".py-md-6",
|
1341
|
+
".pt-md-7",
|
1342
|
+
".pr-md-7",
|
1343
|
+
".pb-md-7",
|
1344
|
+
".pl-md-7",
|
1345
|
+
".py-md-7",
|
1346
|
+
".pt-md-8",
|
1347
|
+
".pr-md-8",
|
1348
|
+
".pb-md-8",
|
1349
|
+
".pl-md-8",
|
1350
|
+
".py-md-8",
|
1351
|
+
".pt-md-9",
|
1352
|
+
".pr-md-9",
|
1353
|
+
".pb-md-9",
|
1354
|
+
".pl-md-9",
|
1355
|
+
".py-md-9",
|
1356
|
+
".pt-md-10",
|
1357
|
+
".pr-md-10",
|
1358
|
+
".pb-md-10",
|
1359
|
+
".pl-md-10",
|
1360
|
+
".py-md-10",
|
1361
|
+
".pt-md-11",
|
1362
|
+
".pr-md-11",
|
1363
|
+
".pb-md-11",
|
1364
|
+
".pl-md-11",
|
1365
|
+
".py-md-11",
|
1366
|
+
".pt-md-12",
|
1367
|
+
".pr-md-12",
|
1368
|
+
".pb-md-12",
|
1369
|
+
".pl-md-12",
|
1370
|
+
".py-md-12",
|
1371
|
+
".p-lg-0",
|
1372
|
+
".pt-lg-0",
|
1373
|
+
".pr-lg-0",
|
1374
|
+
".pb-lg-0",
|
1375
|
+
".pl-lg-0",
|
1376
|
+
".px-lg-0",
|
1377
|
+
".py-lg-0",
|
1378
|
+
".p-lg-1",
|
1379
|
+
".pt-lg-1",
|
1380
|
+
".pr-lg-1",
|
1381
|
+
".pb-lg-1",
|
1382
|
+
".pl-lg-1",
|
1383
|
+
".px-lg-1",
|
1384
|
+
".py-lg-1",
|
1385
|
+
".p-lg-2",
|
1386
|
+
".pt-lg-2",
|
1387
|
+
".pr-lg-2",
|
1388
|
+
".pb-lg-2",
|
1389
|
+
".pl-lg-2",
|
1390
|
+
".px-lg-2",
|
1391
|
+
".py-lg-2",
|
1392
|
+
".p-lg-3",
|
1393
|
+
".pt-lg-3",
|
1394
|
+
".pr-lg-3",
|
1395
|
+
".pb-lg-3",
|
1396
|
+
".pl-lg-3",
|
1397
|
+
".px-lg-3",
|
1398
|
+
".py-lg-3",
|
1399
|
+
".p-lg-4",
|
1400
|
+
".pt-lg-4",
|
1401
|
+
".pr-lg-4",
|
1402
|
+
".pb-lg-4",
|
1403
|
+
".pl-lg-4",
|
1404
|
+
".px-lg-4",
|
1405
|
+
".py-lg-4",
|
1406
|
+
".p-lg-5",
|
1407
|
+
".pt-lg-5",
|
1408
|
+
".pr-lg-5",
|
1409
|
+
".pb-lg-5",
|
1410
|
+
".pl-lg-5",
|
1411
|
+
".px-lg-5",
|
1412
|
+
".py-lg-5",
|
1413
|
+
".p-lg-6",
|
1414
|
+
".pt-lg-6",
|
1415
|
+
".pr-lg-6",
|
1416
|
+
".pb-lg-6",
|
1417
|
+
".pl-lg-6",
|
1418
|
+
".px-lg-6",
|
1419
|
+
".py-lg-6",
|
1420
|
+
".pt-lg-7",
|
1421
|
+
".pr-lg-7",
|
1422
|
+
".pb-lg-7",
|
1423
|
+
".pl-lg-7",
|
1424
|
+
".py-lg-7",
|
1425
|
+
".pt-lg-8",
|
1426
|
+
".pr-lg-8",
|
1427
|
+
".pb-lg-8",
|
1428
|
+
".pl-lg-8",
|
1429
|
+
".py-lg-8",
|
1430
|
+
".pt-lg-9",
|
1431
|
+
".pr-lg-9",
|
1432
|
+
".pb-lg-9",
|
1433
|
+
".pl-lg-9",
|
1434
|
+
".py-lg-9",
|
1435
|
+
".pt-lg-10",
|
1436
|
+
".pr-lg-10",
|
1437
|
+
".pb-lg-10",
|
1438
|
+
".pl-lg-10",
|
1439
|
+
".py-lg-10",
|
1440
|
+
".pt-lg-11",
|
1441
|
+
".pr-lg-11",
|
1442
|
+
".pb-lg-11",
|
1443
|
+
".pl-lg-11",
|
1444
|
+
".py-lg-11",
|
1445
|
+
".pt-lg-12",
|
1446
|
+
".pr-lg-12",
|
1447
|
+
".pb-lg-12",
|
1448
|
+
".pl-lg-12",
|
1449
|
+
".py-lg-12",
|
1450
|
+
".p-xl-0",
|
1451
|
+
".pt-xl-0",
|
1452
|
+
".pr-xl-0",
|
1453
|
+
".pb-xl-0",
|
1454
|
+
".pl-xl-0",
|
1455
|
+
".px-xl-0",
|
1456
|
+
".py-xl-0",
|
1457
|
+
".p-xl-1",
|
1458
|
+
".pt-xl-1",
|
1459
|
+
".pr-xl-1",
|
1460
|
+
".pb-xl-1",
|
1461
|
+
".pl-xl-1",
|
1462
|
+
".px-xl-1",
|
1463
|
+
".py-xl-1",
|
1464
|
+
".p-xl-2",
|
1465
|
+
".pt-xl-2",
|
1466
|
+
".pr-xl-2",
|
1467
|
+
".pb-xl-2",
|
1468
|
+
".pl-xl-2",
|
1469
|
+
".px-xl-2",
|
1470
|
+
".py-xl-2",
|
1471
|
+
".p-xl-3",
|
1472
|
+
".pt-xl-3",
|
1473
|
+
".pr-xl-3",
|
1474
|
+
".pb-xl-3",
|
1475
|
+
".pl-xl-3",
|
1476
|
+
".px-xl-3",
|
1477
|
+
".py-xl-3",
|
1478
|
+
".p-xl-4",
|
1479
|
+
".pt-xl-4",
|
1480
|
+
".pr-xl-4",
|
1481
|
+
".pb-xl-4",
|
1482
|
+
".pl-xl-4",
|
1483
|
+
".px-xl-4",
|
1484
|
+
".py-xl-4",
|
1485
|
+
".p-xl-5",
|
1486
|
+
".pt-xl-5",
|
1487
|
+
".pr-xl-5",
|
1488
|
+
".pb-xl-5",
|
1489
|
+
".pl-xl-5",
|
1490
|
+
".px-xl-5",
|
1491
|
+
".py-xl-5",
|
1492
|
+
".p-xl-6",
|
1493
|
+
".pt-xl-6",
|
1494
|
+
".pr-xl-6",
|
1495
|
+
".pb-xl-6",
|
1496
|
+
".pl-xl-6",
|
1497
|
+
".px-xl-6",
|
1498
|
+
".py-xl-6",
|
1499
|
+
".pt-xl-7",
|
1500
|
+
".pr-xl-7",
|
1501
|
+
".pb-xl-7",
|
1502
|
+
".pl-xl-7",
|
1503
|
+
".py-xl-7",
|
1504
|
+
".pt-xl-8",
|
1505
|
+
".pr-xl-8",
|
1506
|
+
".pb-xl-8",
|
1507
|
+
".pl-xl-8",
|
1508
|
+
".py-xl-8",
|
1509
|
+
".pt-xl-9",
|
1510
|
+
".pr-xl-9",
|
1511
|
+
".pb-xl-9",
|
1512
|
+
".pl-xl-9",
|
1513
|
+
".py-xl-9",
|
1514
|
+
".pt-xl-10",
|
1515
|
+
".pr-xl-10",
|
1516
|
+
".pb-xl-10",
|
1517
|
+
".pl-xl-10",
|
1518
|
+
".py-xl-10",
|
1519
|
+
".pt-xl-11",
|
1520
|
+
".pr-xl-11",
|
1521
|
+
".pb-xl-11",
|
1522
|
+
".pl-xl-11",
|
1523
|
+
".py-xl-11",
|
1524
|
+
".pt-xl-12",
|
1525
|
+
".pr-xl-12",
|
1526
|
+
".pb-xl-12",
|
1527
|
+
".pl-xl-12",
|
1528
|
+
".py-xl-12",
|
1529
|
+
".p-responsive",
|
1530
|
+
".h1",
|
1531
|
+
".h2",
|
1532
|
+
".h3",
|
1533
|
+
".h4",
|
1534
|
+
".h5",
|
1535
|
+
".h6",
|
1536
|
+
".f1",
|
1537
|
+
".f2",
|
1538
|
+
".f3",
|
1539
|
+
".f4",
|
1540
|
+
".f5",
|
1541
|
+
".f6",
|
1542
|
+
".f00-light",
|
1543
|
+
".f0-light",
|
1544
|
+
".f1-light",
|
1545
|
+
".f2-light",
|
1546
|
+
".f3-light",
|
1547
|
+
".text-small",
|
1548
|
+
".lead",
|
1549
|
+
".lh-condensed-ultra",
|
1550
|
+
".lh-condensed",
|
1551
|
+
".lh-default",
|
1552
|
+
".lh-0",
|
1553
|
+
".lh-sm-condensed-ultra",
|
1554
|
+
".lh-sm-condensed",
|
1555
|
+
".lh-sm-default",
|
1556
|
+
".lh-sm-0",
|
1557
|
+
".lh-md-condensed-ultra",
|
1558
|
+
".lh-md-condensed",
|
1559
|
+
".lh-md-default",
|
1560
|
+
".lh-md-0",
|
1561
|
+
".lh-lg-condensed-ultra",
|
1562
|
+
".lh-lg-condensed",
|
1563
|
+
".lh-lg-default",
|
1564
|
+
".lh-lg-0",
|
1565
|
+
".lh-xl-condensed-ultra",
|
1566
|
+
".lh-xl-condensed",
|
1567
|
+
".lh-xl-default",
|
1568
|
+
".lh-xl-0",
|
1569
|
+
".text-right",
|
1570
|
+
".text-left",
|
1571
|
+
".text-center",
|
1572
|
+
".text-sm-right",
|
1573
|
+
".text-sm-left",
|
1574
|
+
".text-sm-center",
|
1575
|
+
".text-md-right",
|
1576
|
+
".text-md-left",
|
1577
|
+
".text-md-center",
|
1578
|
+
".text-lg-right",
|
1579
|
+
".text-lg-left",
|
1580
|
+
".text-lg-center",
|
1581
|
+
".text-xl-right",
|
1582
|
+
".text-xl-left",
|
1583
|
+
".text-xl-center",
|
1584
|
+
".text-normal",
|
1585
|
+
".text-bold",
|
1586
|
+
".text-semibold",
|
1587
|
+
".text-light",
|
1588
|
+
".text-italic",
|
1589
|
+
".text-uppercase",
|
1590
|
+
".text-underline",
|
1591
|
+
".no-underline",
|
1592
|
+
".no-wrap",
|
1593
|
+
".ws-normal",
|
1594
|
+
".wb-break-word",
|
1595
|
+
".wb-break-all",
|
1596
|
+
".text-emphasized",
|
1597
|
+
".list-style-none",
|
1598
|
+
".text-mono",
|
1599
|
+
".user-select-none",
|
1600
|
+
".text-capitalize",
|
1601
|
+
".d-block",
|
1602
|
+
".d-flex",
|
1603
|
+
".d-inline",
|
1604
|
+
".d-inline-block",
|
1605
|
+
".d-inline-flex",
|
1606
|
+
".d-none",
|
1607
|
+
".d-table",
|
1608
|
+
".d-table-cell",
|
1609
|
+
".d-sm-block",
|
1610
|
+
".d-sm-flex",
|
1611
|
+
".d-sm-inline",
|
1612
|
+
".d-sm-inline-block",
|
1613
|
+
".d-sm-inline-flex",
|
1614
|
+
".d-sm-none",
|
1615
|
+
".d-sm-table",
|
1616
|
+
".d-sm-table-cell",
|
1617
|
+
".d-md-block",
|
1618
|
+
".d-md-flex",
|
1619
|
+
".d-md-inline",
|
1620
|
+
".d-md-inline-block",
|
1621
|
+
".d-md-inline-flex",
|
1622
|
+
".d-md-none",
|
1623
|
+
".d-md-table",
|
1624
|
+
".d-md-table-cell",
|
1625
|
+
".d-lg-block",
|
1626
|
+
".d-lg-flex",
|
1627
|
+
".d-lg-inline",
|
1628
|
+
".d-lg-inline-block",
|
1629
|
+
".d-lg-inline-flex",
|
1630
|
+
".d-lg-none",
|
1631
|
+
".d-lg-table",
|
1632
|
+
".d-lg-table-cell",
|
1633
|
+
".d-xl-block",
|
1634
|
+
".d-xl-flex",
|
1635
|
+
".d-xl-inline",
|
1636
|
+
".d-xl-inline-block",
|
1637
|
+
".d-xl-inline-flex",
|
1638
|
+
".d-xl-none",
|
1639
|
+
".d-xl-table",
|
1640
|
+
".d-xl-table-cell",
|
1641
|
+
".v-hidden",
|
1642
|
+
".v-visible",
|
1643
|
+
".hide-sm",
|
1644
|
+
".hide-md",
|
1645
|
+
".hide-lg",
|
1646
|
+
".hide-xl",
|
1647
|
+
".show-whenNarrow",
|
1648
|
+
".show-whenRegular",
|
1649
|
+
".show-whenWide",
|
1650
|
+
".show-whenRegular.hide-whenWide",
|
1651
|
+
".hide-whenNarrow",
|
1652
|
+
".hide-whenRegular",
|
1653
|
+
".hide-whenWide",
|
1654
|
+
".table-fixed",
|
1655
|
+
".sr-only",
|
1656
|
+
".show-on-focus",
|
1657
|
+
".show-on-focus:focus"
|
1658
|
+
]
|
1659
|
+
}
|