forked from mdadeeljawaid/Pharmacy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch-style.css
80 lines (58 loc) · 1.43 KB
/
search-style.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
71
72
73
74
75
76
77
78
79
#SearchListPage {
background-color: rgb(255, 255, 255);
margin-top: 10px;
align-items:center;
border: 2px solid rgb(194, 187, 187);
border-radius: 12px;
padding: 20px;
}
#SearchListPage .searchDetails{
justify-content: space-around;
width: 70%;
height: 150px;
margin: auto;
margin-bottom: 5px;
margin-bottom: 5px;
background-color: #fcfcfc;
border: 2px solid rgb(194, 187, 187);
border-radius: 12px;
padding: 20px;
}
@media only screen and (max-width: 750px) {
#SearchListPage .searchDetails{
height: auto;
width: 90%;
}
}
#SearchListPage .searchDetails .productNameandbarnd {
width: 100%;
}
#SearchListPage .searchDetails .productNameandbarnd p {
margin-top: 10px;
color:rgb(51 160 74 / 67%);
font-size:15px;
font-weight: 600;
}
#SearchListPage .searchDetails .productNameandbarnd a{
color:rgb(46 154 248);
font-size:larger;
font-family: open sans;
font-weight: 600;
}
#SearchListPage .searchDetails .MrpOPriceDiscount {
width: 50%;
}
#SearchListPage .searchDetails .MrpOPriceDiscount .ourPrice {
color: rgb(46 154 248);
font-size:xx-large;
}
#SearchListPage .searchDetails .MrpOPriceDiscount .Discount {
color:rgb(125, 241, 150);
}
#SearchListPage .searchDetails .cartbtn {
width: 50%;
}
#SearchListPage #pagingnationbar{
justify-content: center;
margin-top: 20px;
}