diff --git a/public/content/FloatingContentBox.jsx b/public/content/FloatingContentBox.jsx new file mode 100644 index 0000000..bc2b0f2 --- /dev/null +++ b/public/content/FloatingContentBox.jsx @@ -0,0 +1,57 @@ +// Copyright (c) 2018 Dominic Masters +// +// MIT License +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +import React from 'react'; + +class FloatingContentBox extends React.Component { + constructor(props) { + super(props); + } + + render() { + let clazzes = "o-floating-content-box"; + + //Positions + let position = "middle center"; + if(this.props.position) position = this.props.position; + clazzes += " " + position.split(" ").map(i => 'is-'+i).join(" "); + + //Sizes` + let size = "medium"; + if(this.props.size) size = this.props.size; + clazzes += " is-"+size; + + //Custom Classes + if(this.props.className) clazzes += " " + this.props.className; + + return ( +
+
+ { this.props.children } +
+
+ ); + } +} + +export default FloatingContentBox; diff --git a/public/page/home/Homepage.jsx b/public/page/home/Homepage.jsx index e26c6ab..f2a7504 100644 --- a/public/page/home/Homepage.jsx +++ b/public/page/home/Homepage.jsx @@ -25,6 +25,7 @@ import React from 'react'; import Page from './../Page'; import VideoSection from './../../section/video/VideoSection'; import Section from './../../section/Section'; +import FloatingContentBox from './../../content/FloatingContentBox'; class Homepage extends React.Component { constructor(props) { @@ -34,8 +35,10 @@ class Homepage extends React.Component { render() { return ( - - Test + + + Hello World +
diff --git a/public/styles/index.scss b/public/styles/index.scss index 1ee6fa5..cbc843e 100644 --- a/public/styles/index.scss +++ b/public/styles/index.scss @@ -34,10 +34,13 @@ @import './tools/flex.scss'; @import './tools/list.scss'; @import './tools/prefix.scss'; -@import './tools/_animation.scss'; + +@import './tools/_animation.scss'; @import './tools/_transform.scss'; @import './tools/_responsive.scss'; +@import './tools/_absolute-centering.scss'; + //Resets //Elements @@ -52,6 +55,7 @@ @import './objects/main.scss'; @import './objects/_app.scss'; +@import './objects/_floating-content-box.scss'; @import './objects/_loader.scss'; @import './objects/_navbar.scss'; @import './objects/_video.scss'; diff --git a/public/styles/objects/_floating-content-box.scss b/public/styles/objects/_floating-content-box.scss new file mode 100644 index 0000000..c1fc997 --- /dev/null +++ b/public/styles/objects/_floating-content-box.scss @@ -0,0 +1,49 @@ +/* + * Floating Content Box + * Simple Floating Box, designed to sit content inside it. + * + * Dependencies: + * styles/settings/responsive.scss + * styles/tools/_absolute-centering.scss + * styles/tools/_responsive.scss + * + * Version: + * 1.0.0 - 2018/05/11 + */ +$o-floating--inset: 5%; + +.o-floating-content-box { + @include t-absolute-position-options($o-floating--inset); + max-width: 100% - ($o-floating--inset * 2); + + &.is-medium,&.is-large { + width: 100%; + } + + &__inner { + position: relative; + } + + //Media Queries + @include t-media-query($s-xsmall-up) { + &.is-medium { + width: 450px; + } + } + + @include t-media-query($s-small-up) { + &.is-large { + width: 700px; + } + } + + @include t-media-query($s-large-up) { + &.is-medium { + width: 550px; + } + + &.is-large { + width: 750px; + } + } +} diff --git a/public/styles/tools/_absolute-centering.scss b/public/styles/tools/_absolute-centering.scss new file mode 100644 index 0000000..f92f684 --- /dev/null +++ b/public/styles/tools/_absolute-centering.scss @@ -0,0 +1,63 @@ +/* + * Absolute Centering + * Provides tools to absolutely center elements in various center stlyes. + * + * Dependencies: + * styles/tools/_transform.scss + * + * Version: + * 1.0.0 - 2018/05/11 + * + */ +@mixin t-absolute-center-x-y() { + position: absolute; + left: 50%; + top: 50%; + @include t-translate(-50%, -50%); +} + +@mixin t-absolute-center-x() { + position: absolute; + left: 50%; + @include t-translate-x(-50%); +} + +@mixin t-absolute-center-y() { + position: absolute; + top: 50%; + @include t-translate-y(-50%); +} + +@mixin t-absolute-position-options($inset: 0) { + position: absolute; + + &.is-top { + top: $inset; + } + + &.is-bottom { + bottom: $inset; + } + + &.is-left { + left: $inset; + } + + &.is-right { + right: $inset; + } + + &.is-middle { + top: 50%; + @include t-translate-y(-50%); + } + + &.is-center { + left: 50%; + @include t-translate-x(-50%); + } + + &.is-middle.is-center { + @cinlude t-translate(-50%, -50%); + } +}