From 0d6bc2314dbf548d6c5a3d9777c1d722d7afca31 Mon Sep 17 00:00:00 2001 From: DiyaGhorpade Date: Sat, 20 Sep 2025 20:33:34 +0530 Subject: [PATCH] Added a slide navigation button,fixed "learn more" buttons to redirect and changed colour of the tile in "About Us" boxes to green --- index.html | 97 ++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 87 insertions(+), 10 deletions(-) diff --git a/index.html b/index.html index 0d8d5e8..083a73a 100644 --- a/index.html +++ b/index.html @@ -304,7 +304,7 @@ } .about-card h4 { - color: #463896; + color: #28a745; font-weight: 600; } @@ -1503,8 +1503,66 @@ transform: none !important; box-shadow: none !important; } - - /*Dark Mode*/ + + .arrow-slide-btn { + width: 60px; + height: 60px; + border-radius: 50%; + background: rgba(255, 255, 255, 0.9); + border: 2px solid #fff; + color: #3498db; + cursor: pointer; + position: absolute; + right: 20px; + top: 40%; /* Changed from 50% to position it higher */ + transform: translateY(-50%); + overflow: hidden; + transition: all 0.3s ease; + box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); + display: flex; + align-items: center; + justify-content: center; + z-index: 10; +} + + .arrow-slide-btn:hover { + transform: translateY(-50%) translateX(5px); + box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); + background: #fff; +} + + .arrow-slide-btn:active { + transform: translateY(-50%); + } + + .arrow-icon { + font-size: 24px; + transition: all 0.3s ease; + color: #3498db; + } + + .arrow-slide-btn:hover .arrow-icon { + transform: translateX(3px); + color: #8e44ad; + } + + /* Optional pulse animation */ + @keyframes pulse { + 0% { transform: translateY(-50%) scale(1); } + 50% { transform: translateY(-50%) scale(1.05); } + 100% { transform: translateY(-50%) scale(1); } + } + + .arrow-slide-btn { + animation: pulse 2s infinite; + } + + /* Make sure the container has relative positioning */ + .container { + position: relative; + padding-right: 90px; /* Add space for the button */ + } + @@ -1663,7 +1721,7 @@
Cyber Analyst
@@ -1679,7 +1737,7 @@

Website Development

@@ -1695,7 +1753,7 @@

Graphic Design

@@ -1711,7 +1769,7 @@

Digital Marketing

@@ -1727,7 +1785,7 @@

Social Media Management

@@ -1742,11 +1800,17 @@

Content Writing

+ + @@ -2289,7 +2353,20 @@ yearSpan.textContent = new Date().getFullYear(); }); - +