Fork-Awesome/src/doc/assets/less/bootstrap-3.3.5/jumbotron.less
Hugo Locurcio 284cfebe31
Improve the font stack used on the website
- Use a modern system font stack as used by Bootstrap 4.
- Replace light font weights with normal font weights, as these are
  easier to read.
- Remove the use of the Proxima Nova font as it's not installed
  on all systems. Loading it as a web font would slow down page loading,
  so it's probably not a good idea if it's only used rarely.
2019-12-21 22:45:55 +01:00

52 lines
1 KiB
Plaintext

//
// Jumbotron
// --------------------------------------------------
.jumbotron {
padding-top: @jumbotron-padding;
padding-bottom: @jumbotron-padding;
margin-bottom: @jumbotron-padding;
color: @jumbotron-color;
background-color: @jumbotron-bg;
h1,
.h1 {
color: @jumbotron-heading-color;
}
p {
margin-bottom: (@jumbotron-padding / 2);
font-size: @jumbotron-font-size;
}
> hr {
border-top-color: darken(@jumbotron-bg, 10%);
}
.container &,
.container-fluid & {
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
}
.container {
max-width: 100%;
}
@media screen and (min-width: @screen-sm-min) {
padding-top: (@jumbotron-padding * 1.6);
padding-bottom: (@jumbotron-padding * 1.6);
.container &,
.container-fluid & {
padding-left: (@jumbotron-padding * 2);
padding-right: (@jumbotron-padding * 2);
}
h1,
.h1 {
font-size: @jumbotron-heading-font-size;
}
}
}