diff --git a/public/images/branding/google-cloud/google-cloud-logo.svg b/public/images/branding/google-cloud/google-cloud-logo.svg index 4a232dc..6fd725f 100644 --- a/public/images/branding/google-cloud/google-cloud-logo.svg +++ b/public/images/branding/google-cloud/google-cloud-logo.svg @@ -1,779 +1,12 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + diff --git a/public/images/branding/heroku/heroku-logo.svg b/public/images/branding/heroku/heroku-logo.svg index abeabe9..c287cd8 100644 --- a/public/images/branding/heroku/heroku-logo.svg +++ b/public/images/branding/heroku/heroku-logo.svg @@ -1 +1,18 @@ - \ No newline at end of file + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/public/language/en-AU.jsx b/public/language/en-AU.jsx index 098ec6d..ce96233 100644 --- a/public/language/en-AU.jsx +++ b/public/language/en-AU.jsx @@ -47,7 +47,8 @@ module.exports = { } }, "platforms": { - "heading": "Platforms I work with" + "heading": "Platforms I work with", + "footer": "... And many more!" }, "admin": { "heading": "Systems Admin", diff --git a/public/page/about/AboutPage.jsx b/public/page/about/AboutPage.jsx index d59d647..ad76f69 100644 --- a/public/page/about/AboutPage.jsx +++ b/public/page/about/AboutPage.jsx @@ -36,11 +36,11 @@ import ElementScrollFader from './../../animation/fade/ElementScrollFader'; const AboutPageBrand = (props) => { let children; - let image = ; + let image = ; if(props.to) { children = ( - + {image} ); @@ -49,13 +49,9 @@ const AboutPageBrand = (props) => { } return ( - - - - {children} - - - + + {children} + ); }; @@ -128,11 +124,11 @@ const AboutPage = (props) => { {/* Platforms */}
- + { Language.get("pages.about.platforms.heading") } - +
{/* Shopify */} { to="//www.postgresql.org" /> - - - - {/* NodeJS */} { from="left" to="//java.com" /> - - - {/* neto */} { from="bottom" to="//www.opengl.org" /> - - {/* Discord */} {/* Twitch */} @@ -246,14 +233,19 @@ const AboutPage = (props) => { to="//twitter.com" /> - ``{/* Google Cloud */} + {/* Google Cloud */} - - ... And many more! +
+ + + { Language.get("pages.about.platforms.footer") } + diff --git a/public/styles/pages/_about-page.scss b/public/styles/pages/_about-page.scss index 8e059e7..a3f132f 100644 --- a/public/styles/pages/_about-page.scss +++ b/public/styles/pages/_about-page.scss @@ -3,6 +3,9 @@ * Styles for the About Page, a simple page outlining some info about me. * * Dependencies: + * styles/settings/responsive.scss + * styles/tools/_flex.scss + * styles/tools/_responsive.scss * * Version: * 1.0.0 - 2018/06/06 @@ -19,7 +22,7 @@ &-platforms { //background-image: url('./../images/patterns/game-show.svg'); - background: black; + background: #FFD6DE; } &-programming { @@ -36,17 +39,56 @@ } } - &__brand { - display: block; - > a {display: block;} + &__brands { + @extend %t-flexbox; + @include t-align-items(center); + @include t-justify-content(space-between); + @include t-flex-wrap(wrap); + + &-brand { + width: 50%; + padding: 1em; + } &-image { - width: 100%; - max-width: 250px; - max-height: 200px; display: block; - margin: auto; - padding: 2em; + margin: 0 auto; + width: 100%; + height: 100%; + max-width: 5em; + max-height: 5em; + object-fit: contain; + object-position: center; + } + + &-link { + display: block; + } + + &-title { + color: white; } } + + @include t-media-query($s-xsmall-up) { + &__brands { + &-brand { + width: 25%; + } + } + } + + @include t-media-query($s-small-up) { + &__brands { + &-brand { + padding: 2em; + } + + &-image { + max-width: 7em; + max-height: 6em; + } + } + } + }