From 3092940ee4c045108df39e1aae2d6a9f812c377b Mon Sep 17 00:00:00 2001 From: ErickSkrauch Date: Sun, 1 May 2016 20:08:09 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D1=8B=20=D1=81=D1=82=D0=B8=D0=BB=D0=B8=20=D1=81?= =?UTF-8?q?=D0=BE=D0=B3=D0=BB=D0=B0=D1=81=D0=BD=D0=BE=20=D0=BC=D0=B0=D0=BA?= =?UTF-8?q?=D0=B5=D1=82=D0=B0=D0=BC=20=D0=B8=20=D0=BC=D0=BE=D0=B5=D0=BC?= =?UTF-8?q?=D1=83=20=D0=B2=D0=B8=D0=B4=D0=B5=D0=BD=D0=B8=D1=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/profile/profileForm.scss | 14 +++++++++----- src/components/ui/panel.scss | 6 +++--- src/index.html | 2 +- src/index.scss | 4 ++++ 4 files changed, 17 insertions(+), 9 deletions(-) diff --git a/src/components/profile/profileForm.scss b/src/components/profile/profileForm.scss index ff5a10a..00f3837 100644 --- a/src/components/profile/profileForm.scss +++ b/src/components/profile/profileForm.scss @@ -3,7 +3,6 @@ .contentWithBackButton { position: relative; - padding-left: 60px; width: 400px; margin: 0 auto; } @@ -12,16 +11,21 @@ composes: arrow from 'components/ui/icons.scss'; position: absolute; - left: 0; + left: -60px; top: 15px; width: 25px; height: 25px; padding: 15px; transform: rotate(90deg); + transition: .3s; color: #ccc; font-size: 25px; + + &:hover { + color: #9a9a9a; + } } .form { @@ -58,8 +62,8 @@ } .description { - font-size: 13px; - color: #9a9a9a; - line-height: 1.3; + font-size: 12px; + color: #666666; + line-height: 1.5; margin-top: 25px; } diff --git a/src/components/ui/panel.scss b/src/components/ui/panel.scss index f4c249b..133d670 100644 --- a/src/components/ui/panel.scss +++ b/src/components/ui/panel.scss @@ -51,13 +51,13 @@ $bodyTopBottomPadding: 15px; a { color: #fff; - border-bottom: 1px dotted #ede9e2; + border-bottom: 1px dotted rgba(#fff, 0.75); text-decoration: none; transition: .25s; &:hover { - border-bottom-color: #ccc; - color: #ccc; + text-shadow: 0 0 1px #fff; + border-bottom-color: transparent; } } } diff --git a/src/index.html b/src/index.html index e34ca08..01b7faf 100644 --- a/src/index.html +++ b/src/index.html @@ -7,7 +7,7 @@ - + diff --git a/src/index.scss b/src/index.scss index a6a19f4..cc10f8b 100644 --- a/src/index.scss +++ b/src/index.scss @@ -14,6 +14,10 @@ body { background: $light; } +b { + font-weight: 500; +} + a { text-decoration: none; }