Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jpescador/hugo-future-imperfect.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacollins <thepatrickcollins@gmail.com>2017-08-17 03:23:25 +0300
committerpacollins <thepatrickcollins@gmail.com>2017-08-17 03:23:25 +0300
commitca9d33c0da109c0212a420e4aa4a51214ecbcc33 (patch)
treebfddc60dbf47a3cb66800acabac066a2514fb178
parent8ac24bdeea23715a70a6a104acf8e4aa0e2f1a74 (diff)
Add Post View Styling
-rw-r--r--layouts/shortcodes/fancybox.html5
-rw-r--r--static/css/add-on.css19
2 files changed, 23 insertions, 1 deletions
diff --git a/layouts/shortcodes/fancybox.html b/layouts/shortcodes/fancybox.html
index d9fa783..d558180 100644
--- a/layouts/shortcodes/fancybox.html
+++ b/layouts/shortcodes/fancybox.html
@@ -51,6 +51,9 @@
{{ $caption := $.Scratch.Get "caption" }}
{{ $gallery := $.Scratch.Get "gallery" }}
- <a data-fancybox="{{ $gallery }}" href="{{ $path }}/{{ $file }}" data-caption="{{ $caption }}"><img src="{{ $path }}/{{ $file }}"></a>
+ <div class="fancybox">
+ <a data-fancybox="{{ $gallery }}" href="{{ $path }}/{{ $file }}" data-caption="{{ $caption }}"><img src="{{ $path }}/{{ $file }}"></a>
+ <div class="caption">{{ $caption }}</div>
+ </div>
{{ end }}
{{ end }}
diff --git a/static/css/add-on.css b/static/css/add-on.css
index c584bac..677c010 100644
--- a/static/css/add-on.css
+++ b/static/css/add-on.css
@@ -383,3 +383,22 @@ ul.pagination li {
transition: opacity .3s 0s, visibility 0s 0s;
opacity: .5;
}
+
+ .fancybox {
+ width: 85%;
+ padding: .5em;
+ background: #ddd;
+ margin: auto;
+ }
+
+ .fancybox a {
+ border: 0;
+ }
+
+ .fancybox .caption {
+ margin: 0;
+ line-height: .5em;
+ color: #777;
+ text-align: center;
+ font-style: italic;
+ }