[ Index ]
 

Code source de Joomla 1.0.13

Accédez au Source d'autres logiciels libres

title

Body

[fermer]

/help/css/ -> docbook.css (source)

   1  a:hover {
   2      text-decoration: none;
   3  }
   4  
   5  /* =====================================
   6     Article structure
   7  ===================================== */
   8  
   9  article {
  10      display: block;
  11  }
  12  
  13  article > title { 
  14      font-size: 2em; 
  15      margin: 0.5ex 0;
  16      border-width: 1px;
  17      border-style: solid;
  18      border-color: transparent transparent #fea540 transparent;
  19  }
  20  
  21  title,
  22  subtitle,
  23  titleabbrev {
  24      display: block;
  25      color: #fea540;
  26      margin: 1.33ex 0;
  27  }
  28  
  29  title,
  30  subtitle {
  31      font-family: tahoma, arial, sans-serif;
  32      font-weight: bold;
  33  }
  34  
  35  /* -------------------------------------
  36     Sections
  37  ------------------------------------- */
  38  
  39  appendix,
  40  section {
  41      font-family: verdana, arial, sans-serif;
  42      font-size: 10pt;
  43  }
  44  
  45  section,
  46  sect1,
  47  sect2,
  48  sect3,
  49  sect4,
  50  sect5,
  51  simplesect {
  52      display: block;
  53      margin: 5px;
  54  }
  55  
  56  section > title,
  57  sect1 > title { 
  58      font-size: 1.5em;
  59      margin: .83ex 0; 
  60  }
  61  
  62  section > title:before,
  63  sect1 > title:before {
  64      content: counter(n-) " "; 
  65  }
  66  
  67  section section > title,
  68  sect2 > title { 
  69      font-size: 1.3em;
  70      margin: 1ex 0; 
  71  }
  72  
  73  section * section > title { 
  74      font-size: 1em; 
  75      margin: 1.33ex 0; 
  76  }
  77        
  78  section section > title:before,
  79  sect2 > title:before { 
  80      content: counter(nn-) " "; 
  81  }
  82  
  83  section section section > title:before,
  84  sect3 > title:before {
  85      content: counter(nnn-) " "; 
  86  }
  87  
  88  section section section section > title:before,
  89  sect4 > title:before { 
  90      content: counter(nnnn-) " "; 
  91  }
  92  
  93  section section section * section > title:before { 
  94      content: ""; 
  95  }
  96        
  97  /* -------------------------------------
  98     Appendix
  99  ------------------------------------- */
 100  
 101  appendix {
 102      display: block;
 103  }
 104  
 105  appendix > title { /* in a book or in a part */
 106      font-size: 2em; 
 107      margin: 0.5ex 0;
 108      border-width: 1px;
 109      border-style: solid;
 110      border-color: transparent transparent #fea540 transparent;
 111  }
 112  
 113  article > appendix > title { 
 114      font-size: 1.5em; 
 115      margin: 0.83ex 0;
 116      border-width: 0;
 117      border-style: none;
 118  }
 119  
 120  appendix > title:before { 
 121      content: "Appendix " counter(n-, upper-alpha) ": "; 
 122  }
 123  
 124  /* =====================================
 125     Paragraphs
 126  ===================================== */
 127  
 128  para,
 129  simpara {
 130      display: block;
 131      margin: 1.33ex 0; 
 132      font-size: 0.8em;
 133  }
 134  
 135  /* =====================================
 136     Lists
 137  ===================================== */
 138  
 139  /* -------------------------------------
 140     itemizedlist
 141  ------------------------------------- */
 142  
 143  itemizedlist {
 144      display: block;
 145      margin-left: 2ex; /* all lists are slightly indented */
 146      margin-top: 1.33ex; 
 147      margin-bottom: 1.33ex; 
 148  }
 149  
 150  listitem {
 151      margin-bottom: 1.33ex;
 152      display: list-item;
 153      list-style-type: disc;
 154  }
 155  
 156  listitem > *:first-child {
 157      margin-top: 0; 
 158      margin-bottom: 0; 
 159  }
 160        
 161  itemizedlist > listitem {
 162      margin-left: 2.5ex; 
 163  }
 164  
 165  itemizedlist > listitem:before {
 166      display: marker; 
 167      content: disc; 
 168      color: #fea540;
 169      padding-top: .6ex; 
 170  }
 171  
 172  itemizedlist > listitem itemizedlist > listitem:before {
 173      content: square; 
 174  }
 175  
 176  itemizedlist > listitem itemizedlist > listitem itemizedlist > 
 177  listitem:before {
 178      content: icon(diamond); 
 179  }
 180  
 181  itemizedlist > listitem itemizedlist > listitem itemizedlist > 
 182  listitem itemizedlist > listitem:before {
 183      content: circle; 
 184  }
 185    
 186  /* -------------------------------------
 187     orderedlist
 188  ------------------------------------- */
 189  
 190  orderedlist {
 191      display: block;
 192      margin-left: 2ex; 
 193      margin-top: 1.33ex; 
 194      margin-bottom: 1.33ex; 
 195  }
 196  
 197  orderedlist > listitem {
 198      margin-left: 6ex; 
 199  }
 200  
 201  orderedlist > listitem:before {
 202      display: marker; 
 203      content: counter(n, decimal) "."; 
 204      font-weight: bold; 
 205      color: #fea540;
 206  }
 207  
 208  orderedlist[numeration=loweralpha] > listitem:before {
 209      content: counter(n, lower-alpha) "."; 
 210  }
 211  
 212  orderedlist[numeration=upperalpha] > listitem:before {
 213      content: counter(n, upper-alpha) "."; 
 214  }
 215  
 216  orderedlist[numeration=lowerroman] > listitem:before {
 217      content: counter(n, lower-roman) "."; 
 218  }
 219  
 220  orderedlist[numeration=upperroman] > listitem:before {
 221      content: counter(n, upper-roman) "."; 
 222  }
 223  
 224  /* -------------------------------------
 225     variablelist
 226  ------------------------------------- */
 227  
 228  variablelist {
 229      display: block;
 230      margin-left: 2ex; 
 231      margin-top: 1.33ex; 
 232      margin-bottom: 1.33ex; 
 233  }
 234  
 235  varlistentry {
 236      display: block;
 237  }
 238  
 239  term {
 240      display: block;
 241      font-weight: bold; 
 242  }
 243  
 244  varlistentry > listitem {
 245      margin-left: 4ex; 
 246  }
 247  
 248  /* =====================================
 249     Figures
 250  ===================================== */
 251  
 252  programlisting,
 253  screen,
 254  literallayout,
 255  synopsis {
 256      display: block;
 257      white-space: pre;
 258      font-family: monospace;
 259      font-size: 1.1em;
 260      margin: 1.33ex 0; 
 261  }
 262           
 263  programlisting {
 264      background-color: rgb(255,255,221);
 265      border: thin solid gray;
 266      padding: 2px; 
 267      color: #00f;
 268  }
 269   
 270  screen {
 271      background-color: #EEEEFF; 
 272      border: thin solid #8888FF; 
 273      padding: 2px; 
 274  }
 275   
 276  figure,
 277  informalfigure,
 278  example,
 279  informalexample {
 280      display: block;
 281      margin: 1.33ex auto; 
 282  }
 283  
 284  figure > title,
 285  example > title {
 286      font-style: italic;
 287      font-weight: normal;
 288      text-align: center;
 289      margin: 0; /* content of figure generally already has a margin */
 290  }
 291  
 292  mediaobject {
 293      display: table;
 294      border-spacing: 2px;
 295      margin: 1.33ex auto; 
 296  }
 297  
 298  inlinemediaobject {
 299      display: inline-table;
 300      border-spacing: 2px;
 301  }
 302  
 303  caption {
 304      display: table-caption;
 305      color: #fea540;
 306      font-style: italic;
 307      font-weight: normal;
 308      text-align: center;
 309      /* content of caption already has a margin */
 310  }
 311  
 312  audioobject,
 313  videoobject,
 314  imageobject,
 315  textobject {
 316      display: table-cell; /* this will create one row per cell */
 317      text-align: center;
 318  }
 319  
 320  objectinfo {
 321      text-align: left;
 322  }
 323  
 324  mediaobject > objectinfo {
 325      display: table-cell;
 326  }
 327  
 328  audiodata {
 329      display: inline;
 330      content: url(icons/audio.gif); 
 331  }
 332  
 333  videodata {
 334      display: inline;
 335      content: url(icons/video.gif); 
 336  }
 337  
 338  imagedata {
 339      display: inline;
 340      content: image(attr(fileref), -400, -200);
 341  }
 342  
 343  textdata {
 344      display: inline;
 345      content: url(icons/text.gif); 
 346  }
 347  
 348  /* =====================================
 349     Tables
 350  ===================================== */
 351  
 352  /*
 353   * "black" is the color used to draw a border around the table and its cells
 354   * based on values of attributes such as frame, rowsep and colsep.
 355   *
 356   * "rgb(238,238,224)" (a very light gray) is the color used to draw 
 357   * a border around each cell whether the cell actually has borders or not.
 358   * Remove this parameter if this ``cell footprint'' disturbs you.
 359   *
 360   * For more information about table support for DocBook, see 
 361   * Power User's Guide.
 362   */
 363  @extension "com.xmlmind.xmleditapp.docbook.TableSupport black rgb(238,238,224)";
 364  
 365  table,
 366  informaltable {
 367      display: block;
 368      margin: 1.33ex 0; 
 369  }
 370            
 371  table > title {
 372      display: block;
 373      font-style: italic; 
 374      font-weight: normal;
 375      text-align: center; 
 376      /* keep margin because tgroup has no margin */
 377  }
 378  
 379  colspec,
 380  spanspec {
 381      display: table-column;
 382      collapsed: yes;
 383  }
 384  
 385  tgroup {
 386      display: table; 
 387      border-style: solid;
 388      border-width: 1;
 389  }
 390      
 391  thead,
 392  tfoot {
 393      display: table-row-group;
 394      font-weight: bold; 
 395  }
 396         
 397  tbody {
 398      display: table-row-group;
 399  }
 400  
 401  row {
 402      display: table-row; 
 403  }
 404            
 405  entry {
 406      display: table-cell; 
 407      border-style: solid;
 408      border-width: 1;
 409      padding: 2; 
 410  }
 411  
 412  entry > *:first-child {
 413      margin-top: 0; 
 414      margin-bottom: 0; 
 415  }
 416  
 417  entrytbl {
 418      display: subtable;
 419      border-style: solid;
 420      border-width: 1;
 421  }
 422            
 423  /* =====================================
 424     Divisions
 425  ===================================== */
 426  
 427  abstract {
 428      display: block;
 429      margin-left: 18ex;
 430      margin-top: 1.33ex; 
 431      margin-bottom: 1.33ex; 
 432  }
 433  
 434  abstract > *:first-child {
 435      margin-top: 0; 
 436      margin-bottom: 0;
 437  }
 438        
 439  abstract:before {
 440      display: marker; 
 441      content: element-label();
 442      font-weight: bold;
 443      color: #fea540;
 444  }
 445  
 446  blockquote,
 447  epigraph {
 448      display: block;
 449      margin: 1.33ex 10ex; 
 450  }
 451  
 452  blockquote > title {
 453      font-style: italic;
 454      font-weight: normal;
 455      text-align: center;
 456      margin: 0; /* content of blockquote already has a margin */
 457  }
 458         
 459  attribution {
 460      display: block;
 461      text-align: right;
 462  }
 463  
 464  attribution:before {
 465      content: " -- "; 
 466  }
 467  
 468  footnote {
 469      display: block;
 470      margin-left: 18ex;
 471      margin-top: 1.33ex; 
 472      margin-bottom: 1.33ex; 
 473      margin-right: 10ex;
 474      font-size: small;
 475      padding: 2px;
 476      background-color: #F0F0FF;
 477  }
 478  
 479  footnote > *:first-child {
 480      margin-top: 0; 
 481      margin-bottom: 0; 
 482  }
 483  
 484  footnote:before {
 485      display: marker; 
 486      content: element-label();
 487      color: #fea540;
 488  }
 489  
 490  footnote[label]:before {
 491      content: "[" attr(label) "]"; 
 492  }
 493  
 494  note,
 495  caution,
 496  important,
 497  tip,
 498  warning {
 499      display: block;
 500      margin-left: 18ex;
 501      margin-top: 1.33ex; 
 502      margin-bottom: 1.33ex; 
 503  }
 504  
 505  note > *:first-child,
 506  caution > *:first-child,
 507  important > *:first-child,
 508  tip > *:first-child,
 509  warning > *:first-child {
 510      margin-top: 0; 
 511      margin-bottom: 0; 
 512  }
 513        
 514  note:before,
 515  caution:before,
 516  important:before,
 517  tip:before,
 518  warning:before {
 519      display: marker; 
 520      content: element-label();
 521      font-weight: bold; 
 522      color: #fea540;
 523  }
 524  
 525  sidebar {
 526      display: block;
 527      margin: 1.33ex 0; 
 528      border: thin solid #00FF00;
 529      background-color: #CCFFCC;
 530      padding: 2px;
 531  }
 532  
 533  sidebar > title {
 534      margin: 0; /* content of sidebar already has a margin */
 535  }
 536         
 537  /* =====================================
 538     Special sections
 539  ===================================== */
 540  
 541  /* -------------------------------------
 542     Question-and-answer set
 543  ------------------------------------- */
 544  
 545  qandaset,
 546  qandadiv {
 547      display: block;
 548      /* content of qandaset has a margin */
 549  }
 550  
 551  qandaentry {
 552      display: block;
 553      margin: 1.33ex 0;
 554  }
 555  
 556  question {
 557      font-weight: bold;
 558      display: block;
 559      margin-left: 2ex;
 560      margin-bottom: 1.33ex;
 561  }
 562  
 563  answer {
 564      font-weight: normal;
 565      display: block;
 566      margin-left: 4ex;
 567      margin-bottom: 1.33ex;
 568  }
 569  
 570  question > *:first-child,
 571  answer > *:first-child {
 572      margin-top: 0;
 573      margin-bottom: 0;
 574  }
 575  
 576  question:before,
 577  answer:before {
 578      display: marker;
 579      color: #004080;
 580      font-weight: bold;
 581  }
 582  
 583  question > para:before {
 584      color: #004080;
 585      content: "Q: ";
 586      font-weight: bold;
 587  }
 588  
 589  answer > para:before {
 590      color: #004080;
 591      content: "A: ";
 592      font-weight: bold;
 593  }
 594  
 595  label {
 596      display: block;
 597      margin: 1.33ex 0;
 598      color: #004080;
 599      font-weight: bold;
 600  }
 601  
 602  /* -------------------------------------
 603     Meta-information
 604  ------------------------------------- */
 605  
 606  appendixinfo,
 607  articleinfo,
 608  bibliographyinfo,
 609  blockinfo,
 610  bookinfo,
 611  chapterinfo,
 612  glossaryinfo,
 613  indexinfo,
 614  objectinfo,
 615  partinfo,
 616  prefaceinfo,
 617  refentryinfo,
 618  refmeta,
 619  referenceinfo,
 620  refsect1info,
 621  refsect2info,
 622  refsect3info,
 623  refsectioninfo,
 624  refsynopsisdivinfo,
 625  sect1info,
 626  sect2info,
 627  sect3info,
 628  sect4info,
 629  sect5info,
 630  sectioninfo,
 631  setindexinfo,
 632  setinfo,
 633  sidebarinfo  {
 634      display: block; 
 635      margin: 0;
 636      border: 0px;
 637      padding: 0px;
 638  }
 639  
 640  authorgroup {
 641      display: block;
 642      /* content of authorgroup has a margin */
 643  }
 644  
 645  author,
 646  editor,
 647  othercredit {
 648      display: block; /* can contain authorblurb, address */
 649      margin: 1.33ex 0;
 650  }
 651  
 652  personname {
 653      display: inline;
 654  }
 655  
 656  honorific,
 657  firstname,
 658  surname,
 659  lineage,
 660  othername {
 661      display: inline;
 662  }
 663  
 664  honorific:after,
 665  firstname:after,
 666  surname:after,
 667  lineage:after,
 668  othername:after {
 669      content: " ";
 670  }
 671  
 672  contrib {
 673      display: inline;
 674  }
 675  
 676  authorblurb,
 677  personblurb {
 678      display: block;
 679      /* content of authorblurb has a margin */
 680  }
 681  
 682  corpauthor,
 683  corpname {
 684      /* Could be block but inline is safer when used in strange places
 685         and when used in meta-info, display is forced to be block. */
 686      display: inline;
 687  }
 688  
 689  affiliation {
 690      display: block; /* can contain address */
 691      margin: 1.33ex 0;
 692  }
 693  
 694  shortaffil,
 695  jobtitle,
 696  orgname,
 697  orgdiv {
 698      display: inline;
 699  }
 700  
 701  shortaffil:after,
 702  jobtitle:after,
 703  orgname:after,
 704  orgdiv:after {
 705      content: " ";
 706  }
 707  
 708  copyright {
 709      display: inline;
 710  }
 711  
 712  year,
 713  holder {
 714      display: inline;
 715  }
 716  
 717  year:after,
 718  holder:after {
 719      content: " ";
 720  }
 721  
 722  date,
 723  pubdate {
 724      display: inline;
 725  }
 726  
 727  edition {
 728      display: inline;
 729  }
 730  
 731  issuenum {
 732      display: inline;
 733  }
 734  
 735  keywordset,
 736  subjectset {
 737      display: inline;
 738  }
 739  
 740  keyword,
 741  subject,
 742  subjectterm {
 743      display: inline;
 744  }
 745  
 746  keyword:after,
 747  subjectterm:after {
 748      content: " ";
 749  }
 750  
 751  legalnotice {
 752      display: block;
 753      /* content of legalnotice has a margin */
 754  }
 755  
 756  publishername {
 757      display: inline;
 758  }
 759  
 760  releaseinfo {
 761      display: inline;
 762  }
 763  
 764  revhistory {
 765      display: block;
 766      margin: 1.33ex 0;
 767  }
 768  
 769  revision {
 770      display: block;
 771      margin-left: 2.5ex; 
 772  }
 773  
 774  revision:before {
 775      display: marker; 
 776      content: icon(right); 
 777      color: #fea540;
 778      padding-top: .6ex; 
 779  }
 780  
 781  authorinitials {
 782      display: inline;
 783      font-weight: bold;
 784  }
 785  
 786  revnumber,
 787  revremark {
 788      display: inline;
 789  }
 790  
 791  revnumber:after,
 792  revision > date:after,
 793  revision > authorinitials:after {
 794      content: " ";
 795  }
 796  
 797  revdescription {
 798      display: block;
 799      /* content of revdescription has a margin */
 800  }
 801  
 802  volumenum {
 803      display: inline;
 804  }
 805  
 806  /* ---------------------------------------------------------------------------
 807     Inlined elements other than those belonging to modules
 808  
 809     Note that default display is inline, so there is no need to specify it.
 810  --------------------------------------------------------------------------- */
 811  
 812  emphasis {
 813      font-style: italic;
 814  }
 815  emphasis[role=bold] {
 816      font-style: normal; 
 817      font-weight: bold; 
 818  }
 819  emphasis[role=underline] {
 820      font-style: normal; 
 821      text-decoration: underline;
 822  }
 823  emphasis[role=strikethrough] {
 824      font-style: normal; 
 825      text-decoration: line-through;
 826  }
 827  
 828  emphasis > emphasis {
 829      font-style: normal; 
 830      font-weight: normal; 
 831      text-decoration: none;
 832  }
 833  
 834  literal {
 835      font-family: monospace;
 836  }
 837        
 838  link,
 839  ulink,
 840  email {
 841      color: navy;
 842      text-decoration: underline;
 843  }
 844  
 845  /* -------------------------------------
 846     Technical
 847  ------------------------------------- */
 848  
 849  command,
 850  computeroutput,
 851  filename,
 852  option,
 853  systemitem,
 854  userinput {
 855      font-family: monospace;
 856  }
 857    
 858  computeroutput,
 859  userinput {
 860      background-color: #EEEEEE;
 861  }
 862       
 863  command,
 864  option {
 865      font-weight: bold;
 866  }
 867  
 868  lineannotation {
 869      font-style: italic;
 870      font-size: medium; /* occurs in verbatim, fixed font, blocks */
 871  }
 872     
 873  replaceable {
 874      font-style: italic; 
 875  }
 876     
 877  /* -------------------------------------
 878     General
 879  ------------------------------------- */
 880  
 881  abbrev, 
 882  acronym {
 883      font-weight: bold;
 884  }
 885  
 886  citetitle {
 887      font-style: italic;
 888  }
 889  
 890  footnoteref {
 891      content: "[" attr(linkend) "]"; 
 892      font-size: small;
 893      vertical-align: super;
 894      color: navy;
 895  }
 896  
 897  footnoteref[label] {
 898      content: "[" attr(label) "]"; 
 899  }
 900  
 901  phrase[revisionflag=deleted] {
 902      text-decoration: line-through;
 903  }
 904  
 905  phrase[revisionflag=added] {
 906      text-decoration: underline;
 907  }
 908  
 909  quote:before {
 910      content: open-quote; 
 911      color: gray; 
 912  }
 913  
 914  quote:after {
 915      content: close-quote; 
 916      color: gray; 
 917  }
 918  
 919  trademark:after,
 920  productname:after {
 921      font-size: small; 
 922      color: gray; 
 923  }
 924  
 925  trademark:after, /* also works for class=trade */
 926  productname[class=trade]:after { 
 927      content: "[tm]"; 
 928  }
 929  
 930  trademark[class=copyright]:after,
 931  productname[class=copyright]:after {
 932      content: "\A9"; 
 933      font-size: medium; 
 934  }
 935  
 936  trademark[class=registered]:after,
 937  productname[class=registered]:after {
 938      content: "\AE"; 
 939      font-size: medium; 
 940  }
 941  
 942  trademark[class=service]:after,
 943  productname[class=service]:after {
 944      content: "[sm]"; 
 945  }
 946  
 947  xref {
 948      content: icon(left-link) attr(linkend); 
 949      vertical-align: text-top; /* for the icon */
 950      color: navy;
 951  }
 952          
 953  xref[endterm] {
 954      content: icon(left-link) attr(endterm); 
 955  }
 956  
 957  /* ---------------------------------------------------------------------------
 958     Comments and processing instructions
 959  --------------------------------------------------------------------------- */
 960  
 961  *::comment,
 962  *::processing-instruction {
 963      display: block;
 964      margin: 2px;
 965      white-space: pre;
 966      text-align: left;
 967      font-family: monospace;
 968      font-size: small;
 969      font-style: normal;
 970      font-weight: normal;
 971  }
 972  
 973  *::comment {
 974      background-color: #FFFFCC;
 975      color: #808000;
 976  }
 977  
 978  *::processing-instruction {
 979      background-color: #CCFFCC;
 980      color: #008000;
 981  }
 982  
 983  /* ---------------------------------------------------------------------------
 984     Other
 985  --------------------------------------------------------------------------- */
 986  
 987  xi\:include {
 988      display: tree;
 989  }
 990  
 991  *:read-only {
 992      background-color: #F0F0F0;
 993  }
 994  
 995  /* -------------------------------------
 996     Meta-information
 997  ------------------------------------- */
 998  
 999  appendixinfo > *,
