Skip to content

Commit

Permalink
CAMBIOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergiioog committed Oct 21, 2023
1 parent 23c0598 commit c43e131
Showing 1 changed file with 37 additions and 5 deletions.
42 changes: 37 additions & 5 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -155,21 +155,48 @@ a,li:hover {
text-decoration: none;
margin-top: 25px;
}

#botonCurriculum {
width: 50%;
width: auto;
height: 100%;
color: white;
text-decoration: underline;
font-weight: bold;
border: whitesmoke solid 2px;
border-radius: 10px;
max-width: 60%;
background-color:rgb(88, 171, 243);
border: none;
color: #fff;
background-image: linear-gradient(30deg, #0400ff, #4ce3f7);
border-radius: 20px;
background-size: 100% auto;
font-family: inherit;
font-size: 14px;
padding: 0.6em 1.5em;
cursor: pointer;

}
#botonCurriculum:hover {
background-color: rgb(55, 154, 240);
}
background-position: right center;
background-size: 200% auto;
-webkit-animation: pulse 2s infinite;
animation: pulse512 1.5s infinite;
cursor: pointer;
}

@keyframes pulse512 {
0% {
box-shadow: 0 0 0 0 #05bada66;
}

70% {
box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
}

100% {
box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
}
}

/*--------SECCIÓN SOBRE MI---------*/


Expand Down Expand Up @@ -343,6 +370,10 @@ a,li:hover {
border: none;
font-size: 14px;
}
.botones_live_github button:hover {
background-color: #2a2828;
cursor: pointer;
}

/*--------SECCIÓN PROYECTOS--------*/

Expand Down Expand Up @@ -379,6 +410,7 @@ a,li:hover {
display: flex;
flex-wrap: wrap;
justify-content: space-around; /* Espaciado uniforme entre elementos */
cursor: pointer;
}

.container {
Expand Down

0 comments on commit c43e131

Please sign in to comment.