This commit is contained in:
Oliver
2025-06-23 11:58:36 -03:00
parent a312477050
commit 745d7f6750
66 changed files with 4203 additions and 72 deletions

View File

@@ -346,32 +346,35 @@ main {
}
}
.story-btn {
--story-btn-size: 15rem;
--story-btn-size: 12rem;
height: var(--story-btn-size);
width: var(--story-btn-size);
padding: 1.2rem 2rem;
position: absolute;
bottom: -10%;
left: 5%;
font-weight: 600;
font-size: 1.6rem;
color: var(--white);
text-transform: capitalize;
border-radius: 50%;
background-color: #ffffff;
border-radius: 8rem;
background-color: var(--blue-2);
cursor: pointer;
transition: color 0.2s ease-in;
transition: transform 0.2s ease-in;
outline: 10px solid #ffffff;
object-fit: cover; /* optional: keeps image shape clean */
&:hover {
background-color: var(--white);
color: var(--blue-2);
}
/* optional: adds background on hover if needed */
}
.story-btn:hover {
transform: scale(1.05);
}
#stories {
display: grid;
grid-template-columns: repeat(4, 1fr);