diff options
| author | Michael Davis <michael.s.davis@ibm.com> | 2017-07-20 17:08:19 -0500 |
|---|---|---|
| committer | Adriana Kobylak <anoo@us.ibm.com> | 2017-10-09 13:18:09 -0500 |
| commit | b5e046a2f4d00a154d20f82fa4b296965e9a84e6 (patch) | |
| tree | b7c6588bb4bad104c836908b83f4ea15beb07666 | |
| parent | 7378f8a0d07c2813e734c88f10ef1785743e12e3 (diff) | |
| download | phosphor-webui-b5e046a2f4d00a154d20f82fa4b296965e9a84e6.tar.gz phosphor-webui-b5e046a2f4d00a154d20f82fa4b296965e9a84e6.zip | |
fixed global font weight and anchor styling to closer match designs
Change-Id: I7d4083be0474f7d537c8b60bb515ee00b91cb24b
Signed-off-by: Michael Davis <michael.s.davis@ibm.com>
| -rw-r--r-- | app/common/styles/base/core.scss | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/common/styles/base/core.scss b/app/common/styles/base/core.scss index 3dc8fea..963dc9f 100644 --- a/app/common/styles/base/core.scss +++ b/app/common/styles/base/core.scss @@ -2,6 +2,7 @@ html, body { height: 100%; @include fontFamily; font-size: 16px; + font-weight: 400; color: $black; } @@ -12,11 +13,14 @@ p { a { color: $links; + text-decoration: none; + font-weight: 700; &:visited { - color: $links__visited; + color: lighten($links, 5%); } &:hover { text-decoration: underline; + cursor: pointer; } :focus { color: $links; |

