-
-
Notifications
You must be signed in to change notification settings - Fork 260
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
Add animtion card on idex page and and sparde borderand transition o… #827
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -48,14 +48,52 @@ | |||||||||||||||||||||||||
transition: transform 0.3s, box-shadow 0.3s, z-index 0.3s; | ||||||||||||||||||||||||||
position: relative; | ||||||||||||||||||||||||||
z-index: 1; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
.features-card:hover { | ||||||||||||||||||||||||||
transform: translateY(-10px) scale(1.1); | ||||||||||||||||||||||||||
box-shadow: 0 4px 8px #0073b1; | ||||||||||||||||||||||||||
z-index: 3; | ||||||||||||||||||||||||||
animation-name: cardani; | ||||||||||||||||||||||||||
animation-duration: 1s; | ||||||||||||||||||||||||||
animation-delay: 0s; | ||||||||||||||||||||||||||
animation-iteration-count: infinite; | ||||||||||||||||||||||||||
border: 2px solid red; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
Comment on lines
+59
to
+64
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Refine the border animation in The Apply this diff to adjust the border styling: .features-card:hover {
transform: translateY(-10px) scale(1.1);
box-shadow: 0 4px 8px #0073b1;
z-index: 3;
animation-name: cardani;
animation-duration: 1s;
animation-delay: 0s;
animation-iteration-count: infinite;
- border: 2px solid red;
+ border: 2px solid #ff6f61; /* Match starting color of animation */
} 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||
@keyframes cardani { | ||||||||||||||||||||||||||
10%{ | ||||||||||||||||||||||||||
border-color: #ff6f61; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
20%{ | ||||||||||||||||||||||||||
border-color: #de8c3e; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
30%{ | ||||||||||||||||||||||||||
border-color: brown; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
40%{ | ||||||||||||||||||||||||||
border-color: aqua; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
50%{ | ||||||||||||||||||||||||||
border-color: chartreuse; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
60%{ | ||||||||||||||||||||||||||
border-color: burlywood; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
70%{ | ||||||||||||||||||||||||||
border-color: red; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
80%{ | ||||||||||||||||||||||||||
border-color: blue; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
90%{ | ||||||||||||||||||||||||||
border-color: black; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
Comment on lines
+65
to
+95
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Consolidate duplicate animations to avoid redundancy The |
||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
.features-card img { | ||||||||||||||||||||||||||
width: 60px; | ||||||||||||||||||||||||||
height: 60px; | ||||||||||||||||||||||||||
|
@@ -267,7 +305,44 @@ | |||||||||||||||||||||||||
transform: translateY(-10px) scale(1.1); | ||||||||||||||||||||||||||
box-shadow: 0 4px 8px #0073b1; | ||||||||||||||||||||||||||
z-index: 3; | ||||||||||||||||||||||||||
border: 2px solid grey; | ||||||||||||||||||||||||||
animation-name: cardanii; | ||||||||||||||||||||||||||
animation-duration: 2s; | ||||||||||||||||||||||||||
animation-delay:0s; | ||||||||||||||||||||||||||
animation-iteration-count: infinite; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
@keyframes cardanii { | ||||||||||||||||||||||||||
10%{ | ||||||||||||||||||||||||||
border-color: #ff6f61; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
20%{ | ||||||||||||||||||||||||||
border-color: #de8c3e; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
30%{ | ||||||||||||||||||||||||||
border-color: brown; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
40%{ | ||||||||||||||||||||||||||
border-color: aqua; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
50%{ | ||||||||||||||||||||||||||
border-color: chartreuse; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
60%{ | ||||||||||||||||||||||||||
border-color: burlywood; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
70%{ | ||||||||||||||||||||||||||
border-color: red; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
80%{ | ||||||||||||||||||||||||||
border-color: blue; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
90%{ | ||||||||||||||||||||||||||
border-color: black; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
Comment on lines
+308
to
+345
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Remove redundant The Apply this diff to remove the redundant animation: - @keyframes cardanii {
- /* Duplicate animation steps */
- }
|
||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
/* < !-- Features Section --><style>.features { | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
|
@@ -852,6 +927,9 @@ | |||||||||||||||||||||||||
height: 100%; | ||||||||||||||||||||||||||
background-color: #3f10ea; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
#resumec{ | ||||||||||||||||||||||||||
columns: rgb(20, 198, 8); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
Comment on lines
+930
to
+932
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correct the invalid CSS property in The CSS property Apply this diff to fix the property: #resumec {
- columns: rgb(20, 198, 8);
+ color: rgb(20, 198, 8);
} 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
</style> | ||||||||||||||||||||||||||
</head> | ||||||||||||||||||||||||||
|
@@ -884,7 +962,7 @@ | |||||||||||||||||||||||||
<!-- home section starts --> | ||||||||||||||||||||||||||
<section class="home" id="Home"> | ||||||||||||||||||||||||||
<div class="content"> | ||||||||||||||||||||||||||
<h3>Build Your Resume in Seconds from LinkedIn</h3> | ||||||||||||||||||||||||||
<h3 id="resumec">Build Your Resume in Seconds from LinkedIn</h3> | ||||||||||||||||||||||||||
<p>Easily generate a professional resume using your LinkedIn profile. Select a template, enter your LinkedIn URL, | ||||||||||||||||||||||||||
and get a downloadable resume in a few clicks. Save time and create a resume that stands out.</p> | ||||||||||||||||||||||||||
<a href="signup.html" class="btn">Get Started</a> | ||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codebase verification
Add media queries for
.about h1
to ensure responsiveness.Currently, there are no media queries adjusting the font size of
.about h1
, which may cause layout issues on smaller screens. Please consider adding responsive styles to modify the heading size for different screen widths.🔗 Analysis chain
Verify responsiveness and readability of updated text styles.
The font size for
.about h1
has been increased, and italic style has been added to.about p
. While these changes may enhance visual appeal, please consider the following:Consider adding media queries to adjust the heading size for smaller screens if necessary.
Also applies to: 347-347
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 414
Script:
Length of output: 59
Script:
Length of output: 178