-
Notifications
You must be signed in to change notification settings - Fork 9
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 #122 from TRI-AMDD/TRI-30864-about-page-transition…
…-and-font-fix [TRI-30864] Adding Gellix-Regular Font
- Loading branch information
Showing
7 changed files
with
23 additions
and
9 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
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,10 @@ | ||
@font-face { | ||
font-family: 'Gellix-Regular'; | ||
src: url('./fonts/Gellix-Regular/Gellix-Regular.eot'); | ||
src: url('./fonts/Gellix-Regular/Gellix-Regular.woff2') format('woff2'), | ||
url('./fonts/Gellix-Regular/Gellix-Regular.woff') format('woff'); | ||
} | ||
|
||
body { | ||
font-family: 'Gellix-Regular', sans-serif; | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -66,7 +66,7 @@ const About: React.FC<highlightProps> = ({highlightedParagraph, highlight}) => { | |
<p className={styles.Content}> | ||
The piro platform is developed by a team of researchers and software developers at Toyota Research Institute: Murat Aykol, | ||
Joseph Montoya, Jens Hummelshøj, Chris Fajardo, Michael Puzon, and Reko Ong. | ||
If you have any questions or feedback, please reach out to us at <a href="mailto:[email protected]">[email protected]</a> | ||
If you have any questions or feedback, please reach out to us at <u><a href="mailto:[email protected]">[email protected]</a></u>. | ||
</p></div> | ||
</div> | ||
<p className={styles.gap}></p> | ||
|
@@ -75,8 +75,9 @@ const About: React.FC<highlightProps> = ({highlightedParagraph, highlight}) => { | |
<h4 className={styles.Titles}>Code</h4> | ||
<p className={styles.Content}> | ||
If you’d like to use the python interface to piro, or to access the code for this site, | ||
please visit our github page: <a href="https://github.com/TRI-AMDD/piro" target="_blank">https://github.com/TRI-AMDD/piro</a>. | ||
please visit our github page: <u><a href="https://github.com/TRI-AMDD/piro" target="_blank">https://github.com/TRI-AMDD/piro</a></u>. | ||
Tutorial jupyter notebooks showing how to use piro locally are provided in the notebooks folder. | ||
<div className={styles.spacer}></div> | ||
</p> | ||
</div> | ||
</div> | ||
|
@@ -86,8 +87,8 @@ const About: React.FC<highlightProps> = ({highlightedParagraph, highlight}) => { | |
<h4 className={styles.Titles}>Manuscript</h4> | ||
<p className={styles.Content}> | ||
For more information about the physical theory behind piro, please read our paper, | ||
“Rational Solid-State Synthesis Routes for Inorganic Materials” by Murat Aykol et al. | ||
<a href="https://pubs.acs.org/doi/abs/10.1021/jacs.1c04888" target="_blank">(https://pubs.acs.org/doi/abs/10.1021/jacs.1c04888)</a>. | ||
“Rational Solid-State Synthesis Routes for Inorganic Materials” by Murat Aykol et al. <u><a href="https://pubs.acs.org/doi/abs/10.1021/jacs.1c04888" target="_blank">(https://pubs.acs.org/doi/abs/10.1021/jacs.1c04888)</a></u>. | ||
<div className={styles.spacer}></div> | ||
</p></div> | ||
</div> | ||
</article> | ||
|