diff --git a/.buildinfo b/.buildinfo index 3b72ee7e..d7244b77 100644 --- a/.buildinfo +++ b/.buildinfo @@ -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 diff --git a/_static/css/home/carousel.css b/_static/css/home/carousel.css index 3f96f197..f281cd29 100644 --- a/_static/css/home/carousel.css +++ b/_static/css/home/carousel.css @@ -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 { diff --git a/_static/css/home/cite.css b/_static/css/home/cite.css index 0fdf279e..db1bde76 100644 --- a/_static/css/home/cite.css +++ b/_static/css/home/cite.css @@ -23,7 +23,7 @@ justify-content: center; align-items: center; - box-shadow: var(--pst-shadow); + box-shadow: var(--gst-shadow); } diff --git a/_static/css/home/explore.css b/_static/css/home/explore.css index 0f07751f..5272d6bb 100644 --- a/_static/css/home/explore.css +++ b/_static/css/home/explore.css @@ -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 { diff --git a/_static/styles/components/navbar.css b/_static/styles/components/navbar.css index d37b6d21..e6909516 100644 --- a/_static/styles/components/navbar.css +++ b/_static/styles/components/navbar.css @@ -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; @@ -26,7 +26,7 @@ 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; } @@ -34,9 +34,8 @@ ol li>p:first-child, ul li>p:first-child { 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 { diff --git a/_static/styles/components/team.css b/_static/styles/components/team.css new file mode 100644 index 00000000..69ded61c --- /dev/null +++ b/_static/styles/components/team.css @@ -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; + } +} \ No newline at end of file diff --git a/_static/styles/grg-sphinx-theme.css b/_static/styles/grg-sphinx-theme.css index 831c67e9..91abaf08 100644 --- a/_static/styles/grg-sphinx-theme.css +++ b/_static/styles/grg-sphinx-theme.css @@ -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"); \ No newline at end of file diff --git a/_static/styles/variables.css b/_static/styles/variables.css index 2d5437db..2e826e5b 100644 --- a/_static/styles/variables.css +++ b/_static/styles/variables.css @@ -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; } diff --git a/blog.html b/blog.html index d7dacba2..a3af8f88 100644 --- a/blog.html +++ b/blog.html @@ -152,41 +152,41 @@ @@ -203,11 +203,11 @@

- + - + - + - + - + - + @@ -260,23 +260,23 @@

- + - + - + @@ -306,37 +306,37 @@ @@ -562,23 +562,23 @@

- + - + - + @@ -608,37 +608,37 @@ @@ -260,23 +260,23 @@

- + - + - + @@ -306,37 +306,37 @@ @@ -562,23 +562,23 @@

- + - + - + @@ -608,37 +608,37 @@ @@ -253,23 +253,23 @@

- + - + - + @@ -299,37 +299,37 @@ @@ -555,23 +555,23 @@

- + - + - + @@ -601,37 +601,37 @@ @@ -253,23 +253,23 @@

- + - + - + @@ -299,37 +299,37 @@ @@ -555,23 +555,23 @@

- + - + - + @@ -601,37 +601,37 @@ @@ -260,23 +260,23 @@

- + - + - + @@ -306,37 +306,37 @@ @@ -562,23 +562,23 @@

- + - + - + @@ -608,37 +608,37 @@ @@ -260,23 +260,23 @@

- + - + - + @@ -306,37 +306,37 @@ @@ -562,23 +562,23 @@

- + - + - + @@ -608,37 +608,37 @@ @@ -253,23 +253,23 @@

- + - + - + @@ -299,37 +299,37 @@ @@ -555,23 +555,23 @@

- + - + - + @@ -601,37 +601,37 @@ @@ -260,23 +260,23 @@

- + - + - + @@ -306,37 +306,37 @@ @@ -562,23 +562,23 @@

- + - + - + @@ -608,37 +608,37 @@ @@ -253,23 +253,23 @@

- + - + - + @@ -299,37 +299,37 @@ @@ -555,23 +555,23 @@

- + - + - + @@ -601,37 +601,37 @@ @@ -253,23 +253,23 @@

- + - + - + @@ -299,37 +299,37 @@ @@ -555,23 +555,23 @@

