note style for paragraphs; better image fit; bg behavior in list and full views equalized by transform:scale magic
This commit is contained in:
parent
ce5a417857
commit
cc5549fc42
|
@ -42,6 +42,9 @@ BODY {
|
||||||
.slide P {
|
.slide P {
|
||||||
margin:0 0 45px;
|
margin:0 0 45px;
|
||||||
}
|
}
|
||||||
|
.slide P.note {
|
||||||
|
color:#888;
|
||||||
|
}
|
||||||
.slide A {
|
.slide A {
|
||||||
border-bottom:0.1em solid;
|
border-bottom:0.1em solid;
|
||||||
color:#0174A7;
|
color:#0174A7;
|
||||||
|
@ -177,6 +180,7 @@ BODY {
|
||||||
top:0;
|
top:0;
|
||||||
left:0;
|
left:0;
|
||||||
z-index:-1;
|
z-index:-1;
|
||||||
|
width:100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Shout */
|
/* Shout */
|
||||||
|
@ -295,12 +299,12 @@ BODY {
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
.full .slide {
|
.full .slide {
|
||||||
position:absolute;
|
position:relative;
|
||||||
visibility:hidden;
|
visibility:hidden;
|
||||||
}
|
}
|
||||||
.full .slide:target {
|
.full .slide:target {
|
||||||
visibility:visible;
|
visibility:visible;
|
||||||
}
|
}
|
||||||
.full .slide:after {
|
.full .slide:after {
|
||||||
position:absolute;
|
position:absolute;
|
||||||
bottom:85px;
|
bottom:85px;
|
||||||
|
@ -312,6 +316,13 @@ BODY {
|
||||||
.full .slide.shout:after {
|
.full .slide.shout:after {
|
||||||
content:'';
|
content:'';
|
||||||
}
|
}
|
||||||
|
.full .slide SECTION {
|
||||||
|
-webkit-transform:scale(1);
|
||||||
|
-moz-transform:scale(1);
|
||||||
|
-ms-transform:scale(1);
|
||||||
|
-o-transform:scale(1);
|
||||||
|
transform:scale(1);
|
||||||
|
}
|
||||||
|
|
||||||
/* Progress */
|
/* Progress */
|
||||||
.full .progress {
|
.full .progress {
|
||||||
|
|
Loading…
Reference in New Issue