Skip to content
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
14 changes: 7 additions & 7 deletions Landing/landing.css
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ header {
color: var(--primary-color);
}

.cta-button {
.call-to-action-button {
background-color: var(--primary-color);
color: var(--white);
padding: 10px 20px;
Expand All @@ -77,7 +77,7 @@ header {
transition: var(--transition);
}

.cta-button:hover {
.call-to-action-button:hover {
background-color: #3a5199;
transform: translateY(-2px);
}
Expand Down Expand Up @@ -224,32 +224,32 @@ header {
}

/* Call to Action */
.cta {
.call-to-action{
background-color: var(--primary-color);
color: var(--white);
text-align: center;
padding: 60px 5%;
}

.cta h2 {
.call-to-action h2 {
font-size: 2rem;
margin-bottom: 20px;
}

.cta p {
.call-to-action p {
margin-bottom: 30px;
font-size: 1.1rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.cta .primary-button {
.call-to-action .primary-button {
background-color: var(--secondary-color);
color: var(--dark-color);
}

.cta .primary-button:hover {
.call-to-action .primary-button:hover {
background-color: #e5a82a;
}

Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<a href="/flashcards/flashcards.html" class="cta-button">Start Learning</a>
<a href="/flashcards/flashcards.html" class="call-to-action-button">Start Learning</a>
</header>

<!-- Hero Section -->
Expand Down Expand Up @@ -73,7 +73,7 @@ <h2>About Kinyarwanda Flashcards</h2>
</section>

<!-- Call to Action -->
<section class="cta">
<section class="call-to-action">
<h2>Ready to Start Learning Kinyarwanda?</h2>
<p>Join thousands of learners discovering the beauty of this East African language.</p>
<a href="/flashcards/flashcards.html" class="primary-button">Start Learning for Free</a>
Expand Down