- + - + - + @@ -601,37 +601,37 @@ @@ -260,23 +260,23 @@

- + - + - + @@ -306,37 +306,37 @@ @@ -562,23 +562,23 @@

- + - + - + @@ -608,37 +608,37 @@ @@ -256,23 +256,23 @@

- + - + - + @@ -302,37 +302,37 @@ @@ -558,23 +558,23 @@

- + - + - + @@ -604,37 +604,37 @@ @@ -256,23 +256,23 @@

- + - + - + @@ -302,37 +302,37 @@ @@ -558,23 +558,23 @@

- + - + - + @@ -604,37 +604,37 @@ @@ -257,23 +257,23 @@

- + - + - + @@ -303,37 +303,37 @@ @@ -563,23 +563,23 @@

- + - + - + @@ -609,37 +609,37 @@ @@ -249,23 +249,23 @@

- + - + - + @@ -295,37 +295,37 @@ @@ -551,23 +551,23 @@

- + - + - + @@ -597,37 +597,37 @@ @@ -255,23 +255,23 @@

- + - + - + @@ -301,37 +301,37 @@ @@ -561,23 +561,23 @@

- + - + - + @@ -607,37 +607,37 @@ @@ -255,23 +255,23 @@

- + - + - + @@ -301,37 +301,37 @@ @@ -557,23 +557,23 @@

- + - + - + @@ -603,37 +603,37 @@ @@ -250,23 +250,23 @@

- + - + - + @@ -296,37 +296,37 @@ @@ -552,23 +552,23 @@

- + - + - + @@ -598,37 +598,37 @@ @@ -256,23 +256,23 @@

- + - + - + @@ -302,37 +302,37 @@ @@ -562,23 +562,23 @@

- + - + - + @@ -608,37 +608,37 @@ @@ -256,23 +256,23 @@

- + - + - + @@ -302,37 +302,37 @@ @@ -558,23 +558,23 @@

- + - + - + @@ -604,37 +604,37 @@ @@ -256,23 +256,23 @@

- + - + - + @@ -302,37 +302,37 @@ @@ -558,23 +558,23 @@

- + - + - + @@ -604,37 +604,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -556,23 +556,23 @@

- + - + - + @@ -602,37 +602,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -255,23 +255,23 @@

- + - + - + @@ -301,37 +301,37 @@ @@ -561,23 +561,23 @@

- + - + - + @@ -607,37 +607,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -560,23 +560,23 @@

- + - + - + @@ -606,37 +606,37 @@ @@ -255,23 +255,23 @@

- + - + - + @@ -301,37 +301,37 @@ @@ -557,23 +557,23 @@

- + - + - + @@ -603,37 +603,37 @@ @@ -255,23 +255,23 @@

- + - + - + @@ -301,37 +301,37 @@ @@ -561,23 +561,23 @@

- + - + - + @@ -607,37 +607,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -556,23 +556,23 @@

- + - + - + @@ -602,37 +602,37 @@ @@ -255,23 +255,23 @@

- + - + - + @@ -301,37 +301,37 @@ @@ -561,23 +561,23 @@

- + - + - + @@ -607,37 +607,37 @@ @@ -255,23 +255,23 @@

- + - + - + @@ -301,37 +301,37 @@ @@ -557,23 +557,23 @@

- + - + - + @@ -603,37 +603,37 @@ @@ -255,23 +255,23 @@

- + - + - + @@ -301,37 +301,37 @@ @@ -557,23 +557,23 @@

- + - + - + @@ -603,37 +603,37 @@ @@ -254,23 +254,23 @@

- + - + - + @@ -300,37 +300,37 @@ @@ -556,23 +556,23 @@

- + - + - + @@ -602,37 +602,37 @@ @@ -255,23 +255,23 @@

- + - + - + @@ -301,37 +301,37 @@ @@ -561,23 +561,23 @@

- + - + - + @@ -607,37 +607,37 @@ @@ -255,23 +255,23 @@

- + - + - + @@ -301,37 +301,37 @@ @@ -561,23 +561,23 @@

- + - + - + @@ -607,37 +607,37 @@