OLD | NEW |
---|---|
1 /* Most Visited */ | 1 /* Most Visited */ |
2 | 2 |
3 #most-visited { | 3 #most-visited { |
4 position: relative; | 4 position: relative; |
5 padding: 0; | 5 padding: 0; |
6 height: 366px; | 6 height: 366px; |
7 margin-top: -10px; | 7 margin-top: 0; |
arv (Not doing code reviews)
2010/08/31 21:13:59
You should be able to remove this now
| |
8 -webkit-user-select: none; | 8 -webkit-user-select: none; |
9 } | 9 } |
10 | 10 |
11 .thumbnail-container { | 11 .thumbnail-container { |
12 position: absolute; | 12 position: absolute; |
13 color: hsl(213, 90%, 24%); | 13 color: hsl(213, 90%, 24%); |
14 text-decoration: none; | 14 text-decoration: none; |
15 -webkit-transition: left .15s, right .15s, top .15s; | 15 -webkit-transition: left .15s, right .15s, top .15s; |
16 text-decoration: none; | 16 text-decoration: none; |
17 } | 17 } |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
251 } | 251 } |
252 | 252 |
253 .thumbnail-container > .title { | 253 .thumbnail-container > .title { |
254 height: auto; | 254 height: auto; |
255 } | 255 } |
256 | 256 |
257 .thumbnail-wrapper { | 257 .thumbnail-wrapper { |
258 background-size: 150px 93px; | 258 background-size: 150px 93px; |
259 } | 259 } |
260 } | 260 } |
OLD | NEW |