It's probably time for another redesign
Posted Aug 09, 2015 in Web Design 0
This will not end well.
(Well, it didn’t but I’m still thinking about it!)
Visit the weblog archives, check out some fun links, or learn more about the site
Posted Aug 09, 2015 in Web Design 0
This will not end well.
(Well, it didn’t but I’m still thinking about it!)
Sebastiaan de With on the Herculean task of designing and testing an attractive app for the Android platform.
Fricking responsive images, how do they work?
From the people who brought you the Type Kerning game.
Clever way to add interactive calculations to a data-rich document.
Posted Oct 16, 2011 in Web Design 2
One of the things I love about SASS is how it makes colour so mutable and interactive. Traditionally I’d preset my colours laboriously in Photoshop and transfer them to the CSS file via cut-and-paste, going back and forth to tweak hues and shades. Or I’d stick to basic, easily remembered values such as #ccc (shortcut for #cccccc, a light grey).
SASS’s variables and colour functions change all that.
Take the following code block:
h2 {
padding: 0.2em 0.5em;
background: lighten(rgba($accent_colour, 0.7), 80%);
clear: both;
font-weight: 500;
text-align: right;
}
I’ve already defined the accent_colour, so for its background colour I just take the variable, and pass it to the lighten
function, and lighten it by 80%. Easy, and useful.
But wait, there’s more! You’ll see I’ve also used the rgba function to set the opacity of the background colour to a value of 0.7, without having to write out the entire rgba(0,0,255,0.7)
value. The rgba function even allows me to pass hex colours to be transparentised, like so: rgba(#ccc, 0.6)
. Almost too easy. The usual caveats about checking the resulting colours for appropriate contrast levels apply (and, usefully, there’s a contrast function that you can use to ensure the colours you generate conform to accessibility standards).
Posted Oct 16, 2011 in Culture and Design 0
Rounding up the week that was:
The "Branding" link at Salon was particularly sobering. Outlets for bread-and-butter, professionally produced, creative labour are drying up fast.
Nice development package that makes using SASS and CoffeeScript in Wordpress theme creation a breeze.
A library to let designers style iOS application layouts in CSS rather than by using Interface Builder. Huge.
How to respond to a client when a good redesign doesn’t give the tangible results you’d expect.
Beta version of a web-based pixel art creation and sharing service. Very cute. (via Waxy.org)
Kieran Healy lays down some cultural analysis.
Fantastic and elegantly designed gallery site.
Posted Oct 09, 2011 in Technology and Usability 0
Secondly, voice assistance carries a whole host of privacy issues. Some are basic: How do you prevent others from using your phone with voice commands? What kind of access security is built in to a system like Siri? In some cases, it can become more complex. Consider how much private information is contained in your smartphone. How much of that information would you be comfortable broadcasting around you to strangers and people you know? Would you be willing to have Siri dictate your texts, emails or appointments out loud in your workplace? At home? You can imagine a thousand and one scenarios where that would be undesirable. Would you want a secretary dictating your next appointment out loud into your doctor’s iPhone for everyone in the waiting room to hear?
I have no idea if Siri’s voice control service is as good as the hype claims (let me be uncharacteristically pessimistic and assume not), but if it is — and if becomes widely used — then we’re probably looking at a shift in social norms around communication technology as significant as the shifts following the adoption of the mobile phone. Remember when conspicuous mobile phone usage marked you out as an irredeemable wanker? And how that marking changed almost overnight?
Posted Oct 09, 2011 in Design and Meaningful Labor 0
A few notes about the latest redesign.
ARTICLE
element in the markup, though!I count this as a work-in-progress, but I’m pretty pleased with the outcome so far.