From 3d4a278101573b6bb5366d8c89c4fbeeafca441d Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Thu, 21 May 2020 19:27:19 +0200 Subject: [PATCH] =?UTF-8?q?Styly=20odkaz=C5=AF=20v=20navigaci=20na=20index?= =?UTF-8?q?u?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sass/style.scss | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/sass/style.scss b/sass/style.scss index 7965177..21cfb47 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -9,6 +9,8 @@ body { background-size:100% auto; color: #fff; font-size: 1.3em; + + a { text-decoration: none; } } header { @@ -44,4 +46,24 @@ main#index { justify-content: space-between; section, aside { max-width: 35%; } + + aside { + display: flex; + flex-direction: column; + align-items: stretch; + + a { + text-align: center; + border: 2px solid #fff; + border-radius: .8em; + margin-bottom: 1.5em; + padding: .6em 1.5em; + color: #fff; + + &:hover { + background: #fff; + color: #b52637; + } + } + } }