some mure css

This commit is contained in:
ksjdragon 2016-02-11 17:13:48 -05:00 committed by yamanq
parent 3014336d6c
commit d1e2d7053e
2 changed files with 12 additions and 25 deletions

View File

@ -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%;

View File

@ -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
}