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

Made the Todo.html page dynamic for heading by adding Animation #309

Merged
merged 4 commits into from
Oct 26, 2024
Merged
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
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 18 additions & 6 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ why-need-link {
border-radius: 5px;
transition: background-color 0.3s ease;
}
. .container {
prishamehta01 marked this conversation as resolved.
Show resolved Hide resolved
.container {
width: 100%;
max-width: 1000px;
padding: 20px;
Expand All @@ -33,12 +33,24 @@ why-need-link {
}

.subtitle {
text-align: center;
color: #f6ac62;
font-family: 'Londrina Outline', cursive;
font-size: 5rem;
padding: 8px 16px;
text-shadow: 0 3px 10px rgba(10, 10, 10, 40);
font-size: 4rem;
color: #ff6f61;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
text-align: center;
margin: 20px 0;
animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

h1 {
Expand Down
Loading