-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
94 lines (74 loc) · 1.21 KB
/
main.css
File metadata and controls
94 lines (74 loc) · 1.21 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
.container {
height: 1000px;
width: 1500px;
margin: auto;
}
h2 {
font-size: 24px;
margin-bottom: 20px;
text-align: left;
}
.Product{
float: left;
border: 1px solid rgb(196, 194, 194);
border-radius: 2%;
padding: 1%;
width: 200px;
margin: 5px;
}
.clear-fix{
clear: both;
}
.product-info {
margin-top: 10px;
}
.product-info h3 {
font-size: 18px;
margin: 0;
}
.product-info p {
font-size: 14px;
color: #6e6e6e;
margin: 5px 0;
}
.price {
margin-top: 10px;
}
.discount-price {
color: green;
font-weight: bold;
font-size: 18px;
margin-right: 10px;
}
.original-price {
text-decoration: line-through;
color: tomato;
font-size: 14px;
}
button {
background-color: #007bff;
color: white;
border: none;
padding: 10px;
width: 155px;
font-size: 14px;
border-radius: 4px;
margin-top: 10px;
margin-right: 3px;
display: inline-block;
padding-top: 13px;
}
i.favorite-icon{
display: inline-block;
color: #007bff;
margin-top: 5px;
font-size: 20px;
border: solid 2px;
padding: 7px;
}
.Product img{
width: 100%;
}
.fa-shopping-cart{
color: white;
}