Subversion Repositories Applications.dictionnaire

Rev

Rev 1 | Rev 5 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 aurelien 1
.definition_term {
2
	text-decoration: underline;
3
	border-bottom: 1px solid black;
4
	position: relative;
5
}
6
 
7
.definition_term:hover {
8
	background-color: yellow;
9
	cursor: help;
10
}
11
 
12
.definition_container {
13
	position: fixed;
14
	height:auto;
15
	background-color:#AAAAAA;
16
	padding:5px;
17
	padding-bottom: 20px;
18
	padding-top: 0px;
19
	border:1px solid black;
3 aurelien 20
	z-index: 1000;
21
	text-decoration: none;
1 aurelien 22
}
23
 
24
.definition_container_fleche {
25
	background: url("fleche.png") no-repeat scroll;
26
    display: block;
27
    height: 20px;
28
    left: 10px;
29
    position: relative;
30
    top: -20px;
3 aurelien 31
    z-index: 999;
32
    border
33
}
34
 
35
.definition {
36
	border-bottom: none;
37
	text-decoration: none;
38
}
39
 
40
#conteneur_activation_definition {
41
	position: fixed;
42
	left: 0;
43
	top: 0;
44
	padding: 5px;
45
	background-color: #EAEDCD;
46
	border: 1px dotted black;
47
	font-family: Arial,Helvetica,Verdana,sans-serif;
48
    font-size: 0.85em;
1 aurelien 49
}