From 549d31d4d14264de630f840e4ab2ddb13f31987d Mon Sep 17 00:00:00 2001 From: ksjdragon Date: Thu, 11 Feb 2016 17:26:38 -0500 Subject: [PATCH] more css changes --- scheduleac/client/client.css | 19 ++++++++++--------- scheduleac/client/client.js | 13 ++++++++++++- 2 files changed, 22 insertions(+), 10 deletions(-) diff --git a/scheduleac/client/client.css b/scheduleac/client/client.css index a694302..33f4ef3 100644 --- a/scheduleac/client/client.css +++ b/scheduleac/client/client.css @@ -62,13 +62,11 @@ 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; @@ -91,11 +89,12 @@ h1 { } .eachDay:hover { - -webkit-transform: scale(1.05); - -moz-transform: scale(1.05); - -ms-transform: scale(1.05); - transform: scale(1.05); + -webkit-transform: scale(1.02); + -moz-transform: scale(1.02); + -ms-transform: scale(1.02); + transform: scale(1.02); } + .recent { color: #353535; background-color: #5BEF78; @@ -118,7 +117,7 @@ h1 { .pulltab { position:fixed; - margin-top:-1%; + margin-top:0%; width: 0; height: 0; border-top: 40px solid transparent; @@ -141,7 +140,7 @@ h1 { } .sidebar { - position: fixed; + position:absolute; min-height:100%; background-color: #FF746B; @@ -166,9 +165,11 @@ h1 { } .fa { + float:right; + clear:right; position: absolute; top: 3%; - right: 2.5%; + right: 2.3%; -webkit-transition: color 0.5s ease; -moz-transition: color 0.5s ease; diff --git a/scheduleac/client/client.js b/scheduleac/client/client.js index bab4bec..e1e5f0d 100644 --- a/scheduleac/client/client.js +++ b/scheduleac/client/client.js @@ -144,9 +144,20 @@ 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 -} +}*/ Template.phone.helpers({