Commit 1a71f2a1f9c83f49a4dd657d9868304b856a5009

Authored by
1 parent 1cf43f8e

Interface web finale, non optimisée

Showing 1 changed file with 73 additions and 0 deletions   Show diff stats
style.css 0 → 100644
... ... @@ -0,0 +1,73 @@
  1 +
  2 +{
  3 + border-bottom : 1px solid #9EA0A1;
  4 + padding-bottom : 25px;
  5 +}
  6 +
  7 +#onglets
  8 +{
  9 + position : absolute;
  10 + border : 1px solid transparent;
  11 + padding : 0;
  12 + font : bold 11px Batang, arial, serif;
  13 + list-style-type : none;
  14 + left : 50%;
  15 + margin-top : 0;
  16 + width : 430px;
  17 + margin-left : -215px; /* la moiti� de width */
  18 +}
  19 +
  20 +#onglets li
  21 +{
  22 + float : left;
  23 + height : 23px; /* � modifier suivant la taille de la police pour centrer le texte dans l'onglet */
  24 + background-color: RGB(245,245,245);
  25 + margin : 2px 2px 0 2px !important; /* Pour les navigateurs autre que IE */
  26 + margin : 1px 2px 0 2px; /* Pour IE */
  27 + border : 1px solid #9EA0A1;
  28 +}
  29 +
  30 +#onglets li.active
  31 +{
  32 + border-bottom: 1px solid #fff;
  33 + background-color: #fff;
  34 +}
  35 +
  36 +#onglets a
  37 +{
  38 + display : block;
  39 + color : #666;
  40 + text-decoration : none;
  41 + padding : 3px;
  42 +}
  43 +
  44 +#onglets a:hover
  45 +{
  46 + background : #fff;
  47 +}
  48 +
  49 +.titre
  50 +{
  51 + color : RGB(0,59,84);
  52 + font-size : 20px;
  53 + font-weight : bold;
  54 + text-align : center;
  55 +}
  56 +
  57 +.contenu
  58 +{
  59 + text-align : center;
  60 +}
  61 +
  62 +/*a
  63 +{
  64 + color: RGB(255,59,23);
  65 + font-size : 16px;
  66 + font-weight : bold;
  67 +}*/
  68 +
  69 +* /*pour toute la page*/
  70 +{
  71 + font-size: 14px;
  72 +}
  73 +
... ...