Live data from Hacker News

Yahoo redesigns 7 of its sites

yahoo.tumblr.com

41–43 of 43 posts

Re: Yahoo redesigns 7 of its sites

#41

Eek. I think, and I stress that this is wrought of my own unprofessional feelings, but I think that in the early days of rich consumer UI (pre-2004 lets say), that rounded corners, gradients and shadows did some great things to design, because they created affordances so that people knew, for instance, that a button was a button. It stood out against the other website clutter and cruft. But we've sort of moved on. I'…

I appreciate the minimalism of flat UI, but I do feel the pendulum has swung too far in the opposite direction. Microsoft is the worst culprit here - presenting a text block containing some hyperlinks, but the text is all styled identically so you have to hover the mouse over a word to notice the link. WTF? Sure, let's keep things clean and minimal, but there needs to be some kind of basic visual language that indica…

the text is all styled identically so you have to hover the mouse over a word to notice the link. WTF?

Affordance of hyperlinks is key to the Web.

I apply the following CSS to most/many sites to identify links:

        a {
            color: #427fed;
            text-decoration: none;
        };

        a:active {
            background-color: #427fed;
            color: #fffff6;
        };

        a:hover {
            text-decoration: underline;
        }

Hrm. I should add a :visited selector as well.

Re: Yahoo redesigns 7 of its sites

#42
post #8

I hope to god Yahoo consciously decided to eschew the current trends of flat, minimal, content first design that is perpetuating through the industry. Windows Phone, iOS 7, and plenty of other leading UI designs are shedding the bloat and focusing on content first. If they didn't do it on purpose, it means they are still the old Yahoo. If they did, maybe they know something about their target demographic that I don't…

You don't think the new Yahoo designs are following the flat trend?

They almost make it, but fail on spectacularly on color and backgrounds. The sports.yahoo.com would do much better with a clean background, I find the striped outfield to completely negate the rest of the improvements.

Re: Yahoo redesigns 7 of its sites

#43

Earlier quoted context omitted.

I appreciate the minimalism of flat UI, but I do feel the pendulum has swung too far in the opposite direction. Microsoft is the worst culprit here - presenting a text block containing some hyperlinks, but the text is all styled identically so you have to hover the mouse over a word to notice the link. WTF? Sure, let's keep things clean and minimal, but there needs to be some kind of basic visual language that indica…

the text is all styled identically so you have to hover the mouse over a word to notice the link. WTF? Affordance of hyperlinks is key to the Web. I apply the following CSS to most/many sites to identify links: a { color: #427fed; text-decoration: none; }; a:active { background-color: #427fed; color: #fffff6; }; a:hover { text-decoration: underline; } Hrm. I should add a :visited selector as well.

I'm liking this color:

    a:visited { color: #6f32ad; }
Post reply on HN