add wide width theme
This commit is contained in:
parent
08dd00930a
commit
420e49160e
@ -113,8 +113,9 @@ paginate = 5
|
||||
# show selector to switch language
|
||||
showLanguageSelector = false
|
||||
|
||||
# set theme to full screen width
|
||||
fullWidthTheme = false
|
||||
# set theme width full | wide | default
|
||||
# full screen, wide (60%), default
|
||||
themeWidth = "default"
|
||||
|
||||
# center theme with default width
|
||||
centerTheme = false
|
||||
|
@ -304,8 +304,13 @@ mark {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
&.wide {
|
||||
max-width: 60%;
|
||||
}
|
||||
|
||||
@media (--phone) {
|
||||
padding: 20px;
|
||||
max-width: 100% !important;
|
||||
}
|
||||
|
||||
@media print {
|
||||
|
@ -7,9 +7,10 @@
|
||||
{{ partial "head.html" . }}
|
||||
</head>
|
||||
<body class="{{- ( or .Params.color $.Site.Params.ThemeColor ) -}}">
|
||||
{{ $container := cond $.Site.Params.FullWidthTheme "container full" (cond $.Site.Params.CenterTheme "container center" "container") }}
|
||||
{{ $containerThemeWidth := cond (eq $.Site.Params.ThemeWidth "full") "container full" (cond (eq $.Site.Params.ThemeWidth "wide") "container wide" "container") }}
|
||||
{{ $containerThemeCenter := cond $.Site.Params.CenterTheme "center" "" }}
|
||||
|
||||
<div class="{{- $container -}}{{- cond ($.Site.Params.oneHeadingSize | default true) " headings--one-size" "" }}">
|
||||
<div class="{{- $containerThemeWidth }} {{ $containerThemeCenter -}} {{- cond ($.Site.Params.oneHeadingSize | default true) " headings--one-size" "" }}">
|
||||
|
||||
{{ partial "header.html" . }}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user