34 lines
569 B
CSS
34 lines
569 B
CSS
/** Checkout Cart Style Sheet **/
|
|
|
|
table.checkout_cartlist {
|
|
/* margin-left: auto; */
|
|
/* margin-right: auto; */
|
|
width: 100%;
|
|
background-color: #F9F9FA;
|
|
border: 0px solid #AAAACC;
|
|
padding: 2px;
|
|
}
|
|
|
|
table.checkout_cartlist tr td.title {
|
|
color: #000000;
|
|
font-size: 125%;
|
|
}
|
|
|
|
table.checkout_cartlist tr td.title a {
|
|
text-decoration: none;
|
|
color: #0000AA;
|
|
}
|
|
|
|
table.checkout_cartlist tr td {
|
|
vertical-align: top;
|
|
}
|
|
|
|
table.checkout_cartlist tr td.icon {
|
|
width: 22px;
|
|
}
|
|
|
|
table.checkout_cartlist tr td.value {
|
|
font-weight: bold;
|
|
font-size: 120%;
|
|
text-align: right;
|
|
} |