|
40
|
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 |
}
|
|
|
70 |
/* treemap */
|
|
|
71 |
.actus{
|
|
|
72 |
position: relative;
|
|
|
73 |
}/*
|
|
|
74 |
.actu{
|
|
|
75 |
position: absolute;
|
|
|
76 |
overflow: hidden;
|
|
|
77 |
float: none;
|
|
|
78 |
}*/
|
|
|
79 |
|
|
|
80 |
/* Home Actus */
|
|
|
81 |
div.actu {
|
|
|
82 |
float: left;
|
|
|
83 |
position: relative;
|
|
|
84 |
}
|
|
|
85 |
div.actu div.inner-actu{
|
|
|
86 |
width: 100%;
|
|
|
87 |
background-color:rgba(0,0,0,.7);
|
|
|
88 |
height: 40px;
|
|
|
89 |
position: absolute;
|
|
|
90 |
bottom: 0;
|
|
|
91 |
}
|
|
|
92 |
div.actu div.inner-actu h2{
|
|
|
93 |
color: #FFF;
|
|
|
94 |
line-height: 40px;
|
|
|
95 |
font-size: 24px;
|
|
|
96 |
padding-left: 10px;
|
|
|
97 |
}
|
|
|
98 |
div.actu div.inner-actu h2 a{
|
|
|
99 |
color: #FFF;
|
|
|
100 |
text-decoration: none;
|
|
|
101 |
}
|
|
|
102 |
div.actu div.inner-actu div.links{
|
|
|
103 |
position: absolute;
|
|
|
104 |
bottom: 0;
|
|
|
105 |
right: 0;
|
|
|
106 |
}
|
|
|
107 |
div.actu div.links ul li{
|
|
|
108 |
float: left;
|
|
|
109 |
margin: 0 0 1px 1px;
|
|
|
110 |
}
|
|
|
111 |
div.actu div.links ul li a{
|
|
|
112 |
display: block;
|
|
|
113 |
width: 28px;
|
|
|
114 |
height: 28px;
|
|
|
115 |
background-color: #007dad;
|
|
|
116 |
background-repeat: no-repeat;
|
|
|
117 |
}
|
|
|
118 |
div.actu div.links ul li a:hover{
|
|
|
119 |
background-color: #4FA3C4;
|
|
|
120 |
}
|
|
|
121 |
div.actu div.links ul li a.trash{
|
|
|
122 |
background-image: url(../img/home-button-trash.png);
|
|
|
123 |
background-position: 8px 5px;
|
|
|
124 |
}
|
|
|
125 |
div.actu div.links ul li a.file{
|
|
|
126 |
background-image: url(../img/home-button-file.png);
|
|
|
127 |
background-position: 2px 6px;
|
|
|
128 |
text-decoration: none;
|
|
|
129 |
position: relative;
|
|
|
130 |
}
|
|
|
131 |
div.actu div.links ul li a.file span{
|
|
|
132 |
color: #0F85B2;
|
|
|
133 |
display: block;
|
|
|
134 |
font-size: 11px;
|
|
|
135 |
left: 8px;
|
|
|
136 |
position: absolute;
|
|
|
137 |
text-align: center;
|
|
|
138 |
top: 6px;
|
|
|
139 |
width: 18px;
|
|
|
140 |
}
|
|
|
141 |
div.actu div.links ul li a.comment{
|
|
|
142 |
background-image: url(../img/home-button-comment.png);
|
|
|
143 |
background-position: 4px 6px;
|
|
|
144 |
} |