Subversion Repositories Applications.dictionnaire

Rev

Rev 3 | 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;
5 aurelien 15
	background-color:#F8FBF2;
16
	-moz-border-radius: 10px;
17
    -webkit-border-radius: 10px;
18
    border-radius: 10px;
19
	font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
20
	font-size: 1.2em;
21
	color: #333333;
1 aurelien 22
	padding:5px;
23
	padding-bottom: 20px;
24
	padding-top: 0px;
25
	border:1px solid black;
3 aurelien 26
	z-index: 1000;
27
	text-decoration: none;
5 aurelien 28
	width: 250px;
29
	opacity: 0.95;
1 aurelien 30
}
31
 
32
.definition_container_fleche {
33
	background: url("fleche.png") no-repeat scroll;
34
    display: block;
35
    height: 20px;
36
    left: 10px;
37
    position: relative;
38
    top: -20px;
3 aurelien 39
    z-index: 999;
40
    border
41
}
42
 
43
.definition {
44
	border-bottom: none;
45
	text-decoration: none;
46
}
47
 
48
#conteneur_activation_definition {
49
	position: fixed;
50
	left: 0;
51
	top: 0;
52
	padding: 5px;
53
	background-color: #EAEDCD;
54
	border: 1px dotted black;
55
	font-family: Arial,Helvetica,Verdana,sans-serif;
56
    font-size: 0.85em;
1 aurelien 57
}