File size: 866 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.product {
  display: flex;
  flex-direction: column;
  /*background-color: white;*/
  background: linear-gradient(
    to bottom right,
    rgb(235, 195, 217),
    rgb(188, 217, 235)
  );
  z-index: 1;
  align-items: center;
  overflow: hidden;
  justify-content: flex-end;
  margin: 10px;
  padding: 20px;
  width: 100%;
  max-height: 400px;
  min-width: 100px;
}
.product > img {
  max-height: 200px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
}
.product__info {
  height: 100px;
  margin-bottom: 15px;
}
.product__price {
  margin-top: 5px;
}
.product > button {
  background: #f0c14b;
  border: 1px solid;
  margin-top: 10px;
  border-color: #a88734, #9c7e31, #846a29;
}
.product__rating {
  display: flex;
}
/*
.product__bestseller {
  align-self: flex-start;
  overflow: hidden;
  background-color: yellow;
  transform: rotate(-45deg);
}
*/