<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*******************************************************************************************************/
/*                                                                                                     */
/*  Fichier....................:  11.12_exercice_08_carnet_xhtml_css.css                               */
/*  Type.......................:  Feuille de styles CSS                                                */
/*  Titre......................:  Feuille de styles du fichier 11.11_exercice_08_carnet_xhtml_css.html */
/*  Auteur.....................:  ©2011 Richard Vigneux, Cégep de Sherbrooke                           */
/*  Date de création...........:  2011-04-06                                                           */
/*  Date de mise en production.:  2011-04-06                                                           */
/*                                                                                                     */
/*******************************************************************************************************/
/*  MODIFICATIONS                                                                                      */
/*  DATE       : PAR               : DESCRIPTION DES MODIFICATIONS                                     */
/*                                                                                                     */
/*******************************************************************************************************/
/*                                                                                                     */
/*  - Ce fichier définit les styles CSS utilisés dans le fichier:                                      */
/*    "11.11_exercice_08_carnet_xhtml_css.html".                                                       */
/*                                                                                                     */
/*  En entrée: RIEN                                                                                    */
/*                                                                                                     */
/*  En sortie: RIEN                                                                                    */
/*                                                                                                     */
/*******************************************************************************************************/
/*  Note: Opera réagit mal à @charset "utf-8".                                                         */
/*******************************************************************************************************/


/*======================================================*/
/* Style GÉNÉRAL                                        */
/*======================================================*/
  *  /* Sélecteur universel: Les styles définis ici s'appliqueront à l'ensemble des balises. */
  {
    font-family: Arial,Helvetica,sans-serif;
    font-size  : 14px; 
  }

/*======================================================*/
/* Styles sur BALISES MULTIPLES                         */
/*======================================================*/
  th, td
  { 
    text-align      : left;  
    border-color    : #316AC5;
    border-style    : solid;
    border-width    : 1px;
    overflow        : hidden; /* Très important pour permettre que le titre flottant soit aligné sur le tableau */
    text-indent     : 3px;
    padding-right   : 3px;
    white-space     : nowrap; 
  }

/*======================================================*/
/* Styles sur BALISES SIMPLES                           */
/*======================================================*/
  body 
  {
    margin:0px;
  }
  table
  { 
    table-layout   : fixed;    /* Très important pour permettre que le titre flottant soit aligné sur le tableau */
    width          : 99.9%;    /* Très important pour permettre que le titre flottant soit aligné sur le tableau */
    border-collapse: collapse; /* Fusionne les bordures des lignes adjacentes. */
    border-color   : #316AC5;
    border-style   : solid;
    border-width   : 2px;
  }
  td
  { 
    color           : #000000;    
    font-weight     : normal;
    background-color: transparent;
  }
  th
  { 
    color           : #316AC5;    
    font-weight     : bold;
    background-color: #C1D2EE;
  }

/*======================================================*/
/* Styles de CLASSES                                    */
/*======================================================*/
  .sty_CelluleEnTete_No        { width: 3%;  }
  .sty_Cellules_No             { width: 3%;  }
  .sty_CelluleEnTete_Nom       { width: 9%;  }
  .sty_Cellules_Nom            { width: 9%;  }
  .sty_CelluleEnTete_Prenom    { width: 7%;  }
  .sty_Cellules_Prenom         { width: 7%;  }
  .sty_CelluleEnTete_Adresse   { width: 13%; }
  .sty_Cellules_Adresse        { width: 13%; }
  .sty_CelluleEnTete_CP        { width: 7%;  }
  .sty_Cellules_CP             { width: 7%;  }
  .sty_CelluleEnTete_Ville     { width: 11%; }
  .sty_Cellules_Ville          { width: 11%; }
  .sty_CelluleEnTete_Province  { width: 14%; }
  .sty_Cellules_Province       { width: 14%; }
  .sty_CelluleEnTete_Telephone { width: 9%;  }
  .sty_Cellules_Telephone      { width: 9%;  }
  .sty_CelluleEnTete_Courriel  {  }
  .sty_Cellules_Courriel       {  }
  .sty_Lien_Validation         { text-decoration: none; } /* Nécessaire pour enlever le soulignement entre les images sous IE */

/*======================================================*/
/* Styles en fct de L'ATTRIBUT                          */
/*======================================================*/
/*======================================================*/
/* Styles en fct de la VALEUR de l'ATTRIBUT             */
/*======================================================*/
/*======================================================*/
/* Styles sur BALISES en fct de l'ATTRIBUT              */
/*======================================================*/
/*======================================================*/
/* Styles sur BALISES en fct de la VALEUR de l'ATTRIBUT */
/*======================================================*/
/*======================================================*/
/*  Styles INTERACTIFS                                  */
/*======================================================*/
  .sty_LignesCorps:hover 
  {
    background-color: #E6EDF9;
  }  
/*======================================================*/
/* Styles en fct de l'ATTRIBUT ID                       */
/*======================================================*/
  #tbl_EnTeteCarnet
  {
    position    : fixed;
    top         : 0px;
    left        : 0px;
  }
  #img_XhtmlValide, #img_CssValide
  {
    border-style: none;  /* Nécessaire pour enlever la bordure générée par le lien */
    width       : 88px;
    height      : 31px;
  }</pre></body></html>