Skip to content

Commit

Permalink
Contribute Page BUtton Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
4F24L committed Oct 18, 2024
1 parent 1589370 commit a43f639
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions projects/Contributor_1/index1.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
background-image: linear-gradient(120deg, #fbccff, #d8f9ff, #d4c6ff);
}
body.dark-mode {
background-color: #333;
color: #ffffff;
}
background-color: #333;
color: #ffffff;
}
.top-btn {
display: none;
width: 50px;
Expand Down Expand Up @@ -74,13 +74,28 @@
border-radius: 5px;
outline: none;
margin: 5px 10px;
border: 1px solid rgb(146, 110, 110);
/* border: 1px solid rgb(146, 110, 110); */
background: none;
}

.pagination-btns button.btn, .pagination-btns button.btn i.bi {
font-size: 2rem;
}

.pagination-btns button.btn i.bi{
cursor: pointer;
}


.pagination-btns button{
border: none;
outline: none;
}

.pagination-btns .scale:active {
transform: scale(1.2);
transition: transform 0.1s ease-in-out;
}

#progress-container {
position: fixed ;
Expand Down Expand Up @@ -124,9 +139,9 @@
<h1 class="title">Our Contributors</h1>
<div id="contributors" class="contributors-grid"></div>
<div class="pagination-btns">
<button class="btn" id="prevBtn"> <i class="bi bi-arrow-left-circle"></i> </button>
<button class="btn scale" id="prevBtn"> <i class="bi bi-arrow-left-circle"></i> </button>
<button class="btn" id="pageNoBox">1</button>
<button class="btn" id="nextBtn"> <i class="bi bi-arrow-right-circle"></i> </button>
<button class="btn scale" id="nextBtn"> <i class="bi bi-arrow-right-circle"></i> </button>
</div>
</div>
<button class="top-btn" id="goToTopBtn" onclick="goToTop()">
Expand Down

0 comments on commit a43f639

Please sign in to comment.