Reputation:
I am just starting to learn about Bootstrap. But I am confused. In the Less files I see things like: @font-size-h1
Can someone tell me where these are specified in the default implementation of Bootstrap 3?
Upvotes: 2
Views: 55
Reputation: 119116
It's defined in the variables.less
file
@font-size-h1: floor((@font-size-base * 2.6)); // ~36px
Where:
@font-size-base: 14px;
Upvotes: 3