-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from Tusharbecoding/main
added github contribution card
- Loading branch information
Showing
21 changed files
with
19,392 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
106 changes: 106 additions & 0 deletions
106
acm-member-dashboard/src/components/TwoCard/TwoCard.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
.CompactCard { | ||
display: flex; | ||
flex: 1; | ||
height: 7rem !important; | ||
border-radius: 0.7rem; | ||
color: #7FA8E5; | ||
padding: 1rem; | ||
position: relative; | ||
cursor: pointer; | ||
} | ||
.CompactCard:hover { | ||
box-shadow: none !important; | ||
} | ||
|
||
/* radial bar */ | ||
.radialBar { | ||
flex: 1 1; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: flex-end; | ||
gap: 1rem; | ||
} | ||
.CircularProgressbar { | ||
width: 4rem !important; | ||
overflow: visible; | ||
} | ||
.CircularProgressbar-path { | ||
stroke: #7FA8E5 !important; | ||
stroke-width: 12px !important; | ||
filter: none; | ||
} | ||
.CircularProgressbar-trail { | ||
display: none; | ||
} | ||
.CircularProgressbar-text { | ||
fill: #7FA8E5 !important; | ||
} | ||
|
||
.radialBar > span { | ||
font-size: 17px; | ||
font-weight: bold; | ||
} | ||
|
||
/* sideDetail*/ | ||
.detail { | ||
flex: 1; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: flex-end; | ||
justify-content: space-between; | ||
} | ||
|
||
.detail > span:nth-child(2) { | ||
font-size: 22px; | ||
font-weight: bold; | ||
} | ||
.detail > span:nth-child(3) { | ||
font-size: 12px; | ||
} | ||
|
||
/* ExpandedCard */ | ||
.ExpandedCard { | ||
position: absolute; | ||
width: 60%; | ||
height: 70vh; | ||
z-index: 9; | ||
left: 13rem; | ||
border-radius: 1rem; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: space-around; | ||
padding: 1rem; | ||
} | ||
.ExpandedCard > span:nth-of-type(1) { | ||
color: white; | ||
font-size: 26px; | ||
font-weight: bold; | ||
text-shadow: 0px 0px 15px white; | ||
} | ||
.ExpandedCard > span:nth-of-type(2) { | ||
color: rgb(236, 236, 236); | ||
font-size: 15px; | ||
} | ||
|
||
.chartContainer { | ||
width: 70%; | ||
} | ||
|
||
@media screen and (max-width: 1200px) { | ||
.ExpandedCard { | ||
top: 2rem; | ||
height: 45vh; | ||
left: 6rem; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 768px) { | ||
.ExpandedCard { | ||
top: 8rem; | ||
height: 50%; | ||
left: 25px; | ||
width: 80%; | ||
} | ||
} | ||
|
Oops, something went wrong.