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 {
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;

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