| author | Anthony Ly <anthonyly.com@gmail.com> |
| Tue, 27 Nov 2012 18:08:06 +0100 | |
| changeset 20 | c86141a8570d |
| parent 18 | bf333fd74eee |
| child 28 | 10a958322a62 |
| permissions | -rw-r--r-- |
| 18 | 1 |
/*articles*/ |
2 |
.articles{ |
|
3 |
padding-left: 1px; |
|
4 |
overflow: auto; |
|
5 |
border-bottom: 1px solid #e0dde0; |
|
6 |
} |
|
7 |
.article{ |
|
8 |
padding: 12px 0 6px 0; |
|
9 |
float: left; |
|
10 |
border-bottom: 1px solid #e0dde0; |
|
11 |
} |
|
|
20
c86141a8570d
maj retours / modifications
Anthony Ly <anthonyly.com@gmail.com>
parents:
18
diff
changeset
|
12 |
.articles .tooltip{ |
|
c86141a8570d
maj retours / modifications
Anthony Ly <anthonyly.com@gmail.com>
parents:
18
diff
changeset
|
13 |
width: 209px; |
|
c86141a8570d
maj retours / modifications
Anthony Ly <anthonyly.com@gmail.com>
parents:
18
diff
changeset
|
14 |
height: 155px; |
|
c86141a8570d
maj retours / modifications
Anthony Ly <anthonyly.com@gmail.com>
parents:
18
diff
changeset
|
15 |
position: absolute; |
|
c86141a8570d
maj retours / modifications
Anthony Ly <anthonyly.com@gmail.com>
parents:
18
diff
changeset
|
16 |
background: url(../img/white_arrow_long.png) 0 0 no-repeat; |
|
c86141a8570d
maj retours / modifications
Anthony Ly <anthonyly.com@gmail.com>
parents:
18
diff
changeset
|
17 |
z-index: 200; |
|
c86141a8570d
maj retours / modifications
Anthony Ly <anthonyly.com@gmail.com>
parents:
18
diff
changeset
|
18 |
line-height: 150px; |
|
c86141a8570d
maj retours / modifications
Anthony Ly <anthonyly.com@gmail.com>
parents:
18
diff
changeset
|
19 |
text-align: center; |
|
c86141a8570d
maj retours / modifications
Anthony Ly <anthonyly.com@gmail.com>
parents:
18
diff
changeset
|
20 |
display: none; |
|
c86141a8570d
maj retours / modifications
Anthony Ly <anthonyly.com@gmail.com>
parents:
18
diff
changeset
|
21 |
} |
| 18 | 22 |
.article:hover{ |
23 |
background-color: #eee; |
|
24 |
} |
|
25 |
.inner-article{ |
|
26 |
width: 177px; |
|
27 |
padding-left: 12px; |
|
28 |
border-right: 1px solid #e0dde0; |
|
29 |
min-height: 250px; |
|
30 |
} |
|
31 |
.article:nth-child(4n+4) .inner-article{ |
|
32 |
border-right: none; |
|
33 |
} |
|
34 |
.article h2{ |
|
35 |
font-size: 20px; |
|
36 |
margin-bottom: 2px; |
|
37 |
} |
|
38 |
.article h2 a{ |
|
39 |
text-decoration: none; |
|
40 |
} |
|
41 |
.article h2 a:hover{ |
|
42 |
color:#C51810; |
|
43 |
} |
|
44 |
.author{ |
|
45 |
font-family: Arial; |
|
46 |
font-size: 8px; |
|
47 |
line-height: 10px; |
|
48 |
margin-bottom: 10px; |
|
49 |
} |
|
50 |
.number-article{ |
|
51 |
font-size: 10px; |
|
52 |
overflow: hidden; |
|
53 |
} |
|
54 |
.author a:hover, |
|
55 |
.number-article a:hover{ |
|
56 |
text-decoration: none; |
|
57 |
} |
|
58 |
.author, .author a, |
|
59 |
.number-article, .number-article a{ |
|
60 |
color: #c51810; |
|
61 |
} |
|
62 |
.number-article{ |
|
63 |
line-height: 22px; |
|
64 |
} |
|
65 |
.article-content{ |
|
66 |
width: 168px; |
|
67 |
min-height: 105px; |
|
68 |
} |
|
69 |
.article-content .links li{ |
|
70 |
list-style-image: url(../img/article-link-arrow.png); |
|
71 |
} |
|
72 |
.article-content .links li a:hover{ |
|
73 |
text-decoration: none; |
|
74 |
} |
|
75 |
.article-content .links{ |
|
76 |
margin-top: 10px; |
|
77 |
clear: both; |
|
78 |
padding-left: 20px; |
|
79 |
} |
|
80 |
.article-visuel-wrap{ |
|
81 |
display: block; |
|
82 |
float: right; |
|
83 |
margin-left: 10px; |
|
84 |
} |
|
85 |
/* annotations */ |
|
86 |
.article-annotations{ |
|
87 |
width: 160px; |
|
88 |
height: 4px; |
|
89 |
border:1px solid #edebed; |
|
90 |
background-color: #898989; |
|
91 |
margin-bottom: 6px; |
|
92 |
} |
|
93 |
.article-annotations a{ |
|
94 |
float: left; |
|
95 |
display: block; |
|
96 |
width: 100%; |
|
97 |
height: 4px; |
|
98 |
background-image: url(../img/border-right-annotation-value.png); |
|
99 |
background-repeat: repeat-y; |
|
100 |
background-position: right top; |
|
101 |
} |
|
102 |
.article-annotations .blue{ |
|
103 |
background-color: #429dd4; |
|
104 |
} |
|
105 |
.article-annotations .green{ |
|
106 |
background-color: #73c263; |
|
107 |
} |
|
108 |
.article-annotations .red{ |
|
109 |
background-color: #d64752; |
|
110 |
} |
|
111 |
.article-annotations .empty{ |
|
112 |
background-color: #898989; |
|
113 |
} |
|
114 |
.add-annotation{ |
|
115 |
width: 22px; |
|
116 |
height: 17px; |
|
117 |
display: block; |
|
118 |
background: url(../img/article-annotations-add-comment-sprite.png) no-repeat 0 0; |
|
119 |
float: right; |
|
120 |
margin-right: 14px; |
|
121 |
} |
|
122 |
.add-annotation:hover{ |
|
123 |
background-position: -22px 0; |
|
124 |
} |