Skip to content

Commit

Permalink
Merge pull request #286 from Naman-pokhriyal/master
Browse files Browse the repository at this point in the history
stats,transitions,heading enhancement
  • Loading branch information
fineanmol authored Oct 1, 2021
2 parents 76501d8 + 9330866 commit ed5dc70
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Contributors.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@
<div class="heart"></div>
<div class="wrapper">
<div>
<h1 class="animated rubberBand delay-4s">Contributors</h1>
<p class="animated rubberBand delay-4s">Add yourself to the list if you contribute.</p>
<h1 class="heading animated rubberBand delay-4s">Contributors</h1>
<p class="moto animated rubberBand delay-4s">Add yourself to the list if you contribute.</p>
</div>
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox" />
Expand All @@ -118,6 +118,7 @@ <h1 class="animated rubberBand delay-4s">Contributors</h1>
<a class="box-item" href="https://github.com/ritesh2905"><span>Ritesh Kumar</span></a>
<a class="box-item" href="https://github.com/xevenheaven"><span>Elysia Ong</span></a>
<a class="box-item" href="https://github.com/facundof13"><span>Facundo</span></a>
<a class="box-item" href="https://github.com/naman-pokhriyal"><span>Naman Pokhriyal</span></a>
<a class="box-item" href="https://github.com/Aashik96"><span>Aashik Ahamed</span></a>
<a class="box-item" href="https://github.com/zonex909"><span>Rupna Maitra</span></a>
<a class="box-item" href="https://github.com/skully-coder"><span>Abhinav Agarwal</span></a>
Expand Down
35 changes: 34 additions & 1 deletion css/contributors.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
box-sizing: inherit;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transition: 0.05s;
}
::selection {
background-color: #4835f7;
Expand Down Expand Up @@ -83,9 +84,30 @@ a:hover {
text-decoration: none;
}

.heading {
text-transform: uppercase;
font-weight: 700;
cursor: default;
}

.moto {
font-size: 22px;
cursor: default;
}
.heading:hover {
color: #fe0c43;
transition: 1s;
}
.moto:hover {
text-decoration: underline;
text-decoration-color: var(--gray);
transition: 1s linear;
}

.content {
margin-top: 80px;
}

.box {
position: relative;
display: flex;
Expand Down Expand Up @@ -177,7 +199,7 @@ a:hover {

.box-item:hover::before {
left: calc(0% - 10px);
transition: left 1s cubic-bezier(0.86, 0, 0.07, 1);
transition: left 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}

.box-item img {
Expand Down Expand Up @@ -262,3 +284,14 @@ input:checked + .slider:before {
.slider.round:before {
border-radius: 50%;
}
#stats {
background-color: #eeeeee;
padding: 20px;
border-radius: 20px;
display: flex;
justify-content: center;
}

#stats a {
padding: 0 5px;
}

0 comments on commit ed5dc70

Please sign in to comment.