-
Notifications
You must be signed in to change notification settings - Fork 1
/
productDetail.css
70 lines (66 loc) · 1.05 KB
/
productDetail.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
70
.container{
width: 80%;
margin: auto;
/* border: 1px solid red; */
display: flex;
justify-content: space-around;
margin-top: 50px;
margin-bottom: 100px;
}
.container>div{
width: 40%;
/* border: 1px solid red; */
}
.project{
font-size: 25px;
font-weight: bold;
}
#title{
font-size: large;
}
#rating{
font-size: large;
}
#plus{
font-size: large;
background-color: grey;
border: 0px;
}
#des{
font-size: large;
}
.addTocart{
width: 200px;
height: 50px;
font-size: large;
font-weight: bolder;
border-radius: 10px;
border: 0px;
}
.addTocart:hover{
cursor: pointer;
background-color: grey;
color:white;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#flex{
display: flex;
justify-content: space-between;
}
#addto{
background-color: rgba(64, 33, 238, 0.705);
}
.container_left img{
width: 100%;
}
/* .container_left{
position: fixed;
} */
#mrp{
text-decoration: line-through;
font-weight: bold;
}
#saving{
color: green;
font-weight: bold;
}