Skip to content

Commit

Permalink
We should use blockquote tags instead of q with display block
Browse files Browse the repository at this point in the history
  • Loading branch information
hsablonniere committed Mar 28, 2012
1 parent 69b2ef4 commit ba5ac15
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions template.html
Expand Up @@ -28,9 +28,9 @@ <h3>An incremental list</h3>
</section>

<section>
<q>
<blockquote>
Who's brave enough to fly into something we all keep calling a death sphere?
</q>
</blockquote>
</section>

<section>
Expand Down Expand Up @@ -89,15 +89,19 @@ <h2>End!</h2>
font-size: 50px;
}

q {
display: block;
width: 100%;
blockquote {
height: 100%;
background-color: black;
color: white;
font-size: 60px;
padding: 50px;
}
blockquote:before {
content: open-quote;
}
blockquote:after {
content: close-quote;
}

/* Figures are displayed full-page, with the caption
on top of the image/video */
Expand Down

0 comments on commit ba5ac15

Please sign in to comment.