-
Notifications
You must be signed in to change notification settings - Fork 7
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 #9 from maharshi-gor/feature/team
teams incorporated 76e9803
- Loading branch information
1 parent
2d03643
commit 036e2c7
Showing
62 changed files
with
12,008 additions
and
10,033 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 70057c64ae68ba8c69c2c1f3e09656d3 | ||
config: a036c124ab82d6735860087ee8c4c0eb | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
.team-heading { | ||
color: var(--gst-color-section-heading); | ||
text-transform: capitalize; | ||
font-weight: 600; | ||
} | ||
|
||
.team-stats, | ||
.team-members { | ||
gap: 10px 20px; | ||
} | ||
|
||
.team-stat { | ||
background: var(--gst-color-bg); | ||
box-shadow: var(--gst-shadow); | ||
font-weight: 800; | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
border-radius: 12px; | ||
display: flex; | ||
align-items: center; | ||
position: relative; | ||
overflow: hidden; | ||
} | ||
|
||
.team-stat-icon { | ||
height: 46px; | ||
width: 46px; | ||
border-radius: 50%; | ||
background-color: var(--gst-color-bg-primary); | ||
box-shadow: var(--gst-shadow); | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
font-size: 22px; | ||
color: var(--gst-color-primary); | ||
} | ||
|
||
.team-stat-value { | ||
font-size: 2em; | ||
font-family: Arial, Helvetica, sans-serif; | ||
font-weight: bold; | ||
color: var(--bs-success); | ||
transition: all 0.2s ease; | ||
} | ||
|
||
.team-stat-background { | ||
position: absolute; | ||
font-size: 8em; | ||
top: 7px; | ||
right: -45px; | ||
color: var(--gst-color-bg-primary); | ||
transition: all 0.2s ease-in-out; | ||
opacity: 0.5; | ||
} | ||
|
||
.team-stat:hover .team-stat-background { | ||
color: var(--gst-color-primary); | ||
} | ||
|
||
.team-member { | ||
text-align: center; | ||
border-radius: 8px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
.team-member-img { | ||
border-radius: 50%; | ||
background-color: var(--gst-color-bg-gray); | ||
width: 80%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.team-member-img img { | ||
border-radius: 50%; | ||
width: 100%; | ||
padding: 10%; | ||
box-shadow: var(--gst-shadow); | ||
box-sizing: border-box; | ||
transition: padding 0.2s ease-in-out; | ||
} | ||
|
||
.team-member-img:hover img { | ||
padding: 0; | ||
} | ||
|
||
|
||
.team-member-login { | ||
color: var(--gst-color-primary); | ||
font-weight: 500; | ||
font-size: 18px; | ||
margin-bottom: 0; | ||
} | ||
|
||
.team-member-contribution { | ||
color: var(--gst-color-secondary); | ||
margin-bottom: 0; | ||
} | ||
|
||
@media only screen and (max-width: 768px) { | ||
.team-member-login { | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
overflow: hidden; | ||
max-width: 130px; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,51 @@ | ||
html { | ||
--pst-icon-external-link: "\f178"; | ||
--pst-shadow: 0 12px 32px rgba(0, 0, 0, .1), 0 2px 6px rgba(0, 0, 0, .08); | ||
--gst-color-primary-hover: #E37F22; | ||
--gst-color-primary-border: #CA711E; | ||
--gst-shadow: 0 12px 32px rgba(0, 0, 0, .1), 0 2px 6px rgba(0, 0, 0, .08); | ||
} | ||
|
||
html[data-theme="light"] { | ||
--gst-color-primary: #FD8D25; | ||
--gst-color-secondary: #1B8BF4; | ||
--gst-color-primary-hover: #E37F22; | ||
--gst-color-primary-border: #CA711E; | ||
|
||
/* Overriding PyData configuration */ | ||
--pst-color-primary: var(--gst-color-primary); | ||
--pst-color-secondary: var(--gst-color-secondary); | ||
|
||
--pst-color-link-hover: var(--gst-color-secondary); | ||
|
||
--gst-color-border: rgb(229,229,229); | ||
--gst-color-light-border: var(--gst-color-border); | ||
|
||
--gst-color-heading: var(--bs-gray-700); | ||
--gst-color-section-heading: var(--pst-color-text-base); | ||
|
||
--gst-color-bg: var(--bs-white); | ||
--gst-color-bg-gray: var(--bs-gray-100); | ||
--gst-color-light-border: var(--gst-color-border); | ||
--gst-color-section-heading: var(--pst-color-text-base); | ||
--gst-color-bg-primary: #FEE8D3; | ||
|
||
} | ||
|
||
html[data-theme="dark"] { | ||
--gst-color-primary: #FD8D25; | ||
--gst-color-secondary: #1B8BF4; | ||
--gst-color-primary-hover: #E37F22; | ||
--gst-color-primary-border: #CA711E; | ||
|
||
/* Overriding PyData configuration */ | ||
--pst-color-primary: var(--gst-color-primary); | ||
--pst-color-secondary: var(--gst-color-secondary); | ||
|
||
--pst-color-link-hover: var(--gst-color-secondary); | ||
|
||
--gst-color-border: rgb(229,229,229); | ||
--gst-color-light-border: transparent; | ||
|
||
--gst-color-heading: var(--bs-gray-300); | ||
--gst-color-section-heading: var(--gst-color-primary); | ||
|
||
--gst-color-bg: var(--bs-gray-900); | ||
--gst-color-bg-gray: var(--bs-gray-900); | ||
--gst-color-light-border: transparent; | ||
--gst-color-section-heading: var(--gst-color-primary) | ||
--gst-color-bg-primary: #FEE8D3; | ||
} |
Oops, something went wrong.