Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
totaro committed Jan 22, 2024
1 parent fa05bd5 commit 1e28e7c
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1073,6 +1073,7 @@
cursor:pointer;
word-wrap: break-word;
min-width: 0;

}
span.animated_box_text
{
Expand Down Expand Up @@ -1100,7 +1101,8 @@
width:15rem;
background: tomato;
border-radius: 10px;
transition: 0.3s;
/* transition: 0.3s; */

animation: 2s linear infinite animateborder;
}

Expand All @@ -1123,19 +1125,26 @@

.animated_box2{
overflow: hidden;
/* transition: all .4s ease; */
transition: animation 2s ease;

}

.animated_box2::before{
position: absolute;
content: '';
height: 60%;
width:140%;
background: white;
transform: rotate(22deg);
display: none;
}

.animated_box2:hover::before{

display:block;
background-color: #A51FF6;
transform: rotate(22deg);
animation: 2s linear infinite animateborder2;

}

.animated_box2::after{
Expand All @@ -1147,11 +1156,13 @@
}

@keyframes animateborder2 {
from{
from{
transform: rotate(0deg);
filter: hue-rotate(350deg);
}
to{
transform: rotate(360deg);

}

}

0 comments on commit 1e28e7c

Please sign in to comment.