more css changes

This commit is contained in:
ksjdragon 2016-02-11 17:26:38 -05:00 committed by yamanq
parent d1e2d7053e
commit 549d31d4d1
2 changed files with 22 additions and 10 deletions

View File

@ -62,13 +62,11 @@ h1 {
.login-display-name { .login-display-name {
display: none !important; display: none !important;
} }
.login-button { .login-button {
margin-left: 20% !important; margin-left: 20% !important;
width: 100% !important; width: 100% !important;
height: 28px !important; height: 28px !important;
} }
.eachDay { .eachDay {
position: relative; position: relative;
font-family: Lato; font-family: Lato;
@ -91,11 +89,12 @@ h1 {
} }
.eachDay:hover { .eachDay:hover {
-webkit-transform: scale(1.05); -webkit-transform: scale(1.02);
-moz-transform: scale(1.05); -moz-transform: scale(1.02);
-ms-transform: scale(1.05); -ms-transform: scale(1.02);
transform: scale(1.05); transform: scale(1.02);
} }
.recent { .recent {
color: #353535; color: #353535;
background-color: #5BEF78; background-color: #5BEF78;
@ -118,7 +117,7 @@ h1 {
.pulltab { .pulltab {
position:fixed; position:fixed;
margin-top:-1%; margin-top:0%;
width: 0; width: 0;
height: 0; height: 0;
border-top: 40px solid transparent; border-top: 40px solid transparent;
@ -141,7 +140,7 @@ h1 {
} }
.sidebar { .sidebar {
position: fixed; position:absolute;
min-height:100%; min-height:100%;
background-color: #FF746B; background-color: #FF746B;
@ -166,9 +165,11 @@ h1 {
} }
.fa { .fa {
float:right;
clear:right;
position: absolute; position: absolute;
top: 3%; top: 3%;
right: 2.5%; right: 2.3%;
-webkit-transition: color 0.5s ease; -webkit-transition: color 0.5s ease;
-moz-transition: color 0.5s ease; -moz-transition: color 0.5s ease;

View File

@ -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) { function getScale(index, start) {
return Math.abs(index-start) * -0.2 + 1.5 return Math.abs(index-start) * -0.2 + 1.5
} }*/
Template.phone.helpers({ Template.phone.helpers({