-
Notifications
You must be signed in to change notification settings - Fork 0
/
productlijst.css
69 lines (55 loc) · 1.1 KB
/
productlijst.css
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
.product-list {
width: 90%;
margin-left: 5%;
margin-right: 5%;
border-collapse: collapse;
display: table;
}
.product-list td, .product-list th {
text-align: center;
vertical-align: middle;
padding: 4pt;
}
.product-list td {
border: 1px solid black;
background-color: #fefefe;
}
.product-list .remove-button {
width: 18pt;
height: 18pt;
}
.product-list .product-id {
text-align: right;
}
.product-list .product-image {
width: 80pt;
padding: 0;
}
.product-list .product-image img {
width: 100%;
display: block;
}
.product-list .product-title {
text-align: left;
}
.product-list .product-amount {
text-align: center;
width: 20pt;
}
.product-list .bottom-row td, th {
vertical-align: top;
}
.product-list .bottom-row .left, .product-list .bottom-row .right {
border: 0;
background-color: inherit;
}
.product-list .bottom-row .left {
text-align: left;
}
.product-list .bottom-row .right {
text-align: right;
}
.product-list .bottom-row #total-price {
text-decoration: underline;
border-bottom: 1px solid black;
}