输入文本框大于 input-lg

input textbox larger than input-lg

我正在尝试将搜索文本框的大小增加到大于 input-lg(使用 Bootstrap 3)。那可能吗?在 Bootstrap 3 个文档或 SO 帖子中找不到太多内容。

我最终做了以下事情。感谢@gianni 的评论。

HTML

<input class="form-control input-lg searchbox" name="query" type="text"  autocomplete="off">

CSS

.searchbox {
  font-size: 23px;
  height: 60px;
  padding: 1px 7px; 
  text-transform: capitalize; /* Capitalises first letter of each word only 'visually', value sent is as-typed */
}