rundis / elm-bootstrap / Bootstrap.Text

Utilities for text options. Currently only exposing helpers used by Bootstrap.Card for horizontal alignment and text coloring

Aligment

alignXsLeft : HAlign

Align left at smallest responsive breakpoint

alignXsCenter : HAlign

Align center at smallest responsive breakpoint

alignXsRight : HAlign

Align right at smallest responsive breakpoint

alignSmLeft : HAlign

Align left at small responsive breakpoint

alignSmCenter : HAlign

Align center at small responsive breakpoint

alignSmRight : HAlign

Align right at small responsive breakpoint

alignMdLeft : HAlign

Align left at medium responsive breakpoint

alignMdCenter : HAlign

Align center at medium responsive breakpoint

alignMdRight : HAlign

Align right at medium responsive breakpoint

alignLgLeft : HAlign

Align left at large responsive breakpoint

alignLgCenter : HAlign

Align center at large responsive breakpoint

alignLgRight : HAlign

Align right at large responsive breakpoint

alignXlLeft : HAlign

Align left at extra large responsive breakpoint

alignXlCenter : HAlign

Align center at extra large responsive breakpoint

alignXlRight : HAlign

Align right at extra large responsive breakpoint


type alias HAlign =
Bootstrap.Internal.Text.HAlign

Opaque type representing a horizontal alignment option

Text coloring

white : Color

White text color option. |

primary : Color

Primary color text option. |

secondary : Color

Secondary color text option. |

success : Color

Success color text option. |

info : Color

Info color text option. |

warning : Color

Warning color text option. |

danger : Color

Danger color text option. |

light : Color

Light color text option. |

dark : Color

Dark color text option. |


type alias Color =
Bootstrap.Internal.Text.Color

Opaque type representing a text color option |