Skip to content

Commit

Permalink
Improve figures
Browse files Browse the repository at this point in the history
Figures should be centered
and not overflow the screen.
  • Loading branch information
Raniere Silva committed Apr 19, 2015
1 parent d576934 commit 0c3058b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions css/swc.css
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,29 @@ blockquote.testimonial cite {
font-size: inherit;
}

/* Images
*
* Rules from http://getbootstrap.com/css/#images-responsive.
*
* This is compatible with Pandoc behavior for HTML and HTML5. */
article img {
max-width: 100%;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
}

article div.figure,
article figure {
text-align: center;
}

article p.caption::before,
article figcaption::before {
content: "Figure: ";
}

/* Main body of pages. */
body {
font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
Expand Down

0 comments on commit 0c3058b

Please sign in to comment.