Skip to content

Commit

Permalink
writer updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ogewan committed Jul 7, 2015
1 parent e0053ac commit 7a5e5ac
Show file tree
Hide file tree
Showing 6 changed files with 652 additions and 183 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ attribute to preload images but not implemented yet

**1.9.2** Major bugfixes, including null and undefined property checking

### comix-ngn Writer version 1.1.0 (beta)
### comix-ngn Writer version 1.1.5 (beta)
**0.5.0**: "Initial Setup, Versioning

**0.8.0**: Huge implementations, Object config by dynamic form injection for Page and Chapter, Setting config compartmentalized, design config added
Expand All @@ -144,5 +144,7 @@ attribute to preload images but not implemented yet

**1.1.0**: Setup for refactoring, all JS re-specified and deferred, js enclosed in closure

**1.1.5**: Refactoring begun, all dependicies included and deferred, writer has been beautified for legibility, but there is now writer.min.html which is the compressed version

### comix-ngn Pyoofreader Version 0.1.0 (beta)
**0.1.0**: Implemented version, counts page dif and warns of Mismatch
2 changes: 1 addition & 1 deletion comixngn.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function N(){return 0};/*null function*/
if(void 0===$GPC){var $GPC=0;}
cG.root = '';
cG.cPanel = cG.panel||{};
cG.info = {vix: "1.9.2",vwr: "1.1.0",vpr: "0.1.0"};
cG.info = {vix: "1.9.2",vwr: "1.1.5",vpr: "0.1.0"};
/*rollbar*/
var _rollbarConfig = _rollbarConfig||{
accessToken: "3e8e8ecb63a04b5798e1d02adf2608cb",
Expand Down
2 changes: 1 addition & 1 deletion comixngn.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

94 changes: 94 additions & 0 deletions tools/flatty.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
html,
body {
min-height: 100%;
}
.humane,
.humane-flatty {
position: fixed;
-moz-transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
z-index: 100000;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.humane,
.humane-flatty {
font-family: Helvetica Neue, Helvetica, san-serif;
font-size: 16px;
top: 0;
left: 30%;
opacity: 0;
width: 40%;
color: #444;
padding: 10px;
text-align: center;
background-color: #fff;
-webkit-border-bottom-right-radius: 3px;
-webkit-border-bottom-left-radius: 3px;
-moz-border-radius-bottomright: 3px;
-moz-border-radius-bottomleft: 3px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.5);
box-shadow: 0 1px 2px rgba(0,0,0,0.5);
-moz-transform: translateY(-100px);
-webkit-transform: translateY(-100px);
-ms-transform: translateY(-100px);
-o-transform: translateY(-100px);
transform: translateY(-100px);
}
.humane p,
.humane-flatty p,
.humane ul,
.humane-flatty ul {
margin: 0;
padding: 0;
}
.humane ul,
.humane-flatty ul {
list-style: none;
}
.humane.humane-flatty-info,
.humane-flatty.humane-flatty-info {
background-color: #3498db;
color: #FFF;
}
.humane.humane-flatty-success,
.humane-flatty.humane-flatty-success {
background-color: #18bc9c;
color: #FFF;
}
.humane.humane-flatty-error,
.humane-flatty.humane-flatty-error {
background-color: #e74c3c;
color: #FFF;
}
.humane-animate,
.humane-flatty.humane-flatty-animate {
opacity: 1;
-moz-transform: translateY(0);
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
.humane-animate:hover,
.humane-flatty.humane-flatty-animate:hover {
opacity: 0.7;
}
.humane-js-animate,
.humane-flatty.humane-flatty-js-animate {
opacity: 1;
-moz-transform: translateY(0);
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
.humane-js-animate:hover,
.humane-flatty.humane-flatty-js-animate:hover {
opacity: 0.7;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
}
Loading

0 comments on commit 7a5e5ac

Please sign in to comment.