-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.css
More file actions
69 lines (69 loc) · 1.34 KB
/
cart.css
File metadata and controls
69 lines (69 loc) · 1.34 KB
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
body{
font-family: Arial, Helvetica, sans-serif;
}
.flex{
display: flex;
justify-content: space-around;
align-items: center;
background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(5,11,11,1) 7%, rgba(13,33,36,1) 14%);
height: 150px;
}
.d-flex{
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
margin-right: 200px;
}
.shop{
color: #fff;
font-family: Arial, Helvetica, sans-serif;
animation: 4s anime infinite;
cursor: pointer;
}
@keyframes anime{
100%{
color: blue;
}
70%{
color: yellow;
}
50%{
color: #fff;
}
}
#a:hover{
background-color: #fff;
color: #000;
padding: 10px 30px;
transition: 0.3s;
}
.s-products{
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}
.product-hunt{
border: 1px solid none;
border-radius: 20px;
box-shadow: 0 0 25px #000, 0 0 25px #000,0 0 25px #000, 0 0 25px #000;
}
.x-product{
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
border: 2px solid none;
border-radius: 20px;
width: 1200px;
box-shadow: 0 0 25px #000, 0 0 50px #000, 0 0 100px, 0 0 280px #000;
}
.image-card{
margin-right: 200px;
}
.card-content{
margin-right: 200px;
}