Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
Signed-off-by: Nikola Hristov <[email protected]>
  • Loading branch information
NikolaRHristov committed Jan 10, 2025
1 parent 949e472 commit 4219108
Showing 1 changed file with 9 additions and 18 deletions.
27 changes: 9 additions & 18 deletions Source/Stylesheet/Component/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,43 +24,34 @@
}

.button {
background-color: #8b4b8b; /* Purple-ish base color */
color: white;
@apply outline-none;

padding: 2px 5px;
border: none;
border-radius: 6px; /* Makes the button rounded */
border-radius: 6px;
font-size: 14px;
cursor: pointer;
position: relative;
display: inline-block;

/* Creating the double border effect using box-shadow */
box-shadow:
0 0 0 1px rgba(139, 75, 139, 0.3),
0 0 0 4px rgba(89, 48, 89, 0.8);

/* Velvet texture effect */
background-image: radial-gradient(
circle at 50% 50%,
rgba(255, 255, 255, 0.1) 0%,
transparent 60%
),
radial-gradient(
circle at 30% 30%,
rgba(255, 255, 255, 0.08) 0%,
transparent 40%
);

transition: all 0.3s ease;

&:hover {
background-color: #9d559d;
transform: scale(1.02);
color: white;
}

&:active {
transform: scale(0.98); /* Slight shrink effect when clicked */
}

&:hover,
&:focus,
&:active {
@apply outline-none;
}
}
}

0 comments on commit 4219108

Please sign in to comment.