-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
156 lines (138 loc) · 2.42 KB
/
Copy pathstyles.css
File metadata and controls
156 lines (138 loc) · 2.42 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
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
body,
html {
min-height: 100vh;
margin: 0;
padding: 20px;
font-family: "Comic Sans MS", "Arial", sans-serif;
background-color: #f0f0f0;
color: #333;
}
body {
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
overflow-x: hidden;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
h1 {
color: #2255ff;
font-size: 48px;
}
p {
font-size: 32px;
color: #ff4422;
}
img {
max-width: 50%;
height: auto;
border-radius: 8px;
margin-top: 20px;
}
.github-icon {
position: center;
bottom: 20px;
right: 20px;
width: 50%;
height: auto;
}
.small-img {
max-width: 25%;
height: auto;
border-radius: 8px;
margin-top: 10px;
}
#sadAnswer {
font-size: 24px;
color: #666;
margin-top: 20px;
}
@keyframes rainbow-bg {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.payment-celebration {
background: linear-gradient(
45deg,
#ff0000 0%,
#ff7f00 15%,
#ffff00 30%,
#00ff00 45%,
#0000ff 60%,
#4b0082 75%,
#8b00ff 90%,
#ff0000 100%
);
background-size: 200% 200%;
animation: rainbow-bg 3s ease infinite;
color: white;
padding: 15px 30px;
border-radius: 8px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
font-weight: bold;
}
.celebration-container {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.celebration-cat {
width: 200px;
height: 200px;
object-fit: contain;
}
.music-button {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
background: none;
border: none;
cursor: pointer;
transition: transform 0.3s ease;
margin: 20px auto;
width: 100%;
}
.music-icon {
display: flex;
justify-content: center;
align-items: center;
width: 60px;
height: 60px;
background-color: #3498db;
border-radius: 50%;
font-size: 24px;
color: white;
transition: all 0.3s ease;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.music-label {
font-size: 14px;
color: #333;
font-weight: bold;
text-align: center;
}
.music-button:hover .music-icon {
transform: scale(1.1);
background-color: #2980b9;
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.music-button:active .music-icon {
transform: scale(0.95);
}
@keyframes shine {
0% {
background-position: -100% 50%;
}
100% {
background-position: 200% 50%;
}
}