refactor: update card component styles and links, enhance license attribution

This commit is contained in:
2025-11-16 00:48:03 +01:00
parent 892bb34cf0
commit f426caeb1e
4 changed files with 54 additions and 20 deletions

View File

@@ -17,15 +17,33 @@
}
.btn-primary {
background: #1e1e1e;
position: relative;
overflow: hidden;
background: var(--orange-dark) !important;
border-radius: 0px;
padding: 10px 20px;
color: var(--text-light);
font-weight: bold;
border: none;
z-index: 1;
}
.btn-primary::after {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: var(--blue-dark) !important;
transition: left 0.5s ease; /* velocidad */
z-index: -1;
}
.btn-primary:hover::after {
left: 0;
}
.btn-primary:hover {
background: #3e3e3e;
color: var(--text-light)
}
color: var(--text-light);
}