Skip to content

Commit

Permalink
Fix: styles for panel heading
Browse files Browse the repository at this point in the history
There's a note in
swcarpentry/DEPRECATED-lesson-template#182
explaining why we need to fix style for panel heading.
  • Loading branch information
pbanaszkiewicz authored and Raniere Silva committed Mar 21, 2015
1 parent 5c28510 commit 32544f5
Showing 1 changed file with 26 additions and 24 deletions.
50 changes: 26 additions & 24 deletions css/swc.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,32 +22,34 @@ h2 code, h3 code, h4 code, h5 code, h6 code {
font-size: inherit;
}

/* Objectives, Callout Box and Challenges */
.objectives, .keypoints, .callout, .challenge {
margin: 1em 0;
padding: 0em 1em;
}

.objectives h2:first-child,
.keypoints h2:first-child,
.callout h2:first-child,
.challenge h2:first-child {
margin-top: 10px;
}

.objectives, .keypoints {
background-color: azure;
border: 5px solid azure;
}

.callout {
background-color: #EEE;
border: 5px solid #EEE;
/* Objectives, Callout Box, Challenges and prerequisites are now rendered as
Bootstrap panels. There's a pandoc error with rendering headers nested under
blockquote: these headers don't preserve attributes. It means we have to
manually set styles for these headers to look like Bootstrap's "panel-title"
class. */
.panel-heading h1,
.panel-heading h2,
.panel-heading h3,
.panel-heading h4,
.panel-heading h5,
.panel-heading h6 {
margin-top: 0px;
margin-bottom: 0px;
color: inherit;
font-size: 16px;
font-family: inherit;
font-weight: 500;
line-height: 1.1;
}

.challenge {
background-color: #CCFFCC;
border: 5px solid #CCFFCC;
/* Make space between the glyphicon and the rest of the header */
.panel-heading h1 span,
.panel-heading h2 span,
.panel-heading h3 span,
.panel-heading h4 span,
.panel-heading h5 span,
.panel-heading h6 span {
padding-right: 10px;
}

/* Comments in code. */
Expand Down

0 comments on commit 32544f5

Please sign in to comment.