-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.css
96 lines (82 loc) · 1.5 KB
/
shop.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#page-header {
background-image: url(img/product/banner/bn.jpg);
background-size: cover;
background-position: top;
width: 1290px;
height: 40vh;
min-width: 100%;
/* filter: grayscale(40%); */
color: red;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
h2,
p {
color: #fff;
}
}
#pagination {
text-align: center;
a {
text-decoration: none;
background-color: #fe4c50;
padding: 15px 20px;
border-radius: 4px;
color: #fff;
font-weight: 600;
}
i {
font-size: 16px;
font-weight: 600;
}
}
/* SINGLE PRODUCT */
#prodetails {
display: flex;
margin-top: 20px;
}
#prodetails .single-pro-image {
width: 40%;
margin-right: 50px;
}
.small-img-group {
display: flex;
justify-content: space-between;
}
.small-img-col {
flex-basis: 24%;
cursor: pointer;
}
#prodetails .single-pro-details {
width: 50%;
padding-top: 30px;
h4 {
padding: 40px 0 20px 0;
}
h2 {
font-size: 26px;
}
select {
display: block;
padding: 5px 10px;
margin-bottom: 10px;
}
input {
width: 50px;
height: 47px;
padding-left: 10px;
font-size: 16px;
margin-right: 10px;
}
input:focus {
outline: none;
}
button {
background: #fe4c50;
color: #fff;
}
span {
line-height: 25px;
}
}