mirror of https://github.com/reiyua/reiyua.lol.git
Link SEO companies button on homepage
This commit is contained in:
parent
a3380d954c
commit
3ca64a3174
|
@ -63,6 +63,11 @@
|
|||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="seo-button-container">
|
||||
<a href="for_seo_companies.html" class="seo-button">For Website SEO Companies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="credit">
|
||||
Video by <a href="https://www.pexels.com/video/an-orange-liquid-paint-in-motion-5649211/" target="_blank" rel="noopener noreferrer">Dan Cristian Pădureț</a> from Pexels
|
||||
|
|
21
styles.css
21
styles.css
|
@ -121,3 +121,24 @@ h1 {
|
|||
background-color: #388E3C; /* Even darker when active */
|
||||
transform: translateY(0); /* Return to original position */
|
||||
}
|
||||
|
||||
.seo-button-container {
|
||||
margin-top: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.seo-button {
|
||||
display: inline-block;
|
||||
padding: 10px 20px;
|
||||
background-color: #ff9900; /* Change to your preferred color */
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
font-size: 1rem;
|
||||
border-radius: 5px;
|
||||
transition: background-color 0.3s ease, transform 0.2s ease;
|
||||
}
|
||||
|
||||
.seo-button:hover {
|
||||
background-color: #0056b3;
|
||||
transform: scale(1.05);
|
||||
}
|
Loading…
Reference in New Issue