-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFoodDetails.scss
103 lines (103 loc) · 2.61 KB
/
FoodDetails.scss
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
95
96
97
98
99
100
101
102
103
.food-details {
margin: 50px 0;
.img-box {
img {
width: 100%;
}
}
.info {
color: #666;
.name {
color: #121619;
text-transform: uppercase;
}
.price {
color: #fe9d3e;
margin: 15px 0;
}
p {
margin-bottom: 30px;
}
}
form {
.form-group {
margin-bottom: 30px;
h5 {
margin-bottom: 15px;
text-transform: capitalize;
}
.platter-box {
.btn {
border: 1px solid #e5e5e5;
color: #666;
height: 50px;
margin: 0 15px 0 0;
border-radius: 0;
padding: 12px 30px;
text-transform: capitalize;
&:hover {
background: #fe9d3e;
border: 1px solid #fe9d3e;
color: #fff;
}
}
.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
box-shadow: 0 0 0 0rem rgb(13 110 253 / 50%) !important;
}
.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
color: #fff;
background-color: #fe9d3e;
border-color: #fe9d3e;
}
}
.quantity-box {
.btn-inc-dec {
border: 1px solid #e5e5e5;
color: #666;
height: 50px;
width: 50px;
font-size: 32px;
text-align: center;
cursor: pointer;
span {
// background: red;
width: 100%;
display: block;
}
}
input {
border: 1px solid #e5e5e5;
color: #666;
height: 50px;
width: 50px;
text-align: center;
&:focus-visible {
border: 1px solid #e5e5e5;
outline: 0;
}
}
}
}
.success-alert,
.failure-alert {
background: #e6f7e7;
color: #8bc34a;
border-radius: 0;
max-width: 333px;
margin-bottom: 0;
padding: 13px;
text-align: center;
position: relative;
top: -15px;
}
.failure-alert {
background: #fce4e0;
color: #ff4500;
}
}
}