fixed jumbotron width
This commit is contained in:
parent
083901e517
commit
7b42ced453
|
@ -40,12 +40,16 @@ a {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#content {
|
@mixin limitWidth {
|
||||||
max-width: $content_width;
|
max-width: $content_width;
|
||||||
padding: 15px;
|
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#content {
|
||||||
|
@include limitWidth;
|
||||||
|
padding: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
color: $dim_fg_color;
|
color: $dim_fg_color;
|
||||||
a {
|
a {
|
||||||
|
@ -449,6 +453,8 @@ nav, #links {
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
|
@include limitWidth;
|
||||||
|
padding: 15px;
|
||||||
margin-bottom: $content_spacing;
|
margin-bottom: $content_spacing;
|
||||||
.titleAndHamburger {
|
.titleAndHamburger {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -532,12 +538,10 @@ header {
|
||||||
{{ if (and (.Site.Params.enableJumbotron | default false) .Site.Data.jumbotron) }}
|
{{ if (and (.Site.Params.enableJumbotron | default false) .Site.Data.jumbotron) }}
|
||||||
header {
|
header {
|
||||||
.jumbotron { display: none; }
|
.jumbotron { display: none; }
|
||||||
margin-top: -15px;
|
max-width: 100%;
|
||||||
margin-left: -15px;
|
> * {
|
||||||
margin-right: -15px;
|
@include limitWidth;
|
||||||
padding-top: 15px;
|
}
|
||||||
padding-left: 15px;
|
|
||||||
padding-right: 15px;
|
|
||||||
}
|
}
|
||||||
header.jumbotronContainer {
|
header.jumbotronContainer {
|
||||||
.jumbotron { display: flex; }
|
.jumbotron { display: flex; }
|
||||||
|
@ -556,8 +560,6 @@ header.jumbotronContainer {
|
||||||
{{ end }}
|
{{ end }}
|
||||||
}
|
}
|
||||||
.jumbotron {
|
.jumbotron {
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-height: 40vh;
|
min-height: 40vh;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
<html>
|
<html>
|
||||||
{{- partial "head.html" . -}}
|
{{- partial "head.html" . -}}
|
||||||
<body>
|
<body>
|
||||||
<div id="content">
|
|
||||||
{{- partial "header.html" . -}}
|
{{- partial "header.html" . -}}
|
||||||
|
<div id="content">
|
||||||
<main>
|
<main>
|
||||||
{{- block "main" . }}{{- end }}
|
{{- block "main" . }}{{- end }}
|
||||||
</main>
|
</main>
|
||||||
|
|
Loading…
Reference in New Issue