-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove MDL; /pages -> /routes; /public/index.ejs -> /index.ejs
...refactor website layout, update core/router.js and utils/routes-loader.js (route.page -> route.component), replace package.json files with index.js; update copyright messages in source files; remove FastClick, babel-polyfill, classnames and react-mdl dependencies. Closes #14, closes #4
- Loading branch information
Showing
46 changed files
with
316 additions
and
422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ | |
# Node.js and NPM | ||
node_modules | ||
npm-debug.log | ||
tools/node_modules | ||
tools/npm-debug.log | ||
*.tgz | ||
|
||
# Misc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "react-app", | ||
"version": "1.0.2", | ||
"version": "1.1.1", | ||
"description": "Boilerplate and tooling for JavaScript application development with React", | ||
"repository": "kriasoft/react-app", | ||
"author": "Kriasoft <[email protected]> (https://www.kriasoft.com)", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,3 @@ public/index.html | |
# Node.js and NPM | ||
node_modules | ||
npm-debug.log | ||
|
||
# Firebase | ||
firebase-debug.log |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,41 @@ | ||
/** | ||
* React Static Boilerplate | ||
* https://github.com/kriasoft/react-static-boilerplate | ||
* | ||
* Copyright © 2015-present Kriasoft, LLC. All rights reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE.txt file in the root directory of this source tree. | ||
*/ | ||
* React App SDK (https://github.com/kriasoft/react-app) | ||
* | ||
* Copyright © 2015-present Kriasoft, LLC. All rights reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE.txt file in the root directory of this source tree. | ||
*/ | ||
|
||
.row { | ||
padding: 40px; | ||
.header { | ||
background-color: #3f51b5; | ||
background-image: linear-gradient(-225deg,#3db0ef,#5e5bb7); | ||
} | ||
|
||
.container { | ||
margin: 0 auto; | ||
max-width: 1000px; | ||
} | ||
|
||
.title { | ||
display: block; | ||
padding: 2em 0 1.75em; | ||
color: #fff; | ||
text-align: center; | ||
text-decoration: none; | ||
font-weight: 100; | ||
font-size: 48px; | ||
font-family: Roboto, sans-serif; | ||
} | ||
|
||
@media screen and (max-width: 1024px) { | ||
.title strong { | ||
font-weight: 300; | ||
} | ||
|
||
.header { | ||
display: flex; | ||
} | ||
@media screen and (max-width: 1024px) { | ||
|
||
.row { | ||
padding: 0 16px; | ||
.title { | ||
font-size: 36px; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.