Table of Contents

Spec Styling Effort

Requirements & Feedback

Christoph Päper

http://lists.w3.org/Archives/Public/site-comments/2011Dec/0026.html

Loretta Guarino Reid

Speaking of all the contrast issues, can we please ensure that the new style meets WCAG 2.0 AA? I haven't yet done an analysis, but this should be a requirement.

Martin J. Dürst

1) As many others have said, don't force me to read with a fixed width. There are definitely legibility issues with too wide (or too small, for that matter) columns, but they depend on many different variables (e.g. reading habits, familiarity with the matter, complexity of the text, whether the language or script is 'native' or not,…). And they may be overridden by other issues (side-by-side comparisons, efficient use of paper (or screen real-estate; not everybody has big screens). For print, a single decision has to be made. There is NO need for such a decision for the Web, so please don't force it on us. [Side comment: I'm involved in a large updating project for the Web site of my university. I tried hard to get them to do a 'fluid' design that would work well on a large variety of devices. Unfortunately, it was a lost cause; run-of-the-mill Web 'professionals' still think in paper despite more than 20 years of the Web. Please let at least W3C provide some good examples, rather than stay stuck in the paper age.]

2) It seems nobody noticed, but please use the full brightness gammut of the display device. I don't understand why displaying body text in dark gray (#2f2f2f) would make the text any more readable, in particular when there is lots of ambient light. To me the whole thing looks like the ink was running out. Headings,… are even lighter (#4f4f4f).

3) That then would allow to make the examples a bit darker, too. It's good to use a somewhat lighter tone for the examples, that automatically enforces the message that they are not normative parts of the spec, but as they are currently, I get tired reading them.

4) The bold font in the examples is way too bold in Safari. For whatever reason, it looks much less bold (and better) in all four other browsers I checked.

5) The light blue color for the links is too light (see above) and therefore not very readable, too eye-catching to detract from reading the text, and too 'cute' for a spec. Most of these points also apply in the other cases where light blue is used.

6) Good typography is a lot about messaging. The new style, to me at least, seems to aim for a message of high quality, but is too much slanted towards high quality poetry and not enough towards high quality engineering. I wonder to what extent messages such as “this is about precision” or “I'm the spec, you aren't going to mess with me” were part of the (maybe implicit) design brief for the redesign? With the current design, it may be easier to catch the eye of a Web designer, but do we think that this design is appropriate for specs e.g. about Web Services?

Robin Berjon

Dave Raggett on contrast

http://dvcs.w3.org/hg/FXTF/raw-file/tip/custom/index.html

The light blue color used for links is in my opinion too low a contrast against the white page background, and some people (myself included) will find the links hard to read. You may want to look at the WAI authoring accessibility guidelines for recommendations on colors and contrasts.

Richard Ishida on content width

Please don't force me to work with a fixed width of text - please make it a % of the window width so that I can widen by stretching the window if I want.

Although I do normally like a narrowish column for on-screen reading, there are circumstances where I want to see more content at a time, and I'd like to be able to do that by controlling, myself, how much of the content i see. Stretching the window allows me to do that.

The same goes for situations where I may want to compare multiple windows on a screen - the fixed width of this column loses information on the right side if I make my window too narrow.

Richard Ishida on Print

In addition, please provide an option to print specs without such narrow columns. This is to save on paper. I often print out specs to review them for i18n issues. It already takes up a lot of paper, and if this fixed column width is forced on me for printing, I will probably use up twice as much.

Karl Dubost

Daniel Glazman on body width

In the body of Vincent's spec, I suppose one given element, let's say #main, has a fixed size through a width or max-width property. Something like

 #main {
   max-width: 50em;
}

Just tweak that to

 #main:target {
   max-width: 50em;
 }

and your document can have two different renderings for the regular URL without fragment id and the one with #main fragment id.

 index.html      will be viweport-wide
 index.html#main will be 50em-wide