From 62b761f24d112eddc171e9bdd743322d29ec9487 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 18 Mar 2018 14:15:38 +1100 Subject: [PATCH] Adjusted AboutPage --- public/components/pages/AboutPage.jsx | 124 +++++------------- .../styles/components/_page--style-about.scss | 54 ++++---- 2 files changed, 58 insertions(+), 120 deletions(-) diff --git a/public/components/pages/AboutPage.jsx b/public/components/pages/AboutPage.jsx index cddd371..d76831f 100644 --- a/public/components/pages/AboutPage.jsx +++ b/public/components/pages/AboutPage.jsx @@ -6,34 +6,26 @@ * styles/components/_page--style-about.scss * * Version: - * 1.0.0 - 2018/03/11 + * 1.0.0 - 2018/03/18 */ import React from 'react'; +import { connect } from 'react-redux'; + +import Language from './../../language/Language'; import Page from './../Page'; import BlankPromo from './../sections/BlankPromo'; import BodySection from './../sections/BodySection'; import SplitSection from './../sections/SplitSection'; -import { connect } from 'react-redux'; -import Language from './../../language/Language'; - +import VideoTitle from './../title/VideoTitle'; import Window95 from './../w95/Window95'; import domsHead from './../../images/profile.png'; - -const ProgrammingBox = function(props) { - return ( -
-

- {Language.get("about."+props.language+".name")} -

-

- {Language.get("about."+props.language+".description")} -

-
- ) -} +import aboutMP4 from './../../videos/about/about.mp4'; +import programmingMP4 from './../../videos/about/programming.mp4'; +import apiMP4 from './../../videos/about/api.mp4'; +import otherMP4 from './../../videos/about/other.mp4'; class AboutPage extends React.Component { constructor(props) { @@ -45,89 +37,43 @@ class AboutPage extends React.Component { + {/* Bio */} } - right={

{Language.get("about.descriptions.welcome")}

} - rightClass="c-page--style-about__blurb" - full - /> - - - -
- { Language.get("about.descriptions.me") } + right={ + +
+

{ Language.get("about.descriptions.welcome") }

} - - rightClass="c-page--style-about__window-container" - right={
} - full + rightClass="c-page--style-about__blurb" /> - - -

{Language.get("about.titles.me")}

-

- { Language.get("about.descriptions.me") } -

- -

- { Language.get("about.titles.programming")} -

-

{ Language.get("about.descriptions.programming")}

- -
- - - - - - - - - - - -
- -

- { Language.get("about.titles.apis")} -

-
- - - - - - - - - -
- - -

- { Language.get("about.titles.other")} -

-

{ Language.get("about.descriptions.other")}

-
- - - - - -
- - + {/* About Me */} + + } + > + { Language.get("about.descriptions.me") } + + {/* Programming */} + , + , + + ]}> - ) + ); } } diff --git a/public/styles/components/_page--style-about.scss b/public/styles/components/_page--style-about.scss index 4ed624f..ec1aa3a 100644 --- a/public/styles/components/_page--style-about.scss +++ b/public/styles/components/_page--style-about.scss @@ -10,13 +10,28 @@ * Version: * 1.0.0 - 2018/03/11 */ + +//Body Section Margin +.c-about-page__body-section { + margin-bottom: 3em; +} + +//About Section +.c-page--style-about__bio-section { + margin-bottom: 5em; +} + .c-page--style-about { - background: url('./../images/dotted_bg_yellow.png'); - background-size: 16px 16px; } .c-page--style-about__profile-container { - margin-bottom: 5em; +} + +.c-window--style-about { + max-width: 25em; + margin: 0 auto; + display: block; + width: 90%; } .c-page--style-about__profile { @@ -27,15 +42,13 @@ .c-page--style-about__blurb { font-size: 1.25em; - max-width: 25em; } -.c-page--style-about__blurb, .c-page--style-about__profile-container { text-align: center; } - +//Window adjustments for about section .c-page--style-about__window { display: block; width: 90%; @@ -46,36 +59,15 @@ resize: none; } - -/* -.c-page--style-about__language-container { - @extend %t-flexbox; - @include t-flex-wrap(wrap); -} - -.c-page--style-about__language { - width: 100%; - padding: 1em; -} - -.c-page--style-about__language-heading, -.c-page--style-about__language-description { - text-align: center; -} - -.c-page--style-about__subheading { - margin-top: 4em; -} -*/ +//Media queries @include t-media-query($s-small-up) { + .c-page--style-about__blurb { + } + .c-page--style-about__window-container { width: 50%; } .c-page--style-about__window { width: 50%; } - - /*.c-page--style-about__language { - width: 50%; - }*/ }