Blame view

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