-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
164 lines (163 loc) · 3.08 KB
/
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/* common style */
body{
margin: 0;
font-family: 'Poppins', sans-serif;
}
main, header{
max-width: 1200px;
margin: 0 auto;
background-color: #ffffff;
margin-top: 80px;
}
/* Header style
-------------------- */
.header-influencer{
display: grid;
grid-template-columns: repeat(2,1fr);
justify-content: space-between;
margin-bottom: 70px;
}
.icone{
text-decoration: none;
list-style: none;
display: grid;
grid-template-columns: repeat(6,1fr);
justify-content: space-between;
align-items: center;
}
/* main start---------- */
/* 1st section */
.camera{
display: grid;
grid-template-columns: repeat(2,1fr);
justify-content: space-between;
}
.camerapic{
margin-left: 80px;
background-image: url(./images/Circle\ design.svg);
}
.camera h1{
font-size: 60px;
}
.camera button{
color: rgb(251, 251, 251);
background-color: deeppink;
border-radius: 90px;
border: none;
font-size: 18px;
padding: 10px 25px 10px 25px;
justify-content: space-between;
}
/* 1st section End
-----------------------------------*/
/* Online Shopping logo */
.onlineshopping{
margin-top: 110px;
border: 1px solid gray;
padding: 30px;
display: grid;
grid-template-columns: repeat(7,1fr);
justify-content: center;
}
/* Popular Collection start */
.popular{
margin-top: 110px;
}
.popular h2{
text-align: center;
margin-bottom: 70px;
}
.collection{
display: grid;
grid-template-columns: repeat(3,1fr);
gap: 40px;
}
.collections{
display: grid;
grid-template-columns: repeat(1,1fr);
justify-content: space-between;
padding: 15px;
box-shadow: 2px 2px 9px gray;
}
.pic{
width: 100%;
}
.details{
text-align: left;
}
.details h2{
text-align: left;
margin-bottom: 15px;
}
.reating{
display: grid;
grid-template-columns: repeat(1,1fr);
font-size: 11px;
color:black;
}
.star{
color: #FB8200;
margin-bottom: 0;
}
h3{
font-size: 15px;
margin-top: 0;
}
.see-more{
color: deeppink;
margin-left: 280%;
font-size: 20px;
width: 200px;
border: none;
background-color: white;
}
/* end product style */
.end-section{
margin-top: 80px;
}
.featured-text h1{
font-size: 36px;
}
/* End all section Style */
/* --------
footer style
----------------- */
.footer-div{
background-color: rgb(28, 7, 79);
color: white;
text-align: center;
margin-top: 70px;
padding-top: 70px;
padding-bottom: 30px;
}
.footer-div h3{
font-size: 27px;
margin-bottom: 5px;
}
.footer-div h4{
font-size: 15px;
font-weight: 200;
margin-top: 0;
}
/* End */
@media screen and (min-width:477px) and (max-width:1024px) {
/* .icone{
display: grid;
grid-template-columns: repeat(1,1fr);
} */
main, header{
max-width: 800px;
}
.camera{
display: flex;
grid-template-columns: repeat(1,1fr);
flex-direction: column-reverse;
}
.collection{
display: grid;
grid-template-columns: repeat(1,1fr);
}
.end{
flex-direction: column;
}
}