-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRatnakar.css
More file actions
52 lines (42 loc) · 929 Bytes
/
Copy pathRatnakar.css
File metadata and controls
52 lines (42 loc) · 929 Bytes
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
.quantity {
display: flex;
justify-content:center;
align-items: center;
margin-bottom: 10px;
}
.quantity button {
background-color:orange;
color: #fff;
border: none;
padding: 4px 6px;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.3s;
}
.quantity button:hover {
background-color: green;
}
.quantity input {
width: 40px;
text-align: center;
margin: 0px 10px;
border: 1px solid #ccc;
border-radius: 4px;
padding: 5px;
}
.add-to-cart-btn {display: flex;
justify-content:center;
align-items: center;
color: #fff;
border: none;
padding: 5px 8px;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.3s;
}
.add-to-cart-btn:hover {
}
.btn-style{ background-color:greenyellow;
border-radius: 5px;
padding:1px 10px;
}