Subversion Repositories eFlore/Applications.bibliobota

Rev

Rev 24 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 jp_milcent 1
/* Positionnement du contenu de l'application Biblio Bota*/
2
 
3
/* ------------------------------------------------------------------------------------------------------------ */
4
/* Décoration générale devant être intégré dans Papyrus */
5
 
6
/* Styles du fragmenteur */
7
#frag_nbre_resultat, #frag_navigation {
8
  text-align: center;
9
}
10
/* Message d'erreur */
11
.erreur {
12
  color: red;
13
}
14
/* Texte d'un champ d'une fichie */
15
.champ_cle {
16
  font-weight: bold;
17
}
18
/* Texte d'une valeur d'un champ d'une fichie*/
19
.champ_valeur {
20
  font-weight: normal;
21
}
22
/* Le texte moins voyant */
23
.texte_inactif {
24
  font-family:      Arial;
25
  font-size:        10px;
26
  text-decoration:   none;
27
  color:             gray;
28
}
29
/* ------------------------------------------------------------------------------------------------------------ */
30
/* Nouveaux styles de Biblio Bota */
31
 
32
/* L'image precedent de la navigation avancée */
33
.bb_img_precedent {
34
  border: 0px;
35
  width: 18px;
36
  height: 15px;
37
}
38
/* L'image représentant un icone pour les liens web */
39
.bb_img_web {
40
  border: 0px;
41
  width: 16px;
42
  height: 16px;
43
}
44
/* Les images représentant un icone de 16px par 16px */
45
.bb_img_icone {
46
  border: 0px;
47
  width: 16px;
48
  height: 16px;
49
  vertical-align: top;
50
}
51
/* Les images représentant un icone de 18px par 15px */
52
.bb_img_icone_large {
53
  border: 0px;
54
  width: 18px;
55
  height: 15px;
56
  vertical-align: top;
57
}
58
/* L'image représentant un site partenaire */
59
.bb_img_partenaire {
60
  border: 0px;
61
  width: 84px;
62
  height: 12px;
63
  vertical-align: middle;
64
}
65
/* L'image représentant un site reference */
66
.bb_img_reference {
67
  border: 0px;
68
  width: 84px;
69
  height: 12px;
70
  vertical-align: middle;
71
}
72
/* L'image représentant un document epuisé */
73
.bb_img_epuise {
74
  border: 0px;
75
  width: 40px;
76
  height: 12px;
77
  vertical-align: middle;
78
}
79
 
80
/* Image illustrant les structures, périodiques... */
81
.bb_img_structure, .bb_img_periodique, .bb_img_fascicule, .bb_img_article, .bb_img_livre, .bb_img_media {
82
  border: 0px;
83
  margin: 1em;
84
  float: right;
85
}
86
#bb_liste_article li, #bb_liste_livre li, #bb_liste_media li {
87
  clear:both;
88
}
89
/* Contient la navigation avancée */
90
.bb_navigation {
25 jp_milcent 91
	padding:5px;
2 jp_milcent 92
  text-align: left;
93
  vertical-align: middle;
94
}
24 jp_milcent 95
.bb_navigation, .bb_navigation a {
96
  background-color: #E0DC37;}
97
#bb_liste_periodique .bb_navigation,#bb_liste_periodique .bb_navigation a {
98
  background-color: transparent;}
2 jp_milcent 99
/* Texte normal */
100
.bb_txt_normal {
101
  font-weight: normal;
102
}
103
/* Texte centré */
104
.bb_txt_centre {
105
  text-align: center;
106
}
107
/* Texte trouvé par le moteur de recherche */
108
.bb_txt_trouve {
109
  background-color: yellow;
110
}
111
 
112
/* Pour aligner à droite un contenu */
113
.bb_aligner_droite {
114
  text-align: right;
115
  width: 65%;
116
}
117
/* Suppression des puces devant les listes des moteurs de recherche */
118
#bb_moteur_media ul, #bb_moteur_lien ul, #bb_moteur_structure ul {
119
  list-style-type: none;
120
}
121
 
122
/* Identifiant du moteur de recherche des médias (livres et articles)*/
123
#bb_moteur_media ul li {
124
  padding: 3px;
125
}
126
/* Identifiant du moteur de recherche des liens (sites web)*/
127
#bb_moteur_lien ul li {
128
  padding: 3px;
129
}
130
/* Identifiant du moteur de recherche des structures (organismes)*/
131
#bb_moteur_structure ul li {
132
  padding: 3px;
133
}
134
/* Affichage de la navigation avancée à côté du titre du périodique dans la liste des périodiques en consultation avancée */
135
#bb_liste_periodique h3 {
136
  display: inline;
137
}
138
#bb_liste_periodique .bb_navigation {
139
  display: inline;
140
}
141
 
142
/* Séparateur horizontal */
143
.bb_separateur_horizontal {
144
  height: 1px;
145
  width: 100%;
146
  color: gray;
147
}