42868d70
andryeyev
Создал GIT
|
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
|
.liquid {
background:#313b31 url('../images/bodybackground.png') repeat-y scroll 50% 0;
border:2px solid #19301C;
-moz-border-radius:10px 10px 10px 10px;
-webkit-border-radius:10px 10px 10px 10px;
border-radius:10px 10px 10px 10px;
padding:10px 0;
}
.liquid .previous {
display:block;
height:126px;
width:64px;
background-image:url('../images/previous.png');
float:left;
margin:0;
padding:0;
}
.liquid .next {
display:block;
height:126px;
width:64px;
background-image:url('../images/next.png');
float:right;
margin:0;
padding:0;
}
.liquid ul li {
width:126px;
padding:0 2px;
margin:0;
}
.liquid ul li a img {
-moz-box-shadow: 5px 5px 3px #222;
-webkit-box-shadow: 5px 5px 3px #222;
box-shadow: 5px 5px 3px #222;
}
|