From ecfd96e2bce76087a5bf34c9fa9593c3a49c6eb4 Mon Sep 17 00:00:00 2001 From: "Daniel J. Summers" Date: Thu, 5 Oct 2017 07:31:23 -0500 Subject: [PATCH] completed structural changes - Application thumbnail now flexes above the description when it cannot fit on the right - Converted some measures that still used px to rem - Removed commented-out style rules --- src/App.vue | 16 ++++----- src/components/Application.vue | 61 ++++++++++++++++++---------------- src/components/Home.vue | 2 +- 3 files changed, 41 insertions(+), 38 deletions(-) diff --git a/src/App.vue b/src/App.vue index 2588240..a3c56fa 100644 --- a/src/App.vue +++ b/src/App.vue @@ -50,16 +50,21 @@ header, h1, h2, h3, footer a { } h1 { text-align: center; - margin: 21px 0; + margin: 1.4rem 0; font-size: 2rem; } h2 { - margin: 19px 0; + margin: 1.2rem 0; +} +h3 { + margin: 1rem 0; +} +h2, h3 { width: 80%; border-bottom: solid 2px navy; } p { - margin: 16px 0; + margin: 1rem 0; } #content { margin: 0 1rem; @@ -70,7 +75,6 @@ p { @media all and (min-width: 68rem) { .content { width: 66rem; - justify-content: space-around; } } .hdr { @@ -126,10 +130,6 @@ footer { footer a:link, footer a:visited { color: black; } -/*footer a:hover { - border-bottom: none; - color: maroon; -}*/ .alignleft { float:left; padding-right: 5px; diff --git a/src/components/Application.vue b/src/components/Application.vue index 6136e9c..f626d1b 100644 --- a/src/components/Application.vue +++ b/src/components/Application.vue @@ -1,30 +1,30 @@