Skip to content

Commit 9a0a80d

Browse files
Added Activities Bar
1 parent a8a42a9 commit 9a0a80d

File tree

15 files changed

+144
-615
lines changed

15 files changed

+144
-615
lines changed

‎.gitignore

Whitespace-only changes.
File renamed without changes.

‎css/grid.min.css

Lines changed: 1 addition & 600 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎css/style.css

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎css/style.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎css/style.scss

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,25 @@ a {
244244
}
245245
}
246246

247+
.activities {
248+
margin-top: 100px;
249+
text-align: center;
250+
251+
codersrank-activity {
252+
--svg-width: 80%;
253+
--bg-color-0: #EBEDF0;
254+
--bg-color-1: #80F7A5;
255+
--bg-color-2: #00D55E;
256+
--bg-color-3: #00B049;
257+
--bg-color-4: #007836;
258+
--border-color-0: rgb(27, 31, 35, 0.06);
259+
--border-color-1: rgb(27, 31, 35, 0.06);
260+
--border-color-2: rgb(27, 31, 35, 0.06);
261+
--border-color-3: rgb(27, 31, 35, 0.06);
262+
--border-color-4: rgb(27, 31, 35, 0.06);
263+
}
264+
}
265+
247266
.contact {
248267
margin-top: 100px;
249268
padding-bottom: 100px;
@@ -462,6 +481,13 @@ a {
462481
}
463482
}
464483

484+
.activities {
485+
486+
codersrank-activity {
487+
--svg-width: 100%;
488+
}
489+
}
490+
465491
.contact {
466492
img {
467493
width: 100%;

‎img/about/s1.png

-3.55 KB
Binary file not shown.

‎img/about/s2.png

-5.08 KB
Binary file not shown.

‎img/about/s3.png

-3.94 KB
Binary file not shown.

‎img/about/s4.png

-4.43 KB
Binary file not shown.

‎index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,19 @@ <h2>My Work</h2>
270270
</div>
271271
</section>
272272
<!-- My Work Ends -->
273+
<!-- Activities Start -->
274+
<div class="container">
275+
<div class="row activities">
276+
<div class="col-12">
277+
<h2>Activities Chart </h2>
278+
</div>
279+
<div class="col-12">
280+
<codersrank-activity username="programmergaurav" branding=false labels tooltip weeks>
281+
</codersrank-activity>
282+
</div>
283+
</div>
284+
</div>
285+
<!-- Activities Ends -->
273286
<!-- My Contact Starts -->
274287
<section class="bg">
275288
<div class="container contact" id="contact">
@@ -550,6 +563,7 @@ <h3>Let's Chat</h3>
550563
<script src="js/wow.min.js"></script>
551564
<script src="js/siema.min.js"></script>
552565
<script src="js/typed.min.js"></script>
566+
<script src="js/codersrank-activity.min.js"></script>
553567
<script src="js/script.js"></script>
554568
</body>
555569

‎js/codersrank-activity.min.js

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎js/script.min.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎js/typed.min.js

Lines changed: 30 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎js/wow.min.js

Lines changed: 20 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
close