cleanup css, remove hr, update dependecies
This commit is contained in:
parent
0acb98b7ce
commit
2f9824be85
|
@ -86,14 +86,19 @@ module.exports = function (grunt) {
|
|||
},
|
||||
requirejs: {
|
||||
compile: {
|
||||
options: eval(require('fs').readFileSync('./home.config.js').toString())
|
||||
options: readConfig('./home.config.js')
|
||||
},
|
||||
playground: {
|
||||
options: eval(require('fs').readFileSync('./playground.config.js').toString())
|
||||
options: readConfig('./home.config.js')
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
function readConfig(file) {
|
||||
/*eslint no-eval:0*/
|
||||
return eval(require('fs').readFileSync(file).toString());
|
||||
}
|
||||
|
||||
grunt.loadNpmTasks('grunt-browserify');
|
||||
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||
grunt.loadNpmTasks('grunt-contrib-requirejs');
|
||||
|
|
13
index.html
13
index.html
|
@ -22,6 +22,7 @@
|
|||
|
||||
<link rel="stylesheet" href="playground/css/playground.css"/>
|
||||
<link rel="stylesheet" href="playground/css/home.css"/>
|
||||
<!--<link rel="stylesheet" href="playground/dist/css/tidy.css"/>-->
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
@ -30,8 +31,7 @@
|
|||
<div class="nav-main">
|
||||
<div class="wrap">
|
||||
<a class="nav-home" href="index.html">
|
||||
<img class="nav-logo" src="https://wix.github.io/react-templates/img/logo-rt.svg" width="56"
|
||||
height="24">
|
||||
<img class="nav-logo" src="https://wix.github.io/react-templates/img/logo-rt.svg" width="56" height="24" />
|
||||
<span>React Templates</span>
|
||||
</a>
|
||||
<ul class="nav-site">
|
||||
|
@ -43,8 +43,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<a href="https://github.com/wix/react-templates">
|
||||
<img style="position: fixed; top: 0; right: 0; border: 0; z-index: 101" src="img/github-fork-me.png"
|
||||
alt="Fork me on GitHub">
|
||||
<img class="img-fork-github" src="img/github-fork-me.png" alt="Fork me on GitHub" />
|
||||
</a>
|
||||
|
||||
<div class="hero">
|
||||
|
@ -77,7 +76,6 @@
|
|||
Loading...
|
||||
</div>
|
||||
</section>
|
||||
<hr class="home-divider"/>
|
||||
</section>
|
||||
|
||||
<footer class="footer">
|
||||
|
@ -86,12 +84,7 @@
|
|||
</div>
|
||||
|
||||
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
|
||||
<!--<script src="playground/libs/ace-builds-1.1.8/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>-->
|
||||
<script src="playground/dist/rt-main.browser.min.js"></script>
|
||||
<!--<script data-main="playground/home-main.js" src="http://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.15/require.js"></script>-->
|
||||
<!--<script src="http://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.15/require.js"></script>-->
|
||||
<!--http://requirejs.org/docs/release/2.1.15/minified/require.js-->
|
||||
|
||||
<!--<script data-main="playground/home-main.js" src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.15/require.min.js"></script>-->
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.15/require.min.js"></script>
|
||||
<script src="playground/dist/home.min.js"></script>
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
"escodegen": "^1.4.1",
|
||||
"esprima": "^1.2.2",
|
||||
"lodash": "^2.4.1",
|
||||
"optionator": "^0.4.0",
|
||||
"optionator": "^0.5.0",
|
||||
"text-table": "^0.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -34,11 +34,11 @@
|
|||
"grunt": "^0.4.5",
|
||||
"grunt-browserify": "^3.2.0",
|
||||
"grunt-contrib-requirejs": "^0.4.4",
|
||||
"grunt-contrib-uglify": "^0.6.0",
|
||||
"grunt-contrib-uglify": "^0.7.0",
|
||||
"grunt-contrib-watch": "^0.6.1",
|
||||
"grunt-eslint": "^2.1.0",
|
||||
"grunt-eslint": "^3.0.0",
|
||||
"grunt-node-tap": "^0.1.61",
|
||||
"react": "^0.12.0",
|
||||
"react": "^0.12.2",
|
||||
"tape": "^3.0.2"
|
||||
},
|
||||
"keywords": [
|
||||
|
|
|
@ -57,12 +57,12 @@ define(['react', 'lodash', 'jquery', './libs/codemirror-4.8/lib/codemirror'], fu
|
|||
tt.appendChild(content.cloneNode(true));
|
||||
document.body.appendChild(tt);
|
||||
|
||||
function position(e) {
|
||||
function position(ev) {
|
||||
if (!tt.parentNode) {
|
||||
return CodeMirror.off(document, 'mousemove', position);
|
||||
}
|
||||
tt.style.top = Math.max(0, e.clientY - tt.offsetHeight - 5) + 'px';
|
||||
tt.style.left = (e.clientX + 5) + 'px';
|
||||
tt.style.top = Math.max(0, ev.clientY - tt.offsetHeight - 5) + 'px';
|
||||
tt.style.left = (ev.clientX + 5) + 'px';
|
||||
}
|
||||
CodeMirror.on(document, 'mousemove', position);
|
||||
position(e);
|
||||
|
|
|
@ -332,13 +332,13 @@ html {
|
|||
background: #f9f9f9
|
||||
}
|
||||
|
||||
.left {
|
||||
float: left
|
||||
}
|
||||
/*.left {*/
|
||||
/*float: left*/
|
||||
/*}*/
|
||||
|
||||
.right {
|
||||
float: right
|
||||
}
|
||||
/*.right {*/
|
||||
/*float: right*/
|
||||
/*}*/
|
||||
|
||||
.container {
|
||||
padding-top: 50px;
|
||||
|
@ -356,13 +356,13 @@ html {
|
|||
padding-right: 20px
|
||||
}
|
||||
|
||||
.skinnyWrap {
|
||||
width: 690px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px
|
||||
}
|
||||
/*.skinnyWrap {*/
|
||||
/*width: 690px;*/
|
||||
/*margin-left: auto;*/
|
||||
/*margin-right: auto;*/
|
||||
/*padding-left: 20px;*/
|
||||
/*padding-right: 20px*/
|
||||
/*}*/
|
||||
|
||||
hr {
|
||||
height: 0;
|
||||
|
@ -528,9 +528,9 @@ h1:hover .hash-link, h2:hover .hash-link, h3:hover .hash-link, h4:hover .hash-li
|
|||
background: #c5695c
|
||||
}
|
||||
|
||||
.buttons-unit.downloads {
|
||||
margin: 30px 0
|
||||
}
|
||||
/*.buttons-unit.downloads {*/
|
||||
/*margin: 30px 0*/
|
||||
/*}*/
|
||||
|
||||
.nav-docs {
|
||||
color: #2d2d2d;
|
||||
|
@ -603,53 +603,53 @@ h1:hover .hash-link, h2:hover .hash-link, h3:hover .hash-link, h4:hover .hash-li
|
|||
width: 960px
|
||||
}
|
||||
|
||||
.skinny-row:after {
|
||||
/**.skinny-row:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both
|
||||
}
|
||||
|
||||
.skinny-col {
|
||||
**/
|
||||
/**.skinny-col {
|
||||
float: left;
|
||||
margin-left: 40px;
|
||||
width: 305px
|
||||
}
|
||||
|
||||
.skinny-col:first-child {
|
||||
**/
|
||||
/**.skinny-col:first-child {
|
||||
margin-left: 0
|
||||
}
|
||||
|
||||
.marketing-row {
|
||||
**/
|
||||
/**.marketing-row {
|
||||
margin: 50px 0
|
||||
}
|
||||
|
||||
.marketing-row:after {
|
||||
**/
|
||||
/**.marketing-row:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both
|
||||
}
|
||||
|
||||
.marketing-col {
|
||||
**/
|
||||
/**.marketing-col {
|
||||
float: left;
|
||||
margin-left: 40px;
|
||||
width: 280px
|
||||
}
|
||||
|
||||
.marketing-col h3 {
|
||||
**/
|
||||
/**.marketing-col h3 {
|
||||
color: #2d2d2d;
|
||||
font-size: 24px;
|
||||
font-weight: normal;
|
||||
text-transform: uppercase
|
||||
}
|
||||
|
||||
.marketing-col p {
|
||||
**/
|
||||
/**.marketing-col p {
|
||||
font-size: 16px
|
||||
}
|
||||
|
||||
.marketing-col:first-child {
|
||||
**/
|
||||
/**.marketing-col:first-child {
|
||||
margin-left: 0
|
||||
}
|
||||
|
||||
**/
|
||||
h3 {
|
||||
color: #2d2d2d;
|
||||
font-size: 24px;
|
||||
|
@ -780,35 +780,35 @@ section.black content {
|
|||
padding-bottom: 40px
|
||||
}
|
||||
|
||||
.jsxCompiler {
|
||||
margin: 0 auto;
|
||||
padding-top: 20px;
|
||||
width: 1220px
|
||||
}
|
||||
/*.jsxCompiler {*/
|
||||
/*margin: 0 auto;*/
|
||||
/*padding-top: 20px;*/
|
||||
/*width: 1220px*/
|
||||
/*}*/
|
||||
|
||||
.jsxCompiler label.compiler-option {
|
||||
display: block;
|
||||
margin-top: 5px
|
||||
}
|
||||
/*.jsxCompiler label.compiler-option {*/
|
||||
/*display: block;*/
|
||||
/*margin-top: 5px*/
|
||||
/*}*/
|
||||
|
||||
.jsxCompiler #jsxCompiler {
|
||||
margin-top: 20px
|
||||
}
|
||||
/*.jsxCompiler #jsxCompiler {*/
|
||||
/*margin-top: 20px*/
|
||||
/*}*/
|
||||
|
||||
.jsxCompiler .playgroundPreview {
|
||||
padding: 0;
|
||||
width: 600px
|
||||
}
|
||||
/*.jsxCompiler .playgroundPreview {*/
|
||||
/*padding: 0;*/
|
||||
/*width: 600px*/
|
||||
/*}*/
|
||||
|
||||
.jsxCompiler .playgroundPreview pre {
|
||||
font-family: 'source-code-pro', Menlo, Consolas, 'Courier New', monospace;
|
||||
font-size: 0.8em;
|
||||
line-height: 1.5
|
||||
}
|
||||
/*.jsxCompiler .playgroundPreview pre {*/
|
||||
/*font-family: 'source-code-pro', Menlo, Consolas, 'Courier New', monospace;*/
|
||||
/*font-size: 0.8em;*/
|
||||
/*line-height: 1.5*/
|
||||
/*}*/
|
||||
|
||||
.jsxCompiler .playgroundError {
|
||||
padding: 15px 20px
|
||||
}
|
||||
/*.jsxCompiler .playgroundError {*/
|
||||
/*padding: 15px 20px*/
|
||||
/*}*/
|
||||
|
||||
.button {
|
||||
background: -webkit-linear-gradient(#9a9a9a, #646464);
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
|
||||
/* uncss:ignore */
|
||||
.playground-error {
|
||||
color: red;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* uncss:ignore */
|
||||
.cm-s-solarized .editor-error {
|
||||
background-color: #F0F079;
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue