summaryrefslogtreecommitdiff
path: root/posts/animated-card-tiles.md
diff options
context:
space:
mode:
authorbt <bt@web>2023-11-28 10:12:02 -0500
committerIkiWiki <ikiwiki.info>2023-11-28 10:12:02 -0500
commit00599845ec079e6fb69e6b6b3761af7080b3a82c (patch)
tree1407c5e6d929570ef885d05fbb3064827d2b72dd /posts/animated-card-tiles.md
parent949bac1af4f92444b9bb44737520c5a1a69ba52d (diff)
Diffstat (limited to 'posts/animated-card-tiles.md')
-rw-r--r--posts/animated-card-tiles.md15
1 files changed, 7 insertions, 8 deletions
diff --git a/posts/animated-card-tiles.md b/posts/animated-card-tiles.md
index c709c14..74bdd4b 100644
--- a/posts/animated-card-tiles.md
+++ b/posts/animated-card-tiles.md
@@ -20,15 +20,14 @@ For the base skeleton of these cards we only need:
- the inner child element that will display on `:hover`
- proper `h4` and `p` tags inside that child element
-<pre><code><div class="card-tiles-container">
- <div class="card-tile">
- <div class="text-content">
- <h4>Card Title</h4>
- <p>Inner card content text</p>
+ <div class="card-tiles-container">
+ <div class="card-tile">
+ <div class="text-content">
+ <h4>Card Title</h4>
+ <p>Inner card content text</p>
+ </div>
+ </div>
</div>
- </div>
-</div></code></pre>
-
That's all that is needed - for now. We will be returning to this code shortly to add some extra classes to make our lives easier.