Skip to content

Commit

Permalink
Merge pull request #9 from maharshi-gor/feature/team
Browse files Browse the repository at this point in the history
teams incorporated 76e9803
  • Loading branch information
github-actions[bot] committed Sep 22, 2023
1 parent 2d03643 commit 036e2c7
Show file tree
Hide file tree
Showing 62 changed files with 12,008 additions and 10,033 deletions.
2 changes: 1 addition & 1 deletion .buildinfo
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
2 changes: 1 addition & 1 deletion _static/css/home/carousel.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
top: 40px;
left: 0;
background-color: var(--gst-color-primary);
box-shadow: var(--pst-shadow);
box-shadow: var(--gst-shadow);
}

.carousel-caption::after {
Expand Down
2 changes: 1 addition & 1 deletion _static/css/home/cite.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
justify-content: center;
align-items: center;

box-shadow: var(--pst-shadow);
box-shadow: var(--gst-shadow);
}


Expand Down
2 changes: 1 addition & 1 deletion _static/css/home/explore.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

.explore-tile:hover,
.explore-tile:hover .explore-tile-icon {
box-shadow: var(--pst-shadow);
box-shadow: var(--gst-shadow);
}

.explore-tile-icon {
Expand Down
9 changes: 4 additions & 5 deletions _static/styles/components/navbar.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Customizing the navbar dropdown */
.bd-header .navbar-nav .dropdown .dropdown-menu {
box-shadow: var(--pst-shadow);
box-shadow: var(--gst-shadow);
border: 0;
animation: 0.1s slideDown;
min-width: 10rem;
Expand All @@ -26,17 +26,16 @@ ol li>p:first-child, ul li>p:first-child {

.nav-section-title.nav-link,
.bd-sidebar-primary .nav-section-title.nav-link {
color: var(--pst-color-text-muted);
color: var(--gst-color-section-heading);
font-weight: bold;
}

.nav-section-title:not(:first-of-type) {
border-top: 1px solid var(--gst-color-border);
}

.nav-link.nav-external:after {
transform: rotate(-45deg);
color: var(--pst-color-shadow);
.nav-link i.external-icon {
transform: rotate(45deg);
}

.dropdown-toggle:after {
Expand Down
111 changes: 111 additions & 0 deletions _static/styles/components/team.css
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;
}
}
1 change: 1 addition & 0 deletions _static/styles/grg-sphinx-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
@import "./components/toctree.css";
@import "./components/navbar.css";
@import "./components/footer.css";
@import "./components/team.css";
@import url("https://cdn.jsdelivr.net/gh/GRG-projects/CDN@latest/util.min.css");
31 changes: 24 additions & 7 deletions _static/styles/variables.css
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;
}
Loading

0 comments on commit 036e2c7

Please sign in to comment.