-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsinglep.css
62 lines (58 loc) · 1.13 KB
/
singlep.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
#prodetails {
display: flex;
margin-top: 20px;
}
#prodetails .single-pro-image {
width: 40%;
margin-right: 50px;
}
.small-image-group {
display: flex;
justify-content: space-between;
}
.small-image-col {
flex-basis: 24%;
cursor: pointer;
}
#prodetails .single-pro-details {
width: 50%;
padding-top: 30px;
}
#prodetails .single-pro-details h4 {
padding: 40px 0 20px 0;
}
#prodetails .single-pro-details h2 {
font-size: 26px;
}
#prodetails .single-pro-details select {
display: block;
padding: 5px 10px;
margin-bottom: 10px;
}
#prodetails .single-pro-details input {
width: 50px;
height: 47px;
padding-left: 10px;
font-size: 16px;
margin-right: 10px;
}
#prodetails .single-pro-details button {
background: #088178;
color: #fff;
}
#prodetails .single-pro-details input:focus {
outline: none;
}
#prodetails .single-pro-details span {
line-height: 25px;
}
@media (max-width: 477px) {
#prodetails {
display: flex;
flex-direction: column;
}
#prodetails .single-pro-details,
#prodetails .single-pro-image {
width: 100%;
}
}