controller_catalog.css
1.28 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* * * List Products * * * * * * * * * * * * */
#product_list {
margin: 0px;
padding: 0px;
}
#product_list ul {
margin: 0px;
padding: 0px;
}
#content #product_list li {
margin: 0px;
padding: 0px;
list-style: none;
}
#content #product_list li.product {
border: 1px solid #888;
margin-bottom: 10px;
padding: 5px 10px;
}
#product_list .product-pic {
display: block;
width: 64px;
height: 64px;
background-repeat: no-repeat;
background-position: 50% 50%;
float: left;
margin-right: 15px;
position: relative; /* work arround msie bug */
}
#product_list .product-pic span {
display: none;
}
#content #product_list h3 {
margin: 0px;
padding: 0px;
font-size: 120%;
}
.msie #content #product_list h3 {
margin-top: -15px;
}
#product_list h3 a {
text-decoration: none;
}
#product_list .product_category {
font-size: 11px;
}
#product_list .description {
clear: left;
font-size: 11px;
text-align: justify;
padding: 5px 10px 0px 10px;
}
.msie #product_list .description {
padding: 5px 10px 10px 10px;
}
/* * * Show Product * * * * * * * * * * * * */
#show_product .product-pic {
float: left;
margin-right: 15px;
border: 1px solid #444;
padding: 2px;
background: #FFF;
}
#show_product .product_category {
padding-top: 10px;
clear: left;
}