Added footer
This commit is contained in:
@ -30,6 +30,7 @@
|
||||
"file-loader": "^1.1.9",
|
||||
"mysql-promise": "^4.1.0",
|
||||
"normalize.css": "^8.0.0",
|
||||
"npm": "^5.7.1",
|
||||
"react": "^16.2.0",
|
||||
"react-dom": "^16.2.0",
|
||||
"three": "^0.90.0"
|
||||
|
@ -12,6 +12,7 @@
|
||||
import React from 'react';
|
||||
|
||||
import Header from './components/Header';
|
||||
import Footer from './components/Footer';
|
||||
|
||||
import IndexPage from './components/pages/IndexPage';
|
||||
|
||||
@ -25,6 +26,7 @@ class App extends React.Component {
|
||||
<div className="c-app">
|
||||
<Header />
|
||||
<IndexPage />
|
||||
<Footer />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
47
public/components/Footer.jsx
Normal file
47
public/components/Footer.jsx
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Header
|
||||
* Header for page, contains navbar as well as other consistant top of page
|
||||
* elements.
|
||||
*
|
||||
* Dependencies:
|
||||
* styles/components/_header.scss
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/02/23
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
const FooterLink = function(props) {
|
||||
return (
|
||||
<span className="c-footer__link">
|
||||
<a href={props.to} className="c-footer__link-link">
|
||||
{props.children}
|
||||
</a>
|
||||
</span>
|
||||
)
|
||||
}
|
||||
|
||||
class Footer extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
render() {
|
||||
let year = new Date().getFullYear();
|
||||
return (
|
||||
<footer className="c-footer">
|
||||
<span className="c-footer__copyright">
|
||||
2012 ~ {year} | Dominic Masters.
|
||||
</span>
|
||||
|
||||
<nav className="c-footer__links">
|
||||
<FooterLink to="/">Privacy Policy</FooterLink>
|
||||
<FooterLink to="/">Contact Us</FooterLink>
|
||||
</nav>
|
||||
</footer>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export default Footer;
|
27
public/components/navigation/Menu.jsx
Normal file
27
public/components/navigation/Menu.jsx
Normal file
@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Menu
|
||||
* Simple expandable menu.
|
||||
*
|
||||
* Dependencies:
|
||||
* styles/components/_menu.scss
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/03/01
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
class Menu extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<nav className="c-menu">
|
||||
</nav>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export default Menu;
|
@ -22,7 +22,21 @@ class IndexPage extends React.Component {
|
||||
<Page>
|
||||
<Poly />
|
||||
<BodySection>
|
||||
Lorem
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
<p>Lorem</p>
|
||||
</BodySection>
|
||||
</Page>
|
||||
)
|
||||
|
160
public/components/pages/KitchenSinkPage.jsx
Normal file
160
public/components/pages/KitchenSinkPage.jsx
Normal file
@ -0,0 +1,160 @@
|
||||
import React from 'react';
|
||||
|
||||
import Page from './../Page';
|
||||
import Poly from './../sections/Poly';
|
||||
import BodySection from './../sections/BodySection';
|
||||
|
||||
class KitchenSinkPage extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<Page>
|
||||
<Poly />
|
||||
<BodySection>
|
||||
|
||||
<h1>This is the primary heading and there should only be one of these per page</h1>
|
||||
<p>A small paragraph to <em>emphasis</em> and show <strong>important</strong> bits.</p>
|
||||
<ul>
|
||||
<li>This is a list item</li>
|
||||
<li>So is this - there could be more</li>
|
||||
<li>Make sure to style list items to:
|
||||
<ul>
|
||||
<li>Not forgetting child list items</li>
|
||||
<li>Not forgetting child list items</li>
|
||||
<li>Not forgetting child list items</li>
|
||||
<li>Not forgetting child list items</li>
|
||||
</ul></li>
|
||||
<li>A couple more</li>
|
||||
<li>top level list items</li>
|
||||
</ul>
|
||||
<p>Don't forget <strong>Ordered lists</strong>:</p>
|
||||
<ol>
|
||||
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>
|
||||
<li>Aliquam tincidunt mauris eu risus.
|
||||
<ol>
|
||||
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>
|
||||
<li>Aliquam tincidunt mauris eu risus.</li>
|
||||
</ol>
|
||||
</li>
|
||||
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>
|
||||
<li>Aliquam tincidunt mauris eu risus.</li>
|
||||
</ol>
|
||||
|
||||
<h2>A sub heading which is not as important as the first, but is quite imporant overall</h2>
|
||||
<p>
|
||||
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.
|
||||
</p>
|
||||
|
||||
<table class="t1" summary="Top 10 downloaded movies in 2011 using BitTorrent, in descending order, listing number of downloads and worldwide cinema grosses">
|
||||
<caption>
|
||||
Most Downloaded Movies on BitTorrent, 2011
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Rank</th>
|
||||
<th>Movie</th>
|
||||
<th>Downloads</th>
|
||||
<th>Grosses</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th colspan="4">torrentfreak.com</th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>1</th>
|
||||
<td>Fast Five</td>
|
||||
<td>9,260,000</td>
|
||||
<td>$626,137,675</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>2</th>
|
||||
<td>The Hangover II</td>
|
||||
<td>8,840,000</td>
|
||||
<td>$581,464,305</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>3</th>
|
||||
<td>Thor</td>
|
||||
<td>8,330,000</td>
|
||||
<td>$449,326,618</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>4</th>
|
||||
<td>Source Code</td>
|
||||
<td>7,910,000</td>
|
||||
<td>$123,278,618</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>5</th>
|
||||
<td>I Am Number Four</td>
|
||||
<td>7,670,000</td>
|
||||
<td>$144,500,437</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>6</th>
|
||||
<td>Sucker Punch</td>
|
||||
<td>7,200,000</td>
|
||||
<td>$89,792,502</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>7</th>
|
||||
<td>127 Hours</td>
|
||||
<td>6,910,000</td>
|
||||
<td>$60,738,797</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>8</th>
|
||||
<td>Rango</td>
|
||||
<td>6,480,000</td>
|
||||
<td>$245,155,348</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>9</th>
|
||||
<td>The King’s Speech</td>
|
||||
<td>6,250,000</td>
|
||||
<td>$414,211,549</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>10</th>
|
||||
<td>Harry Potter and the Deathly Hallows Part 2</td>
|
||||
<td>6,030,000</td>
|
||||
<td>$1,328,111,219</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<h3>A sub heading which is not as important as the second, but should be used with consideration</h3>
|
||||
<p>
|
||||
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.
|
||||
</p>
|
||||
|
||||
<blockquote>
|
||||
<p><em>This is a properly formatted blockquote, btw.</em> Measuring programming progress by lines of code is like measuring aircraft building progress by weight.</p>
|
||||
<footer>
|
||||
— <cite><a href="http://www.thegatesnotes.com">Bill Gates</a></cite>
|
||||
</footer>
|
||||
</blockquote>
|
||||
|
||||
<h4>A sub heading which is not as important as the second, but should be used with consideration</h4>
|
||||
<p>
|
||||
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.
|
||||
</p>
|
||||
<blockquote>
|
||||
<p>
|
||||
“Ooh - a blockquote! Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.”
|
||||
</p>
|
||||
</blockquote>
|
||||
|
||||
</BodySection>
|
||||
</Page>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export default KitchenSinkPage;
|
@ -11,6 +11,7 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<div id="app" class="c-app__wrapper">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -7,9 +7,13 @@
|
||||
* Version:
|
||||
* 1.0.0 - 2018/02/23
|
||||
*/
|
||||
.c-app__wrapper {
|
||||
min-height: 100vh;
|
||||
width: 100%;
|
||||
}
|
||||
.c-app {
|
||||
width: 100%;
|
||||
min-height: 100%;
|
||||
height: 100%;
|
||||
overflow-x: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
58
public/styles/components/_footer.scss
Normal file
58
public/styles/components/_footer.scss
Normal file
@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Footer
|
||||
* Styles for footer element
|
||||
*
|
||||
* Dependencies:
|
||||
* styles/settings/responsive.scss
|
||||
* styles/tools/_flex.scss
|
||||
* styles/tools/_responsive.scss
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/03/03
|
||||
*/
|
||||
$c-footer--text-color: black;
|
||||
$c-footer--background-color: white;
|
||||
|
||||
.c-footer {
|
||||
margin-top: 5em;
|
||||
width: 100%;
|
||||
background: $c-footer--background-color;
|
||||
@extend %t-flexbox;
|
||||
@include t-flex-wrap(wrap);
|
||||
}
|
||||
|
||||
.c-footer__copyright {
|
||||
color: $c-footer--text-color;
|
||||
}
|
||||
|
||||
.c-footer__copyright,
|
||||
.c-footer__links {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
.c-footer__link {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@include t-media-query($s-small-up) {
|
||||
.c-footer {
|
||||
@include t-flex-wrap(nowrap);
|
||||
}
|
||||
|
||||
.c-footer__copyright {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.c-footer__links {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.c-footer__link {
|
||||
display: inline;
|
||||
+ #{&}:before {
|
||||
content: " | ";
|
||||
}
|
||||
}
|
||||
}
|
12
public/styles/components/_menu.scss
Normal file
12
public/styles/components/_menu.scss
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
* Menu
|
||||
* Styles for the menu
|
||||
*
|
||||
* Dependencies:
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/03/01
|
||||
*/
|
||||
.c-menu {
|
||||
position: relative;
|
||||
}
|
@ -8,4 +8,5 @@
|
||||
* 1.0.0 - 2018/02/24
|
||||
*/
|
||||
.c-page {
|
||||
min-height: 100%;
|
||||
}
|
||||
|
@ -12,6 +12,7 @@
|
||||
*/
|
||||
.c-section--style-body {
|
||||
background: $s-color--background-default;
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
@include t-media-query($s-small-up) {
|
||||
|
@ -18,14 +18,3 @@
|
||||
.c-section--full-width {
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
.c-section--style-body {
|
||||
background: $s-color--background-default;
|
||||
}
|
||||
|
||||
@include t-media-query($s-small-up) {
|
||||
.c-section--style-body {
|
||||
margin-left: 4%;
|
||||
@include t-box-shadow(-10px, 10px, 0px, rgba(0, 0, 0, 0.5));
|
||||
}
|
||||
}
|
||||
|
@ -12,3 +12,8 @@ a {
|
||||
text-decoration: none;
|
||||
color: $s-color--links
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: $s-color--links-hover;
|
||||
}
|
||||
|
10
public/styles/elements/_table.scss
Normal file
10
public/styles/elements/_table.scss
Normal file
@ -0,0 +1,10 @@
|
||||
/*
|
||||
* Table Element Styles
|
||||
* Styles for body style section
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/03/02
|
||||
*/
|
||||
table {
|
||||
width: 100%;
|
||||
}
|
@ -4,7 +4,7 @@
|
||||
* Copyright 2018 Dominic "YouWish" Masters
|
||||
*
|
||||
* Version:
|
||||
* 0.0.1 - 2018/02/23
|
||||
* 0.0.1 - 2018/03/03
|
||||
*/
|
||||
|
||||
//Settings
|
||||
@ -32,15 +32,19 @@
|
||||
@import './elements/_button.scss';
|
||||
@import './elements/_headings.scss';
|
||||
@import './elements/_html.scss';
|
||||
@import './elements/_table.scss';
|
||||
|
||||
//Objects
|
||||
|
||||
//Components
|
||||
@import './components/_app.scss';
|
||||
@import './components/_footer.scss';
|
||||
@import './components/_header.scss';
|
||||
@import './components/_menu.scss';
|
||||
@import './components/_navbar.scss';
|
||||
@import './components/_page.scss';
|
||||
@import './components/_section.scss';
|
||||
@import './components/_section--style-body.scss';
|
||||
@import './components/_section--style-poly.scss';
|
||||
|
||||
//Utilities
|
||||
|
@ -11,6 +11,7 @@
|
||||
//Fonts
|
||||
$s-color--text: black;
|
||||
$s-color--links: #FC78DE;
|
||||
$s-color--links-hover: lighten($s-color--links, 20%);
|
||||
|
||||
//Backgrounds
|
||||
$s-color--background-default: white;
|
||||
|
Reference in New Issue
Block a user