-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing_page.css
264 lines (211 loc) · 3.96 KB
/
landing_page.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
/* CSS styles go here */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-image: url("") ;
background-position: center;
background-size: cover;
}
.page-container{
text-align: center;
}
.header {
width: 1180px;
height: 80px;
display: flex;
align-items: center;
background-color: #EEEEEE;
padding: 0px 30px 0px 20px;
margin: auto;
margin-top: 10px;
margin-bottom: 50px;
text-align: center;
}
.header nav a {
justify-content: space-between ;
}
/* sliding images style start */
.slides {
display: flex;
overflow: hidden;
margin: 100px;
}
.slides input{
display: none;
}
.slide{
width: 700px;
transition: 2s;
}
.slide img {
width: 890px;
height: 500px;
}
#radio1:checked ~ .first{
margin-left: 0;
}
#radio2:checked ~ .first{
margin-left: -100%;
}
#radio3:checked ~ .first{
margin-left: -200%;
}
/* sliding images style end */
/* aside style end */
.container{
text-align: center;
}
.product{
font-family: Arial;
font-size: 24px;
font-weight: bold;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #4caf50;
color: #ffffff;
margin-bottom:auto;
text-decoration: none;
border-radius: 12px 20px 18px 1px;
}
/* Top selling item style start */
.top{
margin-top: -20px;
}
.third-cont {
background-color:skyblue;
border-radius: 8px;
margin: 50px 50px 40px 50px;
width: 1300px;
height: 940px;
padding: 20px;
}
.third-cont h1 {
text-align: center;
padding-top: 10px;
}
.third-cont .third-0 {
display: flex;
justify-content: space-between;
width: 100%;
margin-top: 20px;
}
.third-cont .item-0 {
background-color: #FFFFFF;
width: 100%;
height: 430px;
margin: 0px 10px 0px 0px;
border-radius: 8px;
padding: 0px 10px 0px 0px;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.third-cont .third-0 .item-img-0 {
width: 252px;
height: 250px;
}
.third-cont .third-0 .item-description-p {
font-size: 14px;
font-weight: 700;
font-style: bold;
margin-left:30px ;
}
.third-cont .third-0 button {
width: 70%;
height: 43.28px;
border-radius: 8px;
border: 0px;
background-color: #F2994A;
color: #FFFFFF;
cursor: pointer;
margin-left: 40px;
margin-top:10px ;
}
.third-cont .third-0 button:hover {
background-color: rgb(216, 123, 30);
}
.amount-p{
margin-left: 10px;
}
.checked {
color: orange;
margin-left:5px ;
}
/* Top selling item style end */
.box {
background-color:rgb(135, 306,235,0.5);
border-radius: 8px;
margin: 50px 50px 40px 50px;
width: 1300px;
height: 740px;
padding: 30px;
}
.story{
text-align: center;
font-weight: bolder;
font-family: Arial;
color: purple ;
font-size: large;
}
.box h2{
text-align: center;
color: green;
}
.image{
margin-top: 0px;
width: 200px;
height: 250px;
border-radius: 50%;
border: 3px solid hotpink;
transition: all.5s;
}
.image:hover{
transform: scale(1.2) rotate(360deg);
}
.teamembers{
display: flex;
margin: auto;
justify-content: space-evenly;
}
.box p{
text-align: center;
font-weight: bold;
}
/*media Queries*/
@media (max-width: 960px){
body{
background: forestgreen;
}
p{
color: fuchsia;
}
.wrap{
min-height: 100vh;
}
}
@media (max-width: 480px) {
body{
background: purple;
}
}
@media ( min-width: 481px) and (max-width:700px){
body{
background: yellow;
}
p{
color: red;
}
}
/*css for small screens (eg smartphones) */
@media screen and (max-width: 767px) {
/* css rules for small screenss go here*/
}
/*css for medium screens (eg tablet) */
@media screen and (min-width: 769px) and (max-width: 1023px) {
/* css rules for medium screenss go here*/
}
/*css for large screens (eg desktops) */
@media screen and (min-width: 1024px) {
/* css rules for large screenss go here*/
}