diff --git a/scheduleac/client/client.css b/scheduleac/client/client.css index 993169d..a694302 100644 --- a/scheduleac/client/client.css +++ b/scheduleac/client/client.css @@ -8,12 +8,11 @@ html { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; - overflow: hidden; } body { background-image: url('./bg.png'); - overflow: hidden; + overflow-x: hidden; } h1 { @@ -63,11 +62,13 @@ h1 { .login-display-name { display: none !important; } + .login-button { margin-left: 20% !important; width: 100% !important; height: 28px !important; } + .eachDay { position: relative; font-family: Lato; @@ -90,12 +91,11 @@ h1 { } .eachDay:hover { - -webkit-transform: scale(1.02); - -moz-transform: scale(1.02); - -ms-transform: scale(1.02); - transform: scale(1.02); + -webkit-transform: scale(1.05); + -moz-transform: scale(1.05); + -ms-transform: scale(1.05); + transform: scale(1.05); } - .recent { color: #353535; background-color: #5BEF78; @@ -117,8 +117,8 @@ h1 { } .pulltab { - position:absolute; - margin-top:4%; + position:fixed; + margin-top:-1%; width: 0; height: 0; border-top: 40px solid transparent; @@ -141,7 +141,7 @@ h1 { } .sidebar { - position:absolute; + position: fixed; min-height:100%; background-color: #FF746B; @@ -155,7 +155,7 @@ h1 { font-family: Lato; min-height: 100%; min-width: 17%; - position: absolute; + position: fixed; top: 0; left: -20%; @@ -166,9 +166,7 @@ h1 { } .fa { - float:right; - clear:right; - position: fixed; + position: absolute; top: 3%; right: 2.5%; diff --git a/scheduleac/client/client.js b/scheduleac/client/client.js index 297fac3..bab4bec 100644 --- a/scheduleac/client/client.js +++ b/scheduleac/client/client.js @@ -144,17 +144,6 @@ Template.sidebar.events({ } }) -Template.day.rendered = function() { - $('.eachDay').each(function ( index ) { - $('.eachDay').eq(index) - .css("z-index", 100-index) - .css("-webkit-transform", "scale(" + getScale(index, 0) + ")") - .css("-moz-transform", "scale(" + getScale(index, 0) + ")") - .css("-ms-transform", "scale(" + getScale(index, 0) + ")") - .css("transform", "scale(" + getScale(index, 0) + ")"); - }) -} - function getScale(index, start) { return Math.abs(index-start) * -0.2 + 1.5 }