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

github.com/xaprb/story.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaron Schwartz <xaprb@users.noreply.github.com>2018-09-08 01:52:20 +0300
committerBaron Schwartz <xaprb@users.noreply.github.com>2018-09-08 01:52:20 +0300
commitc7dc02d4a52606602b08302ef9dafef0e88d44c7 (patch)
treef843ed9ddd288a0a6dd5c546ce40c7d37b2d1c9e /exampleSite
parent87982c9d66817662f7b79d426f2c319728594665 (diff)
exploring different ways to do 2-col img layouts
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/content/slides/adirondack/index.md18
-rw-r--r--exampleSite/content/slides/apron/index.md43
2 files changed, 34 insertions, 27 deletions
diff --git a/exampleSite/content/slides/adirondack/index.md b/exampleSite/content/slides/adirondack/index.md
index 6460540..3d2eda4 100644
--- a/exampleSite/content/slides/adirondack/index.md
+++ b/exampleSite/content/slides/adirondack/index.md
@@ -116,7 +116,7 @@ Relaxing in the Adirondack chair, I felt the gathering dusk creep on kitten
feet. It came to me, then, that a day lived in this paradise was better than a
lifetime anywhere else.
-![](leo-serrat-533922-unsplash.jpg)
+![](leo-serrat-533922-unsplash.jpg# mw-90 center)
This is a two-column layout, created with `class: col, col-2`.
There's no column markup in the content.
@@ -191,9 +191,8 @@ class: compact
# A Compact Slide
This slide's class is `compact`, which reduces font sizes, line heights, and
-slide padding.
-
-This makes it possible to fit more content on the slide, which can be useful.
+slide padding. This makes it possible to fit more content on the slide, which
+can be useful.
- I watched the storm, so beautiful yet terrific.
- Almost before we knew it, we had left the ground.
@@ -244,6 +243,17 @@ its content stretch out a bit for readability.
- All their equipment and instruments are alive.
---
+class: roomy, col, col-2
+# Room For Two Columns
+
+This slide is roomy and has two columns.
+
+- A red flare silhouetted the jagged edge of a wing.
+- I watched the storm, so beautiful yet terrific.
+- Almost before we knew it, we had left the ground.
+- All their equipment and instruments are alive.
+
+---
class: fit-h1
# This Slide Has A Very Long Multi-Line Heading That Has Been Shrunk
diff --git a/exampleSite/content/slides/apron/index.md b/exampleSite/content/slides/apron/index.md
index 23b6295..9f25650 100644
--- a/exampleSite/content/slides/apron/index.md
+++ b/exampleSite/content/slides/apron/index.md
@@ -99,14 +99,14 @@ Apron provides the following. X stands for a variable/placeholder:
- center: horizontal centering
---
-# Two-Column Layout
+# Simple Two-Column Layout
![](nasa-53884-unsplash.jpg# db fr w-50 ml4)
This slide illustrates a simple way to create a two-column layout with an image
in the right-hand side.
-(I'll show you a better way next, but this illustrates the utility of the CSS
+(I'll show you another way later, but this illustrates the utility of the CSS
pseudo-image-classes in the URL fragments).
Simply shrink the image to 50% width, float it right, set its display to block,
@@ -119,11 +119,12 @@ The image markup is:
```
---
-# Two-Column Layout Variation
+# Simple Two-Column Layout, Left
![](nasa-53884-unsplash.jpg# db fl w-50 mr4)
-This variation illustrates placing the image on the lefthand column.
+This variation illustrates placing the image on the lefthand column, and why
+this doesn't work great.
The image markup is:
@@ -131,19 +132,16 @@ The image markup is:
![](nasa-53884-unsplash.jpg# db fl w-50 mr4)
```
-There's a small problem with doing this with floats.
+There are a few problems with using floats for this.
-If the text continues,
+- Bulleted lists don't indent correctly.
+- Their layout doesn't work well next to floated elements.
-as this does,
+Also, if the text continues,
-it will go below
+as this does, it will go below the image and wrap
-the image and wrap
-
-back to the left-hand
-
-edge again. So the "column" ended too soon. This is a problem, and there's a fix for it.
+back to the left-hand edge again. So the "column" ended too soon, revealing that it's not a real column.
---
class: two-col-img-left
@@ -152,18 +150,17 @@ class: two-col-img-left
![](nasa-53884-unsplash.jpg)
-In this convenience layout, the first paragraph in the content
-(which can be an image, as in this case)
-will form the left column.
+This convenience layout illustrates a better way to do it. By adding the class
+`two-col-img-left`, the first paragraph in the content will become a lefthand
+column.
-The paragraph is floated left and sized to 50%, and should
-prevent wrapping around underneath it.
-
-Test.
+An image in Markdown is wrapped in a paragraph, so you can simply begin a
+columnar layout with an image and the rest will work.
-Test.
-
-Test.
+- Test.
+- Test.
+- Test.
+- Test.
Test.