blob: 87f71f2ade8f1807528b05f0c40bcfddfc3f33db (
plain)
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
|
body
{
margin: auto;
max-width: 1200px;
/*width: 90%;*/
font-family: sans;
background-color: #0cceec;
}
#bloc_page
{}
.infobulle
{
/*text-decoration: none;*/
/* évite que l'infobulle ne se retrouve dans un coin de l'écran */
/*position:relative;*/
/* block -> hauteur fixe pour vertical-align dans l'image */
/*display: inline-block;*/
}
/*.infobulle button
{
display: none;
position: absolute;
bottom: 35px;
left: 10px;
}
.infobulle:hover button
{
display: inline;
}
.infobulle img
{
vertical-align: middle;
}*/
|