temporarily setting min-height on the body

This commit is contained in:
Sacha Greif 2012-09-21 18:51:03 +09:00
parent dcdc0ffc3f
commit 019ba53740
3 changed files with 9 additions and 7 deletions

View file

@ -109,28 +109,29 @@ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav,
/* line 1, ../sass/partials/_main.scss */
body {
background: #e9f3f7;
background: #edf5f8; }
background: #edf5f8;
min-height: 1500px; }
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
/* line 7, ../sass/partials/_main.scss */
/* line 8, ../sass/partials/_main.scss */
body {
background-size: 10px 10px; } }
/* line 12, ../sass/partials/_main.scss */
/* line 13, ../sass/partials/_main.scss */
#spinner {
height: 100%;
width: 100%;
position: fixed;
z-index: 1000; }
/* line 18, ../sass/partials/_main.scss */
/* line 19, ../sass/partials/_main.scss */
.debug {
display: none; }
/* line 21, ../sass/partials/_main.scss */
/* line 22, ../sass/partials/_main.scss */
.hidden {
display: none; }
/* line 24, ../sass/partials/_main.scss */
/* line 25, ../sass/partials/_main.scss */
.overlay {
position: fixed;
top: 0;

View file

@ -2,6 +2,7 @@ body{
// background:#e9f3f7 url("/img/bg.png") top center;
background:#e9f3f7;
background:#edf5f8;
min-height:1500px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5){
body{

View file

@ -37,6 +37,6 @@ var Scoring = {
// tick every second
Meteor.Cron = new Cron(1000);
// update scores every 10 seconds
Meteor.Cron.addJob(3, function() {
Meteor.Cron.addJob(30, function() {
Scoring.updateScores();
})