Skip to content
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
22 changes: 10 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,7 @@
<a
class="active"
aria-current="page"
href="#top"
>Home</a
>
href="#top">Home</a>
</li>
<li class="nav-item">
<a href="../CodeClip/pages/challenges.html">Challenges</a>
Expand Down Expand Up @@ -211,19 +209,19 @@ <h1>
<div class="card-TopContainer">
<h5 class="card-Header">Frontend Challenges</h5>
<p class="card-Level">EASY</p>
</div>
</div>

<p class="card-Participate">
<p class="card-Participate">
<i class="fa-solid fa-people-group"></i> 135 coders joined
</p>
<p class="card-Text">
</p>
<p class="card-Text">
Build real UI components using HTML, CSS, and JavaScript.
These tasks help you improve your layout, styling,
responsiveness, and interactivity,no frameworks, just clean
frontend skills.
</p>
</p>

<div class="card-CTAButton">
<div class="card-CTAButton">
<!-- === Create webpage of frontend challenge and add link here === -->
<a href="frontendChallenges.html" class="card-Btn">Join Now</a>
</div>
Expand All @@ -238,12 +236,12 @@ <h5 class="card-Header">Frontend Challenges</h5>
<div class="card-TopContainer">
<h5 class="card-Header">JavaScript Logics</h5>
<p class="card-Level medium-Col">MEDIUM</p>
</div>
</div>

<p class="card-Participate">
<i class="fa-solid fa-people-group"></i> 189 coders joined
</p>
<p class="card-Text">
</p>
<p class="card-Text">
Master the core of JavaScript by solving logic-based problems
that boost your thinking and problem-solving skills. Perfect
for beginners and intermediates.
Expand Down
12 changes: 8 additions & 4 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ body {
display: flex;
gap: 2.5rem;
list-style: none;
transition: all 0.3s ease;
transition: all 0.2s ease-in-out;
}

.nav__link {
Expand All @@ -153,13 +153,15 @@ body {
font-size: 1.1rem;
font-weight: 500;
position: relative;
transition: color 0.3s ease;
transition: color 0.3s ease-in-out;
}

.nav__link:hover,
.nav__link:focus,
.nav__link.active {
color: #2563eb;
transition: width 0.3s ease-in-out;

}

.nav__link::after {
Expand All @@ -168,7 +170,7 @@ body {
width: 0;
height: 2px;
background: #2563eb;
transition: width 0.3s ease;
transition: width 0.3s ease-in-out;
position: absolute;
bottom: -4px;
left: 0;
Expand All @@ -178,6 +180,7 @@ body {
.nav__link:focus::after,
.nav__link.active::after {
width: 100%;
transition: width 0.3s ease-in-out;
}

.header__toggle {
Expand All @@ -187,6 +190,7 @@ body {
width: 40px;
height: 40px;
background: none;
transition: width 0.5s ease-in-out;
border: none;
cursor: pointer;
}
Expand All @@ -196,7 +200,7 @@ body {
height: 4px;
background: #2563eb;
border-radius: 3px;
transition: all 0.3s ease;
transition: all 0.3s ease-in-out;
}

/* Hero Section */
Expand Down