mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
2d9b089e16
Fix inconsistent use of tabs and spaces in less files GitOrigin-RevId: c69667f0dc6bc70ea3623890e2b2b741e358d454
43 lines
896 B
Text
Executable file
43 lines
896 B
Text
Executable file
//
|
|
// Jumbotron
|
|
// --------------------------------------------------
|
|
|
|
.jumbotron {
|
|
padding: @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;
|
|
font-weight: 200;
|
|
}
|
|
|
|
.container & {
|
|
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 & {
|
|
padding-left: (@jumbotron-padding * 2);
|
|
padding-right: (@jumbotron-padding * 2);
|
|
}
|
|
|
|
h1,
|
|
.h1 {
|
|
font-size: (@font-size-base * 4.5);
|
|
}
|
|
}
|
|
}
|