-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (85 loc) · 2.23 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: black;
color: #333;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
text-align: center;
}
header {
background-color: black;
color: white;
padding: 20px 0;
}
header h1 {
color: lime;
margin: 0;
font-size: 2em;
}
header p {
color: red;
margin: 0;
font-size: 1.2em;
}
main {
margin-top: 20px;
}
.guide, .music-player, .breathing-exercise, .optical-simulation {
background-color: white;
border-radius: 8px;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
h2 {
font-size: 1.5em;
margin-bottom: 10px;
}
button {
background-color: #4caf50;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
font-size: 1em;
}
button:hover {
background-color: #45a049;
}
#optical-animation {
width: 100%;
height: 200px;
margin-top: 20px;
background: linear-gradient(90deg, #ff0000, #ff7e00, #fffb00, #00ff00, #0000ff, #ff00ff);
animation: passion-pulse 5s infinite ease-in-out;
border-radius: 50px; /* স্ফীত আকৃতি */
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* গভীর ছায়া */
}
@keyframes passion-pulse {
0% {
transform: scale(1); /* প্রাথমিক আকার */
background: linear-gradient(90deg, #ff0000, #ff7e00, #fffb00, #00ff00, #0000ff, #ff00ff);
}
25% {
transform: scale(1.05); /* ধীরে ধীরে বেড়ে যাওয়া */
background: linear-gradient(90deg, #ff7e00, #fffb00, #00ff00, #0000ff, #ff00ff, #ff0000);
}
50% {
transform: scale(1.1); /* আরও বৃদ্ধি */
background: linear-gradient(90deg, #fffb00, #00ff00, #0000ff, #ff00ff, #ff0000, #ff7e00);
}
75% {
transform: scale(1.05); /* আবার ছোট হওয়া */
background: linear-gradient(90deg, #00ff00, #0000ff, #ff00ff, #ff0000, #ff7e00, #fffb00);
}
100% {
transform: scale(1); /* প্রাথমিক আকারে ফিরে আসা */
background: linear-gradient(90deg, #ff0000, #ff7e00, #fffb00, #00ff00, #0000ff, #ff00ff);
}
}