website updates

Summary:
A few minor updates to the website.
- fix the color gradient on the homepage
- fix unicode escape for the copyright symbol

Reviewed By: gkioxari

Differential Revision: D19744165

fbshipit-source-id: 31068bd0b408fe7b298e1f69d9998d64498e9d8c
This commit is contained in:
Nikhila Ravi 2020-02-05 09:49:29 -08:00 committed by Facebook Github Bot
parent 15d3a4557e
commit 10ec66dadb
3 changed files with 12 additions and 16 deletions

View File

@ -24,12 +24,11 @@ cd pytorch3d-master/website || exit
# Build site, tagged with "latest" version; baseUrl set to /versions/latest/ # Build site, tagged with "latest" version; baseUrl set to /versions/latest/
yarn yarn
yarn run build
cd .. || exit cd .. || exit
./scripts/build_website.sh -b ./scripts/build_website.sh -b
yarn run build
cd "${WORK_DIR}" || exit cd "${WORK_DIR}" || exit
rm -rf pytorch3d-gh-pages/* rm -rf pytorch3d-gh-pages/*
touch pytorch3d-gh-pages/CNAME touch pytorch3d-gh-pages/CNAME

View File

@ -21,7 +21,7 @@ const users = [
const baseUrl = '/' const baseUrl = '/'
const siteConfig = { const siteConfig = {
title: 'PyTorch3d', // Title for your website. title: 'PyTorch3D', // Title for your website.
tagline: 'A library for deep learning with 3D data', tagline: 'A library for deep learning with 3D data',
url: 'https://pytorch3d.org', // Your website URL url: 'https://pytorch3d.org', // Your website URL
baseUrl: baseUrl, // Base URL for your project */ baseUrl: baseUrl, // Base URL for your project */
@ -50,7 +50,7 @@ const siteConfig = {
}, },
// This copyright info is used in /core/Footer.js and blog RSS/Atom feeds. // This copyright info is used in /core/Footer.js and blog RSS/Atom feeds.
copyright: `Copyright "\u00A9" ${new Date().getFullYear()} Facebook Inc`, copyright: `Copyright \u{00A9} ${new Date().getFullYear()} Facebook Inc`,
highlight: { highlight: {
// Highlight.js theme to use for syntax highlighting in code blocks. // Highlight.js theme to use for syntax highlighting in code blocks.

View File

@ -59,12 +59,9 @@ html body {
} }
.homeContainer { .homeContainer {
background: rgb(2, 0, 36);
background: linear-gradient( background: linear-gradient(
0deg, rgba(129, 44, 229, 1) 0%,
rgba(2, 0, 36, 1), rgba(255, 175, 0, 1) 100%
rgba(255, 175, 0, 1) 0%,
rgba(129, 44, 229, 1) 100%
); );
padding: 30px 0px; padding: 30px 0px;
} }