-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathayurvedic_medicine.css
73 lines (64 loc) · 1.32 KB
/
ayurvedic_medicine.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
/* Ayurvedic Medicine Section */
body {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
padding: 50px 20px;
background-color: #000000;
}
.ayurvedic-medicine .heading {
font-size: 3rem;
margin-bottom: 20px;
color: #00f904;
}
.medicine-list {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
margin-top: 30px;
}
.medicine-card {
background: #252525;
border: 1px solid #ddd;
border-radius: 8px;
padding: 20px;
max-width: 300px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
.medicine-card:hover {
transform: scale(1.05);
box-shadow: 0 6px 12px rgb(0, 255, 38);
}
.medicine-card img {
width: 100%;
height: auto;
border-radius: 5px;
margin-bottom: 15px;
}
.medicine-card h3 {
font-size: 2rem;
margin-bottom: 10px;
color: #00ff33;
}
.medicine-card p {
font-size: 1.5rem;
margin-bottom: 15px;
color: #fcfcfc;
}
.buy-btn {
display: inline-block;
background-color: #02ff02;
color: #000000;
padding: 10px 15px;
font-size: 1rem;
font-weight: bold;
border-radius: 5px;
text-decoration: none;
transition: background 0.3s;
}
.buy-btn:hover {
background-color: #000000;
color: #00ff00;
}