-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
172 lines (148 loc) · 4.8 KB
/
shop.html
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
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tel : @ScriptingSampIran</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Cairo', Tahoma, sans-serif;
background-color: #0d0d0d;
color: #fff;
overflow-x: hidden;
}
header {
text-align: center;
padding: 40px 0;
font-size: 3rem;
color: #0ff;
text-shadow: 0px 0px 15px rgba(0, 255, 255, 0.7);
}
.neon-glow {
text-shadow: 0px 0px 20px rgba(0, 255, 255, 0.8),
0px 0px 40px rgba(0, 255, 255, 0.6),
0px 0px 60px rgba(0, 255, 255, 0.5);
}
.animated-text {
font-size: 2rem;
color: #ff00ff;
text-align: center;
padding: 20px;
animation: glow 2s infinite alternate;
}
@keyframes glow {
0% {
text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff;
}
100% {
text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff;
}
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
.product {
background-color: #1b1b1b;
border-radius: 20px;
margin: 20px;
width: 280px;
text-align: center;
padding: 20px;
position: relative;
box-shadow: 0px 10px 20px rgba(0, 255, 255, 0.3),
0px 5px 30px rgba(255, 0, 255, 0.5),
inset 0px 0px 20px rgba(0, 255, 255, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product:hover {
transform: translateY(-20px);
box-shadow: 0px 15px 30px rgba(0, 255, 255, 0.6),
0px 10px 40px rgba(255, 0, 255, 0.8),
inset 0px 0px 30px rgba(0, 255, 255, 0.5);
}
.product img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 15px;
transition: all 0.3s ease;
}
.product img:hover {
transform: scale(1.1);
box-shadow: 0px 0px 30px rgba(0, 255, 255, 0.7);
}
.product-title {
font-size: 1.5rem;
margin: 15px 0;
color: #0ff;
text-shadow: 0px 0px 10px rgba(0, 255, 255, 0.5);
}
.product-price {
font-size: 1.2rem;
color: #ff00ff;
margin-bottom: 20px;
text-shadow: 0px 0px 10px rgba(255, 0, 255, 0.6);
}
.product button {
background-color: #0ff;
color: #000;
border: none;
padding: 15px 30px;
font-size: 1rem;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0px 5px 20px rgba(0, 255, 255, 0.4);
}
.product button:hover {
background-color: #ff00ff;
color: #fff;
box-shadow: 0px 10px 30px rgba(255, 0, 255, 0.8),
0px 0px 30px rgba(255, 0, 255, 0.6);
transform: scale(1.1);
}
@media (max-width: 768px) {
.product {
width: 100%;
}
}
</style>
</head>
<body>
<header class="neon-glow">
Tel : @ScriptingSampIran
</header>
<div class="animated-text">عنوان فروشگاه</div>
<div class="container">
<div class="product">
<img src="javam/skin.jpg" alt="محصول 1">
<h2 class="product-title">محصول 1</h2>
<p class="product-price">200,000 تومان</p>
<button>خرید</button>
</div>
<div class="product">
<img src="javam/skin.jpg" alt="محصول 2">
<h2 class="product-title">محصول 2</h2>
<p class="product-price">300,000 تومان</p>
<button>خرید</button>
</div>
<div class="product">
<img src="javam/skin.jpg" alt="محصول 3">
<h2 class="product-title">محصول 3</h2>
<p class="product-price">150,000 تومان</p>
<button>خرید</button>
</div>
</div>
</body>
</html>