Skip to content

Commit

Permalink
web build
Browse files Browse the repository at this point in the history
  • Loading branch information
odrick committed Mar 6, 2019
1 parent 6bb2d00 commit 5e46874
Show file tree
Hide file tree
Showing 6 changed files with 1,216 additions and 53 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ package-lock.json
.DS_Store
/index.js
/index.js.map
/dist/web
/dist/app
/electron/www
168 changes: 126 additions & 42 deletions dist/web/static/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,36 +65,9 @@ html, body {
width: 100px;
}

.main-header-donate {
padding-top: 10px;
position: absolute;
left: 50%;
top: 0;
margin-left: -46px;
}

.main-header-donate img {
visibility: hidden;
}

.main-header-fb {
float: right;
padding-right: 8px;
}

.main-header-fb > div {
line-height: 20px;
}

.main-header-twitter {
.main-header-controls {
float: right;
padding-right: 8px;
line-height: 20px;
padding-top: 25px;
}

.main-header-twitter a {
visibility: hidden;
margin-right: 16px;
}

.main-header-about {
Expand Down Expand Up @@ -122,7 +95,7 @@ html, body {

.images-list {
display: block;
width: 380px;
width: 400px;
height: 100%;
float: left;
text-align: left;
Expand All @@ -132,12 +105,6 @@ html, body {
box-shadow: 1px 1px 1px 1px rgba(0,0,0,.2);
}

.results-view {
display: block;
height: 100%;
min-width: 640px;
}

.props-list {
display: block;
width: 300px;
Expand Down Expand Up @@ -375,13 +342,20 @@ html, body {
border-style: solid;
}

.results-view {
display: block;
height: 100%;
min-width: 640px;
}

.results-view-wrapper {
height: 100%;
width: -webkit-calc(100% - 640px);
width: -moz-calc(100% - 640px);
width: -o-calc(100% - 640px);
width: calc(100% - 640px);
width: -webkit-calc(100% - 720px);
width: -moz-calc(100% - 720px);
width: -o-calc(100% - 720px);
width: calc(100% - 720px);
margin: auto;
margin-left: 410px;
box-shadow: 1px 0px 0px 0px rgba(0,0,0,.2);
}

Expand All @@ -394,9 +368,13 @@ html, body {
}

.results-view-footer {
display: block;
display: inline-block;
width: -webkit-calc(100% - 20px);
width: -moz-calc(100% - 20px);
width: -o-calc(100% - 20px);
width: calc(100% - 20px);
min-width: 560px;
height: 50px;
margin-left: 80px;
box-sizing: border-box;
padding: 8px;
vertical-align: bottom;
Expand All @@ -405,6 +383,10 @@ html, body {
box-shadow: 0px 1px 0px 0px rgba(0,0,0,.2);
}

.results-view-footer .btn {
margin-left: 4px;
}

.results-view-footer hr {
margin-top: 0;
border: none;
Expand Down Expand Up @@ -880,4 +862,106 @@ html, body {
border-style: solid;
margin-left: 8px;
margin-right: 8px;
}

.sheet-splitter-shader {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.35);
}

.sheet-splitter-content {
width: 700px;
height: 500px;
background: #fff;
margin: auto;
margin-top: 86px;
font-size: 14px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
border: 1px solid #ccc;
padding: 16px;
text-align: left;
box-shadow: 1px 1px 1px 1px rgba(0,0,0,.2);
}

.sheet-splitter-content .btn {
min-width: 50px;
margin-left: 5px;
margin-right: 5px;
}

.sheet-splitter-top {
text-align: center;
padding-bottom: 8px;
}

.sheet-splitter-top table {
margin: auto;
}

.sheet-splitter-info-text {
width: 200px;
height: 20px;
display: inline-block;
padding: 4px;
padding-top: 1px;
overflow: hidden;
box-sizing: border-box;
font-size: 14px;
text-align: left;
}

.sheet-splitter-view {
border-width: 1px;
border-style: solid;
border-color: #333;
width: 500px;
height: 420px;
float: left;
overflow: auto;
}

.sheet-splitter-view canvas {
border: 1px dotted #333;
margin: 4px;
}

.sheet-splitter-controls {
float: right;
width: 175px;
height: 420px;
padding-right: 10px;
}

.sheet-splitter-controls select {
width: 104px;
}

.sheet-splitter-controls input {
width: 100px;
}

.sheet-splitter-controls td {
font-weight: bold;
padding: 2px;
min-width: 70px;
white-space: nowrap;
text-align: left;
font-size: 12px;
}

.sheet-splitter-bottom {
clear: both;
text-align: center;
padding: 8px;
margin-top: 10px;
}
Loading

0 comments on commit 5e46874

Please sign in to comment.