Skip to content

Commit

Permalink
Fixed context hiding in light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
adamzap committed Jul 15, 2011
1 parent 21dbfe5 commit 2d21e30
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions src/landslide/themes/light/css/screen.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
body {
font: 14px "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
background: #778;
background: #fff;
padding: 0;
margin: 0;
overflow: hidden;
Expand All @@ -15,18 +15,24 @@ div.presentation {
background: inherit;
}

div.slides {
div.slides, body.expose div.slides.nocontext {
width: 100%;
height: 100%;
overflow: hidden;
left: 0;
top: 0;
position: absolute;
display: block;
background-color: #fff;
-webkit-transition: -webkit-transform 1s ease-in-out;
-moz-transition: -moz-transform 1s ease-in-out;
-o-transition: -o-transform 1s ease-in-out;
}


div.slides.nocontext {
width: 900px;
margin: 0 auto;
overflow: hidden;
position: relative;
left: auto;
top: auto;
}

div.slide {
Expand Down Expand Up @@ -290,6 +296,9 @@ body.expose div.slide {
-webkit-transform-origin: 0 0;
-o-transform: scale(.33, .33);
-o-transform-origin: 0 0;
-webkit-transition: none;
-moz-transition: none;
-o-transition: none;
cursor: pointer;
}

Expand Down

0 comments on commit 2d21e30

Please sign in to comment.