|
18
|
1 |
/* actu */ |
|
|
2 |
.actu { |
|
|
3 |
float: left; |
|
|
4 |
position: relative; |
|
|
5 |
} |
|
|
6 |
.inner-actu{ |
|
|
7 |
width: 100%; |
|
|
8 |
background-color:rgba(0,0,0,.7); |
|
|
9 |
height: 40px; |
|
|
10 |
position: absolute; |
|
|
11 |
bottom: 0; |
|
|
12 |
} |
|
|
13 |
.inner-actu h2{ |
|
|
14 |
color: #FFF; |
|
|
15 |
line-height: 40px; |
|
|
16 |
font-size: 24px; |
|
|
17 |
padding-left: 10px; |
|
|
18 |
} |
|
|
19 |
.inner-actu h2 a{ |
|
|
20 |
color: #FFF; |
|
|
21 |
text-decoration: none; |
|
|
22 |
} |
|
|
23 |
.links{ |
|
|
24 |
display: none; |
|
|
25 |
position: absolute; |
|
|
26 |
bottom: 0; |
|
|
27 |
right: 0; |
|
|
28 |
} |
|
|
29 |
.actu:hover .links{ |
|
|
30 |
display: block; |
|
|
31 |
} |
|
|
32 |
.links li{ |
|
|
33 |
float: left; |
|
|
34 |
margin: 0 0 1px 1px; |
|
|
35 |
} |
|
|
36 |
.links a{ |
|
|
37 |
display: block; |
|
|
38 |
width: 28px; |
|
|
39 |
height: 28px; |
|
|
40 |
background-color: #007dad; |
|
|
41 |
background-repeat: no-repeat; |
|
|
42 |
} |
|
|
43 |
.links a:hover{ |
|
|
44 |
background-color: #4FA3C4; |
|
|
45 |
} |
|
|
46 |
.links a.trash{ |
|
|
47 |
background-image: url(../img/home-button-trash.png); |
|
|
48 |
background-position: 8px 5px; |
|
|
49 |
} |
|
|
50 |
.links a.file{ |
|
|
51 |
background-image: url(../img/home-button-file.png); |
|
|
52 |
background-position: 2px 6px; |
|
|
53 |
text-decoration: none; |
|
|
54 |
position: relative; |
|
|
55 |
} |
|
|
56 |
.links a.file span{ |
|
|
57 |
color: #0F85B2; |
|
|
58 |
display: block; |
|
|
59 |
font-size: 11px; |
|
|
60 |
left: 8px; |
|
|
61 |
position: absolute; |
|
|
62 |
text-align: center; |
|
|
63 |
top: 6px; |
|
|
64 |
width: 18px; |
|
|
65 |
} |
|
|
66 |
.links a.comment{ |
|
|
67 |
background-image: url(../img/home-button-comment.png); |
|
|
68 |
background-position: 4px 6px; |
|
|
69 |
} |