Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Dec 25, 2017
1 parent 4e44d06 commit 7559d92
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* set all elements to use border-box sizing. Yay! */
html {
box-sizing: border-box;
height: 100%;
height: 100vh;
}
*, *:before, *:after {
box-sizing: inherit;
Expand All @@ -12,17 +12,17 @@ html {
}

body {
width: 100%;
height: 100%;
width: 100vw;
height: 100vh;
margin: 0;
font-family: Helvetica, Arial, sans-serif;
overflow: hidden;
}

/* class to make something full size */
.hft-fullsize {
width: 100%;
height: 100%;
width: 100vw;
height: 100vh;
}
.hft-top-left {
position: absolute;
Expand All @@ -31,8 +31,8 @@ body {
}
/* class to make a column based flexbox with everything centered */
.hft-fullcenter {
width: 100%;
height: 100%;
width: 100vw;
height: 100vh;

display: -webkit-box;
display: -webkit-flex;
Expand Down Expand Up @@ -61,13 +61,13 @@ body {
*/
#hft-everything {
position: relative;
width: 100%;
height: 100%;
width: 100vw;
height: 100vh;
}
#hft-content {
position: relative;
width: 100%;
height: 100%;
width: 100vw;
height: 100vh;
}
/* left header area */
#hft-nameentry {
Expand All @@ -76,7 +76,7 @@ body {
left: 0px;
top: 0xp;
z-index: 5000;
width: 100%;
width: 100vw;
background: -webkit-linear-gradient(top, #f2f6f8 0%,#d8e1e7 88%,#b5c6d0 91%,#e0eff9 100%);
background: linear-gradient(to bottom, #f2f6f8 0%,#d8e1e7 88%,#b5c6d0 91%,#e0eff9 100%);
}
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3486,6 +3486,7 @@
};

var onPointerDown = function(e) {
e.preventDefault();
var padId = getClosestPad(e);
checkStart(padId, e);
};
Expand Down Expand Up @@ -3631,6 +3632,7 @@
//};

var handleButtonDown = function(e, buttonInfo) {
e.preventDefault();
addPointerId(buttonInfo, e.pointerId, e.timeStamp);
};

Expand Down

0 comments on commit 7559d92

Please sign in to comment.