Updated CSS and refined width-logic
This commit is contained in:
parent
7cb7fc284c
commit
88ed5a0bef
@ -7,11 +7,9 @@
|
|||||||
{{ partial "head.html" . }}
|
{{ partial "head.html" . }}
|
||||||
</head>
|
</head>
|
||||||
<body class="">
|
<body class="">
|
||||||
{{ if eq $.Site.Params.themeWidth "full" }}
|
{{ $container := cond $.Site.Params.FullWidthTheme "container full" (cond $.Site.Params.CenterTheme "container center" "container") }}
|
||||||
<div class="container full">
|
|
||||||
{{ else }}
|
<div class="{{- $container -}}">
|
||||||
<div class="container half">
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ partial "header.html" . }}
|
{{ partial "header.html" . }}
|
||||||
|
|
||||||
|
@ -228,14 +228,19 @@ ol ol {
|
|||||||
@media (--phone) {
|
@media (--phone) {
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
&.full,
|
||||||
|
&.center {
|
||||||
|
border: none;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.full {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
.full {
|
|
||||||
border-right: none;
|
|
||||||
margin: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.half {border-right: 1px solid rgba(255, 255, 255, .1);}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user