Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
Subhajit-2023-44 committed Nov 8, 2024
1 parent 3bfa9f9 commit 6fa137e
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 5 deletions.
10 changes: 5 additions & 5 deletions templates/contributors.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
font-size: 3em;
margin-bottom: 20px;
padding: 10px;
color: #fffdff;
text-shadow: 1px 1px 2px rgb(42, 15, 217), 0 0 1em rgba(13, 153, 168, 0.617),
0 0 0.2em rgba(114, 125, 231, 0.623);
color: #2e06fb;
text-shadow: 1px 1px 2px rgb(60, 0, 255), 0 0 1em rgba(0, 213, 255, 0.617), 0 0 0.2em rgba(0, 234, 255, 0.623);
}
/* border-radius: 20px; */
/* background-color: rgba(209, 209, 255, 0.8); */
}


.theme-switch::before {
content: "";
Expand Down Expand Up @@ -435,7 +435,7 @@
}

body {
background-color: #0895fa;
background-color: #2193b0;
overflow-x: hidden;
margin: 0;

Expand Down
102 changes: 102 additions & 0 deletions templates/contributors.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,109 @@
</style>
</head>



<style>


/* Stats Section */
.contributor-stats {

max-width: 1400px;
margin: 0 auto;
padding: 3rem 0;
text-align: center;
background-color: #2193b0;
margin-top: -20px;

}

.contributor-stats h2 {

font-size: 3rem;
margin-bottom: 2rem;
color: #2e06fb;
text-shadow: 1px 1px 2px rgb(60, 0, 255), 0 0 1em rgba(0, 213, 255, 0.617), 0 0 0.2em rgba(0, 234, 255, 0.623);

}

.contributor-stats-grid {

display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;

}

.contributor-stat-card {

border-radius: 10px;
padding: 1.5rem;
text-align: center;
background-color: #7cb9ff;
border: 1px solid #2486;
border-radius: 8px;
box-shadow: 0 0px 8px rgba(0, 0, 0, 1);

}

.contributor-stat-card .contributor-icon {

font-size: 2rem;
margin-bottom: 1rem;

}

.contributor-stat-card h3 {

font-size: 2rem;
margin-bottom: 0.5rem;

}

.contributor-stat-card p {

color: #1c0804;

}

</style>
</head>

<section class="contributor-stats">
<h2>Project Statistics</h2>
<div class="contributor-stats-grid" id="statsGrid">
<div class="contributor-stat-card">
<div class="contributor-icon"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg></div>
<h3>23</h3>
<p>Contributors</p>
</div>

<div class="contributor-stat-card">
<div class="contributor-icon"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="4"></circle><line x1="1.05" y1="12" x2="7" y2="12"></line><line x1="17.01" y1="12" x2="22.96" y2="12"></line></svg></div>
<h3>90</h3>
<p>Total Contributions</p>
</div>

<div class="contributor-stat-card">
<div class="contributor-icon"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg></div>
<h3>9</h3>
<p>GitHub Stars</p>
</div>

<div class="contributor-stat-card">
<div class="contributor-icon"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="6" y1="3" x2="6" y2="15"></line><circle cx="18" cy="6" r="3"></circle><circle cx="6" y="18" r="3"></circle><path d="M18 9a9 9 0 0 1-9 9"></path></svg></div>
<h3>28</h3>
<p>Forks</p>
</div>

</div>

</section>

<body>


<a href="index.html" class="homeBtn">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-home" viewBox="0 0 25 24">
<path d="M3 9L12 2l9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9z"/>
Expand Down

0 comments on commit 6fa137e

Please sign in to comment.