BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
[cshtml]
@Html.EJ().DatePicker("datepick").CssClass("customClass1").Height("60px").Width("250px")
[style]
.customClass1.e-datepicker.e-calendar {
width: 26em; /*change the width of the calendar along with table cells*/
font-family: "Comic Sans MS"; /*change the calendar font-family*/
font-size: 16px; /*change the calendar font-size*/
}
.customClass1 .e-datepicker.e-input {
font-family: "Comic Sans MS"; /*change the text box font-family*/
font-size: 16px; /*change the text box font-size*/
}
|
[CSHTML]
@Html.EJ().NumericTextbox ("numeric").CssClass("bigStarter1").Height("70px").Width("300px")
[STYLES]
.bigStarter1.e-numeric .e-input {
color: darkgreen;
font-size: 24px;
} |