From 7aed3740ccae3b213f51779e85bd72af918a30f2 Mon Sep 17 00:00:00 2001 From: maharshigor Date: Mon, 3 Jul 2023 16:39:20 -0400 Subject: [PATCH 1/7] physics-simulation done --- .../source/_static/css/physics-simulation.css | 0 docs/source/_static/vendor/tabs.css | 43 +++++++++++-- docs/source/_templates/home.html | 64 +++++++++++-------- 3 files changed, 76 insertions(+), 31 deletions(-) create mode 100644 docs/source/_static/css/physics-simulation.css diff --git a/docs/source/_static/css/physics-simulation.css b/docs/source/_static/css/physics-simulation.css new file mode 100644 index 000000000..e69de29bb diff --git a/docs/source/_static/vendor/tabs.css b/docs/source/_static/vendor/tabs.css index 0ed2282ae..9775aaad9 100644 --- a/docs/source/_static/vendor/tabs.css +++ b/docs/source/_static/vendor/tabs.css @@ -21,6 +21,10 @@ margin: 30px 0; } +.tabs-info { + font-size: 20px; +} + .visualization, .data-science, .scientific-domains, .machine-learning, .array-libraries { max-width: 900px; margin: 15px auto; @@ -125,21 +129,48 @@ } /* Visualization */ -.visualization-images > img { +.visualization-images img, +.visualization-images a { border-radius: 10px; } .image-grid { display: grid; - grid-template-columns: auto auto auto; - grid-gap: 10px; + grid-template-columns: repeat(3, 1fr); + grid-template-rows: repeat(2, 1fr); + grid-gap: 2em; +} + +@media only screen and (max-width: 600px) { + .image-grid { + grid-template-columns: repeat(2, 1fr); + } } .image-grid > div { - background-color: rgb(238, 238, 238); - border: 2px solid rgb(255, 255, 255); + background-color: rgb(0, 0, 0); border-radius: 10px; - padding: 10px; + + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + + box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; +} + +@media only screen and (max-width: 600px) { + .image-grid > div { + min-height: 150px; + } +} + +.image-description { + color: black; +} + +.image-grid > div:hover { + box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; } /* Scientific Domains */ diff --git a/docs/source/_templates/home.html b/docs/source/_templates/home.html index 69b8519b1..db0567a89 100644 --- a/docs/source/_templates/home.html +++ b/docs/source/_templates/home.html @@ -20,6 +20,7 @@ + @@ -437,31 +438,45 @@

Mathematics

  • -
    -
    -
    -
    - physics domino -
    -
    - physics bricks -
    -
    - physic collision -
    -
    - brownian motion -
    -
    - Em wave -
    -
    - Helical path -
    +
    With FURY, it becomes simple to produce multiple physics animations with ease.
    +
    +
    +
    + physics domino + +
    +
    + physics bricks + +
    +
    + physic collision + +
    +
    + brownian motion + +
    +
    + Em wave + +
    +
    + Helical path +
    -
    -
    -

    FURY allows you to create easily multiple physics animations.

  • @@ -485,7 +500,6 @@

    Mathematics

    -
  • From 0499cf52b763fb0d7a8f5f0f471b25fdf47f51de Mon Sep 17 00:00:00 2001 From: maharshigor Date: Wed, 5 Jul 2023 16:19:19 -0400 Subject: [PATCH 2/7] text bugs fixed --- docs/source/_static/css/physics-simulation.css | 0 docs/source/_static/vendor/tabs.css | 10 +++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) delete mode 100644 docs/source/_static/css/physics-simulation.css diff --git a/docs/source/_static/css/physics-simulation.css b/docs/source/_static/css/physics-simulation.css deleted file mode 100644 index e69de29bb..000000000 diff --git a/docs/source/_static/vendor/tabs.css b/docs/source/_static/vendor/tabs.css index 9775aaad9..c9e801b59 100644 --- a/docs/source/_static/vendor/tabs.css +++ b/docs/source/_static/vendor/tabs.css @@ -22,7 +22,15 @@ } .tabs-info { - font-size: 20px; + font-size: 16px; + color: #4a4a4a; +} + +@media screen and (max-width: 600px) { + .tabs-info { + font-size: 12.8px; + font-weight: bold; + } } .visualization, .data-science, .scientific-domains, .machine-learning, .array-libraries { From 6609de39eaeab5a041d7d5be385d4fdd9fddac42 Mon Sep 17 00:00:00 2001 From: maharshigor Date: Fri, 7 Jul 2023 23:25:53 -0400 Subject: [PATCH 3/7] all sections done --- docs/source/_static/css/util.css | 44 +++++++++++++++++++++++++++++ docs/source/_static/vendor/tabs.css | 42 +++++++-------------------- docs/source/_templates/home.html | 30 +++++++++++--------- 3 files changed, 70 insertions(+), 46 deletions(-) diff --git a/docs/source/_static/css/util.css b/docs/source/_static/css/util.css index e602e93f0..abdd6032e 100644 --- a/docs/source/_static/css/util.css +++ b/docs/source/_static/css/util.css @@ -2918,3 +2918,47 @@ iframe {border: none;} right: 0px; bottom: 0px; } + +/* Grid */ +.grid { + display: grid; +} + +/* Gaps */ +.g-gap-2 { + grid-gap: 2em; +} + +/* Columns */ +.g-col-3 { + grid-template-columns: repeat(3, 1fr); +} +.g-col-2 { + grid-template-columns: repeat(2, 1fr); +} + +/* Rows */ +.g-row-2 { + grid-template-rows: repeat(2, 1fr); +} + +/* Spans */ +.g-span-2 { + grid-column: span 2; +} + +/* Mobile section */ +@media only screen and (max-width: 600px) { + /* Columns */ + .g-m-col-2 { + grid-template-columns: repeat(2, 1fr); + } + .g-m-col-1 { + grid-template-columns: repeat(1, 1fr); + } + + /* Rows */ + .g-m-rows-3 { + grid-template-rows: repeat(3, 1fr); + } +} \ No newline at end of file diff --git a/docs/source/_static/vendor/tabs.css b/docs/source/_static/vendor/tabs.css index c9e801b59..ec5355000 100644 --- a/docs/source/_static/vendor/tabs.css +++ b/docs/source/_static/vendor/tabs.css @@ -55,6 +55,10 @@ font-weight: 500; color: rgb(108, 122, 137); } +.uk-tab > .uk-active > a { + color: var(--colorPrimaryDark) !important; + border-color: var(--colorPrimaryDark) !important; +} @media screen and (max-width: 600px) { @@ -62,7 +66,7 @@ margin-left: 0 !important; } - .uk-tab> .uk-active > a { + .uk-tab > .uk-active > a { border-color: var(--colorPrimaryDark) !important; color: var(--colorPrimaryDark) !important; } @@ -118,43 +122,12 @@ } } -.grid-container { - display: grid; - grid-template-columns: auto auto; - grid-gap: 20px; -} - -.grid-container > div { - /* White, with 80% opacity */ - background-color: rgba(255, 255, 255, 0.8); - text-align: middle; -} - -@media only screen and (max-width: 600px) { - .grid-container { - display: block; - } -} - /* Visualization */ .visualization-images img, .visualization-images a { border-radius: 10px; } -.image-grid { - display: grid; - grid-template-columns: repeat(3, 1fr); - grid-template-rows: repeat(2, 1fr); - grid-gap: 2em; -} - -@media only screen and (max-width: 600px) { - .image-grid { - grid-template-columns: repeat(2, 1fr); - } -} - .image-grid > div { background-color: rgb(0, 0, 0); border-radius: 10px; @@ -173,6 +146,11 @@ } } +.molecular-band { + padding: 30px; + background-color: white !important; +} + .image-description { color: black; } diff --git a/docs/source/_templates/home.html b/docs/source/_templates/home.html index db0567a89..3c577c252 100644 --- a/docs/source/_templates/home.html +++ b/docs/source/_templates/home.html @@ -438,9 +438,9 @@

    Mathematics

  • -
    With FURY, it becomes simple to produce multiple physics animations with ease.
    +
    With FURY, it becomes simple to produce multiple physics animations with ease.
  • -

    Some Molecular Dynamics applications using FURY.

    +

    Some Molecular Dynamics applications using FURY.

    -
    -
    +
    + -
    -
    - Molecular Ribbon -
    -
    - Molecular Surface -
    +
    + Molecular Ribbon +
    +
    + Molecular Surface
  • -

    Built with FURY: Neuroscience application examples

    +

    Built with FURY: Neuroscience application examples

    -
    +
    Brain bundle
    From 57515a2e30912ee07a0f585a2d7d314a601dde5b Mon Sep 17 00:00:00 2001 From: maharshigor Date: Sat, 8 Jul 2023 19:41:22 -0400 Subject: [PATCH 4/7] scientific-domain mobile view --- docs/source/_static/vendor/display-card.css | 16 ++++ docs/source/_templates/home.html | 89 ++++++++++++++++++++- 2 files changed, 103 insertions(+), 2 deletions(-) diff --git a/docs/source/_static/vendor/display-card.css b/docs/source/_static/vendor/display-card.css index 5da184b6e..201269588 100644 --- a/docs/source/_static/vendor/display-card.css +++ b/docs/source/_static/vendor/display-card.css @@ -56,6 +56,15 @@ margin-right: 12px; } +@media only screen and (max-width: 600px) { + .h-card__title-icon { + width: 15px; + height: 15px; + filter: brightness(0) invert(1); + margin-right: 8px; + } +} + .h-card__title { font-weight: 600; color: var(--colorPrimaryDark); @@ -64,6 +73,13 @@ margin-bottom: 10px; } +@media only screen and (max-width: 600px) { + .h-card__title { + font-size: 12px; + color: white; + } +} + .h-card__data { display: flex; flex-direction: column; diff --git a/docs/source/_templates/home.html b/docs/source/_templates/home.html index 3c577c252..bbdada909 100644 --- a/docs/source/_templates/home.html +++ b/docs/source/_templates/home.html @@ -220,7 +220,92 @@

    Install FURY And Start Using It!

    • - +
      +
      +
      +
      + +

      Engineering

      +
      + + Engineering + +
      +
      +
      + +

      Physics

      +
      + + Physics + +
      +
      +
      + +

      Chemistry

      +
      + + Chemistry + +
      +
      +
      + +

      Astronomy

      +
      + + Chemistry + +
      +
      +
      + +

      Aerospace

      +
      + + Aerospace + +
      +
      +
      + +

      Biology

      +
      + + Biology + +
      +
      +
      + +

      Data Science

      +
      + + Data Science + +
      +
      +
      + +

      Network Science

      +
      + + Network Science + +
      +
      +
      + +

      Mathematics

      +
      + + Mathematics + +
      +
      +
      +
      From 94d563213c116b5f242b981c842a4a4099bebc95 Mon Sep 17 00:00:00 2001 From: maharshigor Date: Tue, 11 Jul 2023 10:23:38 -0400 Subject: [PATCH 5/7] comments removed --- docs/source/_templates/home.html | 39 ++------------------------------ 1 file changed, 2 insertions(+), 37 deletions(-) diff --git a/docs/source/_templates/home.html b/docs/source/_templates/home.html index bbdada909..158b74477 100644 --- a/docs/source/_templates/home.html +++ b/docs/source/_templates/home.html @@ -20,7 +20,6 @@ - @@ -300,46 +299,12 @@

      Network Science

      Mathematics

      - Mathematics + Mathematics
      -
      From 43fe11bf28ad88cb04cfab7d3f10f013d494f07d Mon Sep 17 00:00:00 2001 From: maharshigor Date: Wed, 12 Jul 2023 21:19:56 -0400 Subject: [PATCH 6/7] links updated --- docs/source/_templates/home.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/_templates/home.html b/docs/source/_templates/home.html index 158b74477..72eaddf35 100644 --- a/docs/source/_templates/home.html +++ b/docs/source/_templates/home.html @@ -511,19 +511,19 @@
      With FURY, it becomes simple to produce multipl
      brownian motion
      Em wave
      Helical path
      From e9ab759d1d7bac3016fc9d1a199f5a7a1522e2d7 Mon Sep 17 00:00:00 2001 From: maharshigor Date: Thu, 27 Jul 2023 21:37:21 -0400 Subject: [PATCH 7/7] links fixed --- docs/source/_templates/home.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/source/_templates/home.html b/docs/source/_templates/home.html index 22c3bca44..599ac96ef 100644 --- a/docs/source/_templates/home.html +++ b/docs/source/_templates/home.html @@ -226,7 +226,7 @@

      Install FURY And Start Using It!

      Engineering

      - + Engineering
      @@ -235,7 +235,7 @@

      Engineering

      Physics

      - + Physics @@ -244,7 +244,7 @@

      Physics

      Chemistry

      - + Chemistry @@ -253,7 +253,7 @@

      Chemistry

      Astronomy

      - + Chemistry @@ -262,7 +262,7 @@

      Astronomy

      Aerospace

      - + Aerospace @@ -271,7 +271,7 @@

      Aerospace

      Biology

      - + Biology @@ -280,7 +280,7 @@

      Biology

      Data Science

      - + Data Science @@ -289,7 +289,7 @@

      Data Science

      Network Science

      - + Network Science @@ -298,7 +298,7 @@

      Network Science

      Mathematics

      - + Mathematics