Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added heading #9

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@
<div class="image">
<img src="img/pngegg.png" alt="Reload" width="130" />
</div>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h3 class="animate-charcter"> SenpaiType</h3>
</div>
</div>
</div>

<div class="limits-box">
<div class="limit">
Expand Down
32 changes: 30 additions & 2 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -177,5 +177,33 @@ textarea {
animation-duration: 1s;
animation-direction: alternate;
}


/* Heading */
.animate-charcter
{
text-transform: uppercase;
background-image: linear-gradient(
-225deg,
#231557 0%,
#44107a 29%,
#ff1361 67%,
#fff800 100%
);
background-size: auto auto;
background-clip: border-box;
background-size: 200% auto;
color: #fff;
background-clip: text;
text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textclip 2s linear infinite;
display: inline-block;
font-size: 100px;
}

@keyframes textclip {
to {
background-position: 200% center;
}
}