From 1ee8932afc68dca88dbcbf1fc05d75f7a9e773fa Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Wed, 1 Mar 2023 19:46:30 +0100 Subject: [PATCH] Add stories list to main page --- index.html | 29 ++++++++++++++++++++++ sass/style.scss | 65 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 94 insertions(+) diff --git a/index.html b/index.html index 697f5af..194714e 100644 --- a/index.html +++ b/index.html @@ -132,6 +132,35 @@

Příběhy

Každé dítě a tím i každý případ je jedinečný a musíme k němu přistupovat individuálně. Svou třídu často známe a dokážeme proto odhadnout, jak může žák na určité informace nebo jednání reagovat. Můžeme se však inspirovat konkrétními příběhy a tím, jak ideálně danou situaci řešit.

+

Na koho se obrátit

diff --git a/sass/style.scss b/sass/style.scss index 41880e6..7d961f8 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -414,6 +414,66 @@ body.noscroll { h1 { padding-top: 0; } + + .stories-list { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: 1rem; + margin: 4rem auto; + + .story { + flex: 1; + display: flex; + flex-direction: column; + max-width: 40rem; + border: 1pt solid $col-secondary; + border-radius: 1.5rem; + padding: 1.5em; + color: inherit; + text-decoration: none; + transition: all .1s ease-out; + + &:hover { + background-color: $col-accent; + border-color: $col-accent; + + .title { + color: $col-white; + } + + .readmore:before { + background-color: $col-white; + } + } + + .title { + color: #A4A4A4; + font-weight: bold; + font-size: 1.25em; + } + + .readmore { + position: relative; + font-size: 1.25em; + font-weight: bold; + padding-top: 1em; + margin-top: auto; + + &:before { + content: ""; + display: block; + position: absolute; + left: 0; + top: .5em; + width: 3em; + height: 1pt; + background-color: $col-secondary; + } + } + } + } } .contact-list { @@ -666,6 +726,11 @@ footer { } } + .stories .stories-list { + flex-direction: row; + align-items: stretch; + } + .contact-list { flex-direction: row;