diff --git a/client/app/components/About/About.js b/client/app/components/About/About.js index 33563db5..e43d2375 100644 --- a/client/app/components/About/About.js +++ b/client/app/components/About/About.js @@ -45,12 +45,23 @@ const About = (props) => {

{VERSION}

+
+
+
+
+
+
-
+
-

Features

+

Features

{['control', 'connect', 'see', 'perspective'].map(key => (

{COPY[key].title}

@@ -60,7 +71,7 @@ const About = (props) => {
-
+

FAQ

@@ -102,9 +113,9 @@ const About = (props) => {
-
+
-

Team

+

Team

  • Ethan Zuckerman, Director
  • Rahul Bhargava, Project Manager
  • @@ -116,7 +127,7 @@ const About = (props) => {
-
+

Press

Check out some things that have been written on Gobo!

diff --git a/client/app/components/About/about.scss b/client/app/components/About/about.scss index a853a591..9968d7f9 100644 --- a/client/app/components/About/about.scss +++ b/client/app/components/About/about.scss @@ -1,5 +1,7 @@ .about, .privacy { + $spacing-between-sections: 40px; + h1 { text-align: center; margin-bottom: 40px; @@ -12,14 +14,29 @@ .about-section { max-width: $screen-sm-min; - $spacing-between-sections: 80px; margin-bottom: $spacing-between-sections; margin-top: $spacing-between-sections; + padding-left: $padding-large-horizontal * 3; + padding-right: $padding-large-horizontal * 3; - // center content - float: unset; - margin-left: auto; - margin-right: auto; + @media (min-width: $screen-sm-min) { + float: unset; + margin-left: auto; + margin-right: auto; + + margin-bottom: $spacing-between-sections * 2; + margin-top: $spacing-between-sections * 2; + + padding-left: 0; + padding-right: 0; + } + } + + .about-navigation { + margin-top: $spacing-between-sections / 2; + @media (min-width: $screen-sm-min) { + margin-top: $spacing-between-sections; + } } } @@ -38,6 +55,15 @@ max-width: 300px; } + .colored-button { + $size: 120px; + border-radius: 0; + padding: 0; + width: $size; + height: $size; + font-size: 20px + } + .colored-background { color: $inverse-text-color; @@ -56,22 +82,18 @@ } .orange-background { - @extend .colored-background; background-color: $orange; } .red-background { - @extend .colored-background; background-color: $red; } .green-background { - @extend .colored-background; background-color: $green; } .purple-background { - @extend .colored-background; background-color: $purple; } }