-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
135 lines (114 loc) · 1.86 KB
/
style.css
File metadata and controls
135 lines (114 loc) · 1.86 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
body {
font-family: Arial;
color: #211a1a;
font-size: 0.9em;
}
#shopping-cart {
margin: 40px;
}
#product-grid {
margin: 40px;
}
#shopping-cart table {
width: 100%;
background-color: #F0F0F0;
}
#shopping-cart table td {
background-color: #FFFFFF;
}
.txt-heading {
color: #211a1a;
border-bottom: 1px solid #E0E0E0;
overflow: auto;
}
#btnEmpty {
background-color: #ffffff;
border: #d00000 1px solid;
padding: 5px 10px;
color: #d00000;
float: right;
text-decoration: none;
border-radius: 3px;
margin: 10px 0px;
}
.rapyd{
background-color: #ffffff;
border: green 1px solid;
padding: 5px 10px;
color: green;
float: right;
text-decoration: none;
border-radius: 3px;
margin: 10px;
}
.btnAddAction {
padding: 5px 10px;
margin-left: 5px;
background-color: #efefef;
border: #E0E0E0 1px solid;
color: #211a1a;
float: right;
text-decoration: none;
border-radius: 3px;
cursor: pointer;
}
#product-grid .txt-heading {
margin-bottom: 18px;
}
.product-item {
float: left;
background: #ffffff;
margin: 30px;
border: #E0E0E0 1px solid;
}
.product-image {
height: 155px;
width: 250px;
background-color: #FFF;
}
.clear-float {
clear: both;
}
.demo-input-box {
border-radius: 2px;
border: #CCC 1px solid;
padding: 2px 1px;
}
.tbl-cart {
font-size: 0.9em;
}
.tbl-cart th {
font-weight: normal;
}
.product-title {
margin-bottom: 20px;
}
.product-price {
float:left;
}
.cart-action {
float: right;
}
.product-quantity {
padding: 5px 10px;
border-radius: 3px;
border: #E0E0E0 1px solid;
}
.product-tile-footer {
padding: 15px 15px 0px 15px;
overflow: auto;
}
.cart-item-image {
width: 30px;
height: 30px;
border-radius: 50%;
border: #E0E0E0 1px solid;
padding: 5px;
vertical-align: middle;
margin-right: 15px;
}
.no-records {
text-align: center;
clear: both;
margin: 38px 0px;
}