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

github.com/capnfabs/paperesque.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Tamp <fabian.tamp@gmail.com>2021-01-10 02:05:46 +0300
committerFabian Tamp <fabian.tamp@gmail.com>2021-01-10 02:06:39 +0300
commit4ff77c7f80b937d6a7fb713d6e59ab1f01ee5424 (patch)
tree4fe7b461ec66b1a869c95f8a7d6435ba913f6c4b
parenta324de6101974503b6ab2057d5127944dc0f6478 (diff)
Add a 'twoup' shortcode, for showing two photos simultaneously
-rw-r--r--layouts/shortcodes/twoup.html3
-rw-r--r--static/css/style.css33
2 files changed, 36 insertions, 0 deletions
diff --git a/layouts/shortcodes/twoup.html b/layouts/shortcodes/twoup.html
new file mode 100644
index 0000000..8b37c4c
--- /dev/null
+++ b/layouts/shortcodes/twoup.html
@@ -0,0 +1,3 @@
+<div class="twoup {{.Get "class"}}" >
+{{- .Inner -}}
+</div>
diff --git a/static/css/style.css b/static/css/style.css
index dffe0d0..975219b 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -197,6 +197,39 @@ figure {
display: table;
}
+.squash-bottom {
+ margin-bottom: 0;
+}
+
+.squash-top {
+ margin-top: 0;
+}
+
+.twoup.squash-bottom figure {
+ margin-bottom: 0;
+}
+
+.twoup.squash-top figure {
+ margin-top: 0;
+}
+
+.twoup {
+ display: flex;
+}
+.twoup figure {
+ max-width: 48%;
+ max-height: 42.5vh;
+ display: inline-block;
+}
+
+.twoup figure:first-child {
+ margin-left: 0;
+}
+
+.twoup figure:last-child {
+ margin-right: 0;
+}
+
figure:not(.no-border) video, figure:not(.no-border) img, figure:not(.no-border) object, figure:not(.no-border).style-tables table {
border: 1px solid #ccc;
box-shadow: 0 5px 5px -5px #777777;