view xsls/style.xsls @ 71:c007b57d617c

The first line indentation in a paragraph which is used in Russian typographics isn't common for other languages. In HTML, even with Russian contents, paragraphs are usually separated with a vertical interval without the first line indentation. We will be following this convention as well.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 10 Oct 2011 08:23:43 +0000
parents 9d3403f5204d
children 9151d4344e65
line wrap: on
line source

X:stylesheet {

X:template style (lang) {

    <style>!{ normalize-space('
        html             {-webkit-text-size-adjust: none}
        body             { font-family:  Georgia, serif; }
        p                { text-align:   justify; }
        div.directive    { background:   #EEEEEE;
                           padding:      10pt 10pt 10pt 20pt; }
        span.initial     { font-size:    200%;
                           float: left; padding-right: 10pt;}
        li               { text-align:   justify; }
        td.list          { background:   #EEEEEE; }
        blockquote.note  { text-align:   justify;
                           background:   #EEEEEE; border: none;
                           padding:      10pt 10pt 10pt 10pt; }
        ') }

    X:if "$lang = 'he'" {
        !{ normalize-space('
        pre              { text-align:   left; direction: ltr; }
        code             { direction:    ltr; unicode-bidi: embed;}
        .ltr             { direction:    ltr; unicode-bidi: embed;}
        ') }
    }

    </style>
}

}