From fb363e94ce94ed597983ac7105a9e7c681c7f3d4 Mon Sep 17 00:00:00 2001 From: Joseph Hutchinson Date: Mon, 19 Mar 2018 07:31:18 -0400 Subject: [PATCH] Changes --- layouts/_default/li.html | 14 ++++++-------- static/css/style.css | 12 ++++++++++-- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/layouts/_default/li.html b/layouts/_default/li.html index 29995bb..fb92dee 100644 --- a/layouts/_default/li.html +++ b/layouts/_default/li.html @@ -1,10 +1,8 @@
-
-

- {{ .Title }} -

- -

{{ .Description }}

- {{ if .Truncated }}Continue reading{{ end }} -
+

+ {{ .Title }} +

+ +

{{ .Description }}

+ {{ if .Truncated }}Continue reading{{ end }}
\ No newline at end of file diff --git a/static/css/style.css b/static/css/style.css index a7464cd..fdec800 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -2,7 +2,6 @@ body { font-family: 'LatoLatinWeb', Avenir, HelveticaNeue-Light, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; color: #3A3B3C; font-size: 1rem; - line-height: 1.5; margin: 0; padding: 0; } @@ -51,11 +50,17 @@ img { .card-columns { display: grid; grid-template-columns: 1fr; - grid-gap: 25px; + grid-gap: 30px; justify-content: center; } .card { background-color: white; + padding: 15px; + border-radius: 10px; + box-shadow: 0 20px 25px 0px rgba(0, 0, 0, 0.05); +} +.card-title { + margin: 5px 0; } blockquote { border-left: 5px solid #D1D1D1; @@ -88,6 +93,9 @@ hr { border-bottom: 1px solid #D1D1D1; margin-top: 3.125rem 0; } +a { + text-decoration: none; +} table { color: #3A3B3C; border-collapse: collapse;