After setting up an MVC Core App with automatic scaffolding, I am now faced with the challenge of adjusting the font size in my html View. The question is: How can I change the font size in bootstrap.css? There seem to be multiple font sizes available and I'm not quite sure where to begin looking for the right one. Interestingly, I couldn't find a class called "form-actions" in bootstrap.css
<p>
<a asp-action="Create">Create New</a> </p>
<form asp-action="Index" method="get">
<div class="form-actions no-color">
<p>
<b>Find by Brand:</b> <input type="text" name="ParamBrand" value="@ViewData["currentBrand"]" />
<br />
<b>Find by Color:</b> <input type="text" name="ParamColor" value="@ViewData["currentColor"]" />
<br />
<b>Find by Weight:</b> <input type="text" name="ParamWeight" value="@ViewData["currentWeight"]" />
<input type="submit" value="Search" class="btn btn-default" /> |
<a asp-action="Index">Back to Full List</a>
</p>
</div>