diff --git a/.buildinfo b/.buildinfo index c05803c5..7da70b71 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: 7f0696966261c11bdd0c3656aa633dcc +config: 27a2cddcfe9392d43c6522bc11400f22 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/_static/css/common/override.css b/_static/css/common/override.css index e291d0e7..414fd900 100644 --- a/_static/css/common/override.css +++ b/_static/css/common/override.css @@ -3,15 +3,7 @@ This CSS file represents all the style changes to override the pydata-theme and sphinx. */ -h1, h2, h3, h4, h5, h6 { - color: var(--pst-color-text-base); - font-weight: 600; +.navbar-brand.logo { + padding: 1.1rem 1.1rem 1.1rem 0; } -h1 { - font-size: 2.5em; -} - -.bd-sidebar-primary .sidebar-primary-items__end { - margin-top: 0 !important; -} \ No newline at end of file diff --git a/_static/css/common/section-list.css b/_static/css/common/section-list.css deleted file mode 100644 index 48393f8e..00000000 --- a/_static/css/common/section-list.css +++ /dev/null @@ -1,34 +0,0 @@ -.section { - margin-bottom: 64px; -} - -.section .section-sub-topic-list { - display: grid; - grid-template-columns: repeat(3, 1fr); - gap: 1em; -} - -.section .section-sub-topic { - border: 1px solid var(--pst-color-border); - border-radius: 4px; - - padding: 1em; - - text-decoration: none; -} - -.section .section-sub-topic:hover { - border: 1px solid var(--pst-color-secondary); - color: var(--pst-color-secondary); - cursor: pointer; -} - -.section .section-sub-topic span { - font-weight: 600; -} - -@media only screen and (max-width: 767px) { - .section .section-sub-topic-list { - grid-template-columns: repeat(1, 1fr); - } -} \ No newline at end of file diff --git a/_static/css/common/variables.css b/_static/css/common/variables.css index bd8ad0e0..0245be3a 100644 --- a/_static/css/common/variables.css +++ b/_static/css/common/variables.css @@ -1,7 +1,15 @@ html[data-theme="light"] { - --pst-color-primary: #FD8D25; - --pst-color-secondary: #1B8BF4; + --gst-color-primary: #FD8D25; + --gst-color-secondary: #1B8BF4; + --gst-color-bg: var(--bs-white); + --gst-color-bg-gray: var(--bs-gray-100); + --gst-color-light-border: var(--pst-color-border); +} - --pst-color-link-hover: var(--pst-color-secondary); - --pst-color-border: rgb(229,229,229); +html[data-theme="dark"] { + --gst-color-primary: #FD8D25; + --gst-color-secondary: #1B8BF4; + --gst-color-bg: var(--bs-gray-900); + --gst-color-bg-gray: var(--bs-gray-900); + --gst-color-light-border: transparent; } diff --git a/_static/css/dipy.css b/_static/css/dipy.css index c6f758b2..8646f6c9 100644 --- a/_static/css/dipy.css +++ b/_static/css/dipy.css @@ -1,6 +1,12 @@ /* Index CSS file */ /* Do not add any css directly here.... */ +/* util css is no longer required as it is fetched from grg-sphinx-theme */ + +/* Common CSS */ + @import url("./common/variables.css"); -@import url("./common/section-list.css"); @import url("./common/override.css"); + +/* Home CSS */ +@import "./home/index.css"; \ No newline at end of file diff --git a/_static/css/home/carousel.css b/_static/css/home/carousel.css new file mode 100644 index 00000000..f7baeb64 --- /dev/null +++ b/_static/css/home/carousel.css @@ -0,0 +1,67 @@ +.carousel-item { + height: 440px; +} + +.carousel-item img { + /* border: 1px solid var(--pst-color-border); */ + +} + +.carousel-indicators [data-bs-target] { + background-color: var(--gst-color-primary); +} + + +.carousel-caption { + opacity: 0.9; + width: fit-content; + bottom: auto; + top: 40px; + left: 0; + background-color: var(--gst-color-primary); + box-shadow: var(--pst-shadow); +} + +.carousel-caption::after { + position: absolute; + content: ""; + height: 100%; + clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 35% 50%); + background-color: var(--gst-color-primary); + width: 60px; + transform: scaleX(-1); + right: -40px; + top: 0; +} + +.carousel-caption::before { + position: absolute; + left: 0; + content: ""; + width: 20px; + height: 100%; + background-image: linear-gradient(45deg, transparent 50%, var(--gst-color-primary-border) 50%); + background-size: 20px 20px; + background-repeat: no-repeat; + background-position: bottom right; + z-index: -1; +} + + +.carousel-caption h5 { + color: var(--bs-white); + font-size: 24px; + font-weight: 900; + margin: 0; +} + +.carousel-caption a, +.carousel-caption a:visited { + color: var(--bs-white); +} + +@media only screen and (max-width: 768px) { + .carousel-item { + height: 260px; + } +} \ No newline at end of file diff --git a/_static/css/home/cite.css b/_static/css/home/cite.css new file mode 100644 index 00000000..0fdf279e --- /dev/null +++ b/_static/css/home/cite.css @@ -0,0 +1,59 @@ +.cite { + display: grid; + grid-template-columns: 100px 1fr; + gap: 1em; + border: 2px solid var(--gst-color-light-border); + background-color: var(--gst-color-bg); + border-radius: 12px; + width: fit-content; + margin: 0 auto; +} + +.cite-icon-bg { + height: 90px; + width: 90px; + border-radius: 50%; + + background-color: var(--gst-color-primary); + color: var(--bs-white); + font-size: 52px; + margin: 0 auto; + + display: flex; + justify-content: center; + align-items: center; + + box-shadow: var(--pst-shadow); +} + + +.cite-detail { + display: flex; + flex-direction: column; + align-items: start; + justify-content: center; +} + +.cite-detail p { + margin: 0; + margin-bottom: 0; + font-size: 18px; +} + +.cite-link, +.cite-link:visited { + color: var(--gst-color-primary); + text-decoration: underline; + font-weight: 600; +} + +@media only screen and (max-width: 768px) { + .cite { + grid-template-columns: 1fr; + } + + .cite-detail { + flex-direction: column; + align-items: start; + } +} \ No newline at end of file diff --git a/_static/css/home/explore.css b/_static/css/home/explore.css new file mode 100644 index 00000000..1276d86c --- /dev/null +++ b/_static/css/home/explore.css @@ -0,0 +1,44 @@ +.explore { + display: grid; + gap: 3em; +} + +.explore-tile { + border-radius: 12px; + background-color: var(--gst-color-bg-gray); + border: 1px solid var(--pst-color-border); + transition: all 0.2s ease-in-out; +} + +.explore-tile:hover, +.explore-tile:hover .explore-tile-icon { + box-shadow: var(--pst-shadow); +} + +.explore-tile-icon { + background-color: var(--gst-color-primary); + height: 55px; + width: 55px; + border-radius: 12px; + /* TODO This should be removed as the util will be available */ + padding: 12px; + margin-bottom: 24px; + transition: all 0.2s ease-in-out; +} + +.explore-tile-icon img { + filter: invert(1) !important; +} + +.explore-tile-title { + font-weight: 600; + color: var(--gst-color-section-heading); +} + +.explore-tile-know-more, +.explore-tile-know-more:visited { + color: var(--gst-color-primary); + text-transform: uppercase; + font-size: 14px; + font-weight: 600; +} \ No newline at end of file diff --git a/_static/css/home/index.css b/_static/css/home/index.css new file mode 100644 index 00000000..3cb55cf8 --- /dev/null +++ b/_static/css/home/index.css @@ -0,0 +1,31 @@ +@import "./intro.css"; +@import "./explore.css"; +@import "./carousel.css"; +@import "./sponsors.css"; +@import "./cite.css"; + +/* CSS which is common across the home page */ +.dipy-highlight { + color: var(--pst-color-primary); +} + +div.section:nth-child(n+3) { + margin: 72px 0; + padding: 0 20px; +} + +h2.section-title { + padding: 10px 0; + margin: 10px 0; + text-align: center; + font-weight: 900; + font-size: 50px; + color: var(--gst-color-heading); +} + +@media only screen and (max-width: 768px) { + /* Your CSS styles for phones go here */ + h2.section-title { + font-size: 30px; + } +} \ No newline at end of file diff --git a/_static/css/home/intro.css b/_static/css/home/intro.css new file mode 100644 index 00000000..3bfc86cf --- /dev/null +++ b/_static/css/home/intro.css @@ -0,0 +1,38 @@ +.intro { + width: 100%; + padding: 96px 32px; + text-align: center; +} + +.tagline { + color: var(--gst-color-heading); + font-size: 76px; + line-height: 1.25; + font-weight: 900; + margin: 0 auto; +} + +.description { + line-height: 1.25; + font-size: 20px; + max-width: 900px; + margin: 24px auto 40px; + color: var(--pst-color-text-muted); +} + +.actions { + margin: 0 auto; +} + +@media only screen and (max-width: 768px) { + /* Your CSS styles for phones go here */ + .intro { + padding: 90px 20px; + } + .tagline { + font-size: 40px; + } + .description { + font-size: 16px; + } +} \ No newline at end of file diff --git a/_static/css/home/sponsors.css b/_static/css/home/sponsors.css new file mode 100644 index 00000000..1c84b308 --- /dev/null +++ b/_static/css/home/sponsors.css @@ -0,0 +1,24 @@ +.sponsors { + gap: 5px; +} +.sponsors-item { + background-color: var(--gst-color-bg-gray); + border-radius: 2px; + display: flex; + justify-content: space-around; + align-items: center; + padding: 20px; + transition: all 0.2s ease-in-out; +} + +html[data-theme=dark] .sponsors-item:hover { + background-color: var(--bs-gray-100); +} + +html[data-theme=dark] .sponsors-item:hover img:not(.only-dark):not(.dark-light) { + filter: none; +} + +html[data-theme=dark] .sponsors-item img:not(.only-dark):not(.dark-light) { + filter: grayscale(1) invert(1); +} \ No newline at end of file diff --git a/_static/dipy-favicon.png b/_static/dipy-favicon.png new file mode 100644 index 00000000..caffe0d8 Binary files /dev/null and b/_static/dipy-favicon.png differ diff --git a/_static/dipy-logo.png b/_static/dipy-logo.png new file mode 100644 index 00000000..d9bac5eb Binary files /dev/null and b/_static/dipy-logo.png differ diff --git a/_static/images/icons/chart.png b/_static/images/icons/chart.png new file mode 100644 index 00000000..9fd259cf Binary files /dev/null and b/_static/images/icons/chart.png differ diff --git a/_static/images/icons/cli.svg b/_static/images/icons/cli.svg new file mode 100644 index 00000000..a082ad98 --- /dev/null +++ b/_static/images/icons/cli.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_static/images/icons/denoise.png b/_static/images/icons/denoise.png new file mode 100644 index 00000000..3878205c Binary files /dev/null and b/_static/images/icons/denoise.png differ diff --git a/_static/images/icons/preprocessing.png b/_static/images/icons/preprocessing.png new file mode 100644 index 00000000..fdc91e28 Binary files /dev/null and b/_static/images/icons/preprocessing.png differ diff --git a/_static/images/icons/reconstruction.svg b/_static/images/icons/reconstruction.svg new file mode 100644 index 00000000..92d5cdc9 --- /dev/null +++ b/_static/images/icons/reconstruction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_static/images/icons/registration.svg b/_static/images/icons/registration.svg new file mode 100644 index 00000000..8579166a --- /dev/null +++ b/_static/images/icons/registration.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_static/images/icons/stat.svg b/_static/images/icons/stat.svg new file mode 100644 index 00000000..b7a23fa8 --- /dev/null +++ b/_static/images/icons/stat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_static/images/icons/tractography.svg b/_static/images/icons/tractography.svg new file mode 100644 index 00000000..2ab1dee5 --- /dev/null +++ b/_static/images/icons/tractography.svg @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/_static/images/logos/dipy-favicon.png b/_static/images/logos/dipy-favicon.png new file mode 100644 index 00000000..caffe0d8 Binary files /dev/null and b/_static/images/logos/dipy-favicon.png differ diff --git a/_static/images/logos/dipy-logo.png b/_static/images/logos/dipy-logo.png new file mode 100644 index 00000000..d9bac5eb Binary files /dev/null and b/_static/images/logos/dipy-logo.png differ diff --git a/_static/images/sponsors/NIH_NIBIB.png b/_static/images/sponsors/NIH_NIBIB.png new file mode 100644 index 00000000..6ebddde6 Binary files /dev/null and b/_static/images/sponsors/NIH_NIBIB.png differ diff --git a/_static/images/sponsors/gsoc.png b/_static/images/sponsors/gsoc.png new file mode 100644 index 00000000..4665b4a5 Binary files /dev/null and b/_static/images/sponsors/gsoc.png differ diff --git a/_static/images/sponsors/iu.webp b/_static/images/sponsors/iu.webp new file mode 100644 index 00000000..c76c512e Binary files /dev/null and b/_static/images/sponsors/iu.webp differ diff --git a/_static/images/sponsors/luddy.png b/_static/images/sponsors/luddy.png new file mode 100644 index 00000000..7c00fc69 Binary files /dev/null and b/_static/images/sponsors/luddy.png differ diff --git a/_static/images/sponsors/uwescience.png b/_static/images/sponsors/uwescience.png new file mode 100644 index 00000000..cf45f39b Binary files /dev/null and b/_static/images/sponsors/uwescience.png differ diff --git a/blog.html b/blog.html index e3d8dd6b..a4ac1950 100644 --- a/blog.html +++ b/blog.html @@ -29,7 +29,7 @@ - + @@ -42,6 +42,7 @@ + @@ -117,8 +118,14 @@ + + + + + + + -
Python documentation
@@ -333,17 +340,6 @@ - - @@ -604,6 +642,58 @@ `); + + @@ -2443,7 +2533,7 @@Python documentation
@@ -333,17 +340,6 @@ - - @@ -604,6 +642,58 @@ `); + + @@ -2443,7 +2533,7 @@Python documentation
@@ -326,17 +333,6 @@ - - @@ -597,6 +635,58 @@ `); + + @@ -983,7 +1073,7 @@Python documentation
@@ -326,17 +333,6 @@ - - @@ -597,6 +635,58 @@ `); + + @@ -993,7 +1083,7 @@Python documentation
@@ -333,17 +340,6 @@ - - @@ -604,6 +642,58 @@ `); + + @@ -1698,7 +1788,7 @@Python documentation
@@ -333,17 +340,6 @@ - - @@ -604,6 +642,58 @@ `); + + @@ -1461,7 +1551,7 @@Python documentation
@@ -326,17 +333,6 @@ - - @@ -597,6 +635,58 @@ `); + + @@ -983,7 +1073,7 @@Python documentation
@@ -333,17 +340,6 @@ - - @@ -604,6 +642,58 @@ `); + + @@ -2443,7 +2533,7 @@Python documentation
@@ -326,17 +333,6 @@ - - @@ -597,6 +635,58 @@ `); + + @@ -709,7 +799,7 @@Python documentation
@@ -326,17 +333,6 @@ - - @@ -597,6 +635,58 @@ `); + + @@ -983,7 +1073,7 @@Python documentation
@@ -333,17 +340,6 @@ - - @@ -604,6 +642,58 @@ `); + + @@ -2443,7 +2533,7 @@Python documentation
@@ -329,17 +336,6 @@ - - @@ -600,6 +638,58 @@ `); + + @@ -811,7 +901,7 @@ diff --git a/documentation.html b/documentation.html index fb50c39f..595e2316 100644 --- a/documentation.html +++ b/documentation.html @@ -30,7 +30,7 @@ - + @@ -43,6 +43,7 @@ + @@ -113,8 +114,14 @@ + + + + + + + -Python documentation
@@ -329,17 +336,6 @@ - - @@ -600,6 +638,58 @@ `); + + @@ -758,7 +848,7 @@ diff --git a/faq.html b/faq.html index 96f6857c..6f05b90a 100644 --- a/faq.html +++ b/faq.html @@ -30,7 +30,7 @@ - + @@ -44,6 +44,7 @@ + @@ -114,8 +115,14 @@ + + + + + + + -Python documentation
@@ -330,17 +337,6 @@ - -