Buttons
Use Bootstrap’s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.
Default
Use @Html.LLG().Button(string text)
method to create a button.
@Html.LLG().Button("Primary")
@Html.LLG().Button("Transition Hover").TransitionHover()
@Html.LLG().Button("Custom css class").AppendCssClass("btn-wide")
Change Color
Use .Color(BootstrapColor color)
method to set color. Default color is BootstrapColor.Primary
@Html.LLG().Button("Primary").Color(BootstrapColor.Primary)
@Html.LLG().Button("Danger").Color(BootstrapColor.Danger)
@Html.LLG().Button("Dark").Color(BootstrapColor.Dark)
@Html.LLG().Button("Info").Color(BootstrapColor.Info)
@Html.LLG().Button("Light").Color(BootstrapColor.Light)
@Html.LLG().Button("Secondary").Color(BootstrapColor.Secondary)
@Html.LLG().Button("Success").Color(BootstrapColor.Success)
@Html.LLG().Button("Warning").Color(BootstrapColor.Warning)