diff options
author | Teddy Wing | 2018-11-11 15:17:59 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-11 15:17:59 +0100 |
commit | 8b399af44fb1f4f1b76b619affb4f0c83c1246cd (patch) | |
tree | 86b0141284d4e14f8ec0d77f861978bffac53d50 | |
parent | 8fd5453b82b23766f4810b0c37510cc61b53dbd4 (diff) | |
download | dome-key-web-8b399af44fb1f4f1b76b619affb4f0c83c1246cd.tar.bz2 |
Fix button text-shadow
It was too blurry.
-rw-r--r-- | assets/styles.css | 2 | ||||
-rw-r--r-- | assets/stylesheets/buttons.hcss | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/assets/styles.css b/assets/styles.css index 4e74081..f2b5a49 100644 --- a/assets/styles.css +++ b/assets/styles.css @@ -46,7 +46,7 @@ a.button-magenta { background: linear-gradient(to bottom, #f11c9c 0%,#c91a7d 76%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f11c9c', endColorstr='#c91a7d',GradientType=0 ); /* IE6-9 */ color: #ffd7d7; - text-shadow: 0px -1px 2px #161c1f; + text-shadow: 0px -1px 1px #161c1f; } a.button-magenta:hover { border-color: #9e0e6a; diff --git a/assets/stylesheets/buttons.hcss b/assets/stylesheets/buttons.hcss index 651e261..cc18441 100644 --- a/assets/stylesheets/buttons.hcss +++ b/assets/stylesheets/buttons.hcss @@ -23,7 +23,7 @@ a.button-magenta { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f11c9c', endColorstr='#c91a7d',GradientType=0 ); /* IE6-9 */ color: #ffd7d7; - text-shadow: 0px -1px 2px #161c1f; + text-shadow: 0px -1px 1px #161c1f; } a.button-magenta:hover { |