Update README.md
Browse files
README.md
CHANGED
@@ -19,6 +19,7 @@ tags:
|
|
19 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
20 |
<style>
|
21 |
.container {
|
|
|
22 |
max-width: auto;
|
23 |
text-align: center;
|
24 |
animation: fadeIn 1s ease-in-out;
|
@@ -47,25 +48,51 @@ tags:
|
|
47 |
color: #fff;
|
48 |
background-color: #444;
|
49 |
border: 1px solid #555;
|
|
|
50 |
}
|
51 |
th {
|
52 |
background-color: #6a006a;
|
53 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
a {
|
55 |
color: #007bff;
|
56 |
text-decoration: none;
|
|
|
|
|
|
|
|
|
57 |
}
|
58 |
.donate-button {
|
59 |
color: #fff;
|
60 |
padding: 15px 30px;
|
61 |
border-radius: 50px;
|
62 |
background: linear-gradient(135deg, #800080, #6a006a);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
}
|
64 |
hr {
|
65 |
border: none;
|
66 |
height: 3px;
|
67 |
margin: 1rem 0;
|
68 |
background: linear-gradient(90deg, transparent, #800080, transparent);
|
|
|
69 |
}
|
70 |
</style>
|
71 |
</head>
|
@@ -168,7 +195,8 @@ tags:
|
|
168 |
</tr>
|
169 |
</table>
|
170 |
<hr>
|
171 |
-
<a href="https://www.donationalerts.com/r/politrees" target="_blank" class="donate-button">
|
172 |
-
|
|
|
173 |
</div>
|
174 |
</html>
|
|
|
19 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
20 |
<style>
|
21 |
.container {
|
22 |
+
padding: 2rem;
|
23 |
max-width: auto;
|
24 |
text-align: center;
|
25 |
animation: fadeIn 1s ease-in-out;
|
|
|
48 |
color: #fff;
|
49 |
background-color: #444;
|
50 |
border: 1px solid #555;
|
51 |
+
transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
|
52 |
}
|
53 |
th {
|
54 |
background-color: #6a006a;
|
55 |
}
|
56 |
+
th:hover {
|
57 |
+
transform: none;
|
58 |
+
}
|
59 |
+
td:hover {
|
60 |
+
background-color: #555;
|
61 |
+
transform: scale(1.05);
|
62 |
+
}
|
63 |
a {
|
64 |
color: #007bff;
|
65 |
text-decoration: none;
|
66 |
+
transition: color 0.3s ease-in-out;
|
67 |
+
}
|
68 |
+
a:hover {
|
69 |
+
color: inherit;
|
70 |
}
|
71 |
.donate-button {
|
72 |
color: #fff;
|
73 |
padding: 15px 30px;
|
74 |
border-radius: 50px;
|
75 |
background: linear-gradient(135deg, #800080, #6a006a);
|
76 |
+
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
|
77 |
+
display: inline-block;
|
78 |
+
font-size: 1rem;
|
79 |
+
}
|
80 |
+
.donate-button:hover {
|
81 |
+
transform: scale(1.1);
|
82 |
+
box-shadow: 0 0 20px #800080;
|
83 |
+
}
|
84 |
+
.donate-button span {
|
85 |
+
transition: font-size 0.3s ease-in-out;
|
86 |
+
}
|
87 |
+
.donate-button:hover span {
|
88 |
+
font-size: 1.3rem;
|
89 |
}
|
90 |
hr {
|
91 |
border: none;
|
92 |
height: 3px;
|
93 |
margin: 1rem 0;
|
94 |
background: linear-gradient(90deg, transparent, #800080, transparent);
|
95 |
+
animation: pulse 5s infinite;
|
96 |
}
|
97 |
</style>
|
98 |
</head>
|
|
|
195 |
</tr>
|
196 |
</table>
|
197 |
<hr>
|
198 |
+
<a href="https://www.donationalerts.com/r/politrees" target="_blank" class="donate-button">
|
199 |
+
<span>Send Donation</span>
|
200 |
+
</a>
|
201 |
</div>
|
202 |
</html>
|