Skip to content
Snippets Groups Projects
Commit 32544f55 authored by Piotr Banaszkiewicz's avatar Piotr Banaszkiewicz Committed by Raniere Silva
Browse files

Fix: styles for panel heading

There's a note in
https://github.com/swcarpentry/lesson-template/pull/182
explaining why we need to fix style for panel heading.
parent 5c28510c
Branches
Tags
No related merge requests found
......@@ -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. */
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment