SEO Update

This commit is contained in:
edsea
2025-01-09 01:35:58 +01:00
parent a1882b7523
commit 749a808119
8 changed files with 93 additions and 3 deletions

View File

@@ -1127,6 +1127,21 @@ footer .footer-inner .footer-col.img {
color: red;
}
.btn {
padding: 0.75rem;
border: none;
border-radius: 4px;
background-color: #dadada;
color: #2a2a2a;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.btn:hover {
background-color: #ffffff;
}
@keyframes rotate {
0% {
transform: rotate(0deg);

File diff suppressed because one or more lines are too long

View File

@@ -657,6 +657,21 @@ footer{
color:red;
}
.btn {
padding: 0.75rem;
border: none;
border-radius: 4px;
background-color: #dadada; // Primary button color
color: #2a2a2a;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
&:hover {
background-color: #ffffff; // Darker on hover
}
}
@keyframes rotate {
0% {
transform: rotate(0deg);

BIN
rss/img/kisses.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

BIN
rss/img/kisses2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

View File

@@ -4,8 +4,7 @@ document.addEventListener('DOMContentLoaded', async (v) =>{
loginForm.addEventListener('submit', async (e) =>{
e.preventDefault();
login();
await login();
})
})