1000  articleinfo > *,
1001  bibliographyinfo > *,
1002  blockinfo > *,
1003  bookinfo > *,
1004  chapterinfo > *,
1005  glossaryinfo > *,
1006  indexinfo > *,
1007  objectinfo > *,
1008  partinfo > *,
1009  prefaceinfo > *,
1010  refentryinfo > *,
1011  refmeta > *,
1012  referenceinfo > *,
1013  refsect1info > *,
1014  refsect2info > *,
1015  refsect3info > *,
1016  refsectioninfo > *,
1017  refsynopsisdivinfo > *,
1018  sect1info > *,
1019  sect2info > *,
1020  sect3info > *,
1021  sect4info > *,
1022  sect5info > *,
1023  sectioninfo > *,
1024  setindexinfo > *,
1025  setinfo > *,
1026  sidebarinfo > * {
1027      display: block;
1028      text-align: right; /* Reset paragraph styles */
1029      font: normal normal 1em sans-serif;
1030      color: #777;
1031      font-size: 0.8em;
1032  }
1033  
1034  appendixinfo > *:first-child,
1035  articleinfo > *:first-child,
1036  bibliographyinfo > *:first-child,
1037  blockinfo > *:first-child,
1038  bookinfo > *:first-child,
1039  chapterinfo > *:first-child,
1040  glossaryinfo > *:first-child,
1041  indexinfo > *:first-child,
1042  objectinfo > *:first-child,
1043  partinfo > *:first-child,
1044  prefaceinfo > *:first-child,
1045  refentryinfo > *:first-child,
1046  refmeta > *:first-child,
1047  referenceinfo > *:first-child,
1048  refsect1info > *:first-child,
1049  refsect2info > *:first-child,
1050  refsect3info > *:first-child,
1051  refsectioninfo > *:first-child,
1052  refsynopsisdivinfo > *:first-child,
1053  sect1info > *:first-child,
1054  sect2info > *:first-child,
1055  sect3info > *:first-child,
1056  sect4info > *:first-child,
1057  sect5info > *:first-child,
1058  sectioninfo > *:first-child,
1059  setindexinfo > *:first-child,
1060  setinfo > *:first-child,
1061  sidebarinfo > *:first-child { /* nicer */
1062      margin-top: 0;
1063      margin-bottom: 0;
1064  }
1065  
1066  appendixinfo > *:before,
1067  articleinfo > *:before,
1068  bibliographyinfo > *:before,
1069  blockinfo > *:before,
1070  bookinfo > *:before,
1071  chapterinfo > *:before,
1072  glossaryinfo > *:before,
1073  indexinfo > *:before,
1074  objectinfo > *:before,
1075  partinfo > *:before,
1076  prefaceinfo > *:before,
1077  refentryinfo > *:before,
1078  refmeta > *:before,
1079  referenceinfo > *:before,
1080  refsect1info > *:before,
1081  refsect2info > *:before,
1082  refsect3info > *:before,
1083  refsectioninfo > *:before,
1084  refsynopsisdivinfo > *:before,
1085  sect1info > *:before,
1086  sect2info > *:before,
1087  sect3info > *:before,
1088  sect4info > *:before,
1089  sect5info > *:before,
1090  sectioninfo > *:before,
1091  setindexinfo > *:before,
1092  setinfo > *:before,
1093  sidebarinfo > *:before {
1094      display: marker; 
1095      content: element-label();
1096      font: normal normal small sans-serif;
1097      color: #fea540;
1098  }
1099  
1100  appendixinfo > *:after,
1101  articleinfo > *:after,
1102  bibliographyinfo > *:after,
1103  blockinfo > *:after,
1104  bookinfo > *:after,
1105  chapterinfo > *:after,
1106  glossaryinfo > *:after,
1107  indexinfo > *:after,
1108  objectinfo > *:after,
1109  partinfo > *:after,
1110  prefaceinfo > *:after,
1111  refentryinfo > *:after,
1112  refmeta > *:after,
1113  referenceinfo > *:after,
1114  refsect1info > *:after,
1115  refsect2info > *:after,
1116  refsect3info > *:after,
1117  refsectioninfo > *:after,
1118  refsynopsisdivinfo > *:after,
1119  sect1info > *:after,
1120  sect2info > *:after,
1121  sect3info > *:after,
1122  sect4info > *:after,
1123  sect5info > *:after,
1124  sectioninfo > *:after,
1125  setindexinfo > *:after,
1126  setinfo > *:after,
1127  sidebarinfo > *:after {
1128      content: "";
1129  }
1130  
1131  appendixinfo > title,
1132  articleinfo > title,
1133  bibliographyinfo > title,
1134  blockinfo > title,
1135  bookinfo > title,
1136  chapterinfo > title,
1137  glossaryinfo > title,
1138  indexinfo > title,
1139  objectinfo > title,
1140  partinfo > title,
1141  prefaceinfo > title,
1142  refentryinfo > title, /* refmeta has no title */
1143  referenceinfo > title,
1144  refsect1info > title,
1145  refsect2info > title,
1146  refsect3info > title,
1147  refsectioninfo > title,
1148  refsynopsisdivinfo > title,
1149  sect1info > title,
1150  sect2info > title,
1151  sect3info > title,
1152  sect4info > title,
1153  sect5info > title,
1154  sectioninfo > title,
1155  setindexinfo > title,
1156  setinfo > title,
1157  sidebarinfo > title {
1158      font-size: 1.3em;
1159      font-weight: bold;
1160      color: #fea540;
1161      margin-left: 0;
1162      margin-right: 0;
1163      margin-top: 0;
1164      margin-bottom: 1ex;
1165  }
1166  
1167  appendixinfo > title:before,
1168  articleinfo > title:before,
1169  bibliographyinfo > title:before,
1170  blockinfo > title:before,
1171  bookinfo > title:before,
1172  chapterinfo > title:before,
1173  glossaryinfo > title:before,
1174  indexinfo > title:before,
1175  objectinfo > title:before,
1176  partinfo > title:before,
1177  prefaceinfo > title:before,
1178  refentryinfo > title:before,
1179  referenceinfo > title:before,
1180  refsect1info > title:before,
1181  refsect2info > title:before,
1182  refsect3info > title:before,
1183  refsectioninfo > title:before,
1184  refsynopsisdivinfo > title:before,
1185  sect1info > title:before,
1186  sect2info > title:before,
1187  sect3info > title:before,
1188  sect4info > title:before,
1189  sect5info > title:before,
1190  sectioninfo > title:before,
1191  setindexinfo > title:before,
1192  setinfo > title:before,
1193  sidebarinfo > title:before {
1194      content: "";
1195  }
1196  
1197  graphic,
1198  inlinegraphic {
1199      content: image(attr(fileref));
1200  }
1201  
1202  graphic {
1203      display: block;
1204      margin: 1.33ex auto;
1205  }


Généré le : Wed Nov 21 14:43:32 2007 par Balluche grâce à PHPXref 0.7
  Clicky Web Analytics