refactor: update card component styles and links, enhance license attribution
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user