-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from fmichonneau/upgrade-bootstrap
Upgrade bootstrap
- Loading branch information
Showing
17 changed files
with
8,378 additions
and
6,365 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* Printing */ | ||
@media print { | ||
h1 { | ||
font-size: 16pt; | ||
line-height: 18pt; | ||
} | ||
|
||
h2,h3,h4,h5,h6 { | ||
font-size: 12pt; | ||
line-height: 13pt; | ||
} | ||
|
||
/* Objectives, Callout Box and Challenges */ | ||
.objectives, .keypoints { | ||
background-color: unset; | ||
border: 5px solid; | ||
} | ||
|
||
.callout { | ||
background-color: unset; | ||
border: 5px solid; | ||
} | ||
|
||
.challenge { | ||
background-color: unset; | ||
border: 5px solid; | ||
} | ||
|
||
p,ul,ol,li,pre,code { | ||
font-size: 8pt; | ||
line-height: 9pt; | ||
} | ||
|
||
code { | ||
padding: 0px; | ||
border: 0px; | ||
background: unset; | ||
} | ||
|
||
pre.sourceCode::before, | ||
pre.input::before. { | ||
content: "Input:"; | ||
} | ||
|
||
pre.output::before { | ||
content: "Output:"; | ||
} | ||
|
||
pre.error::before { | ||
content: "Error:"; | ||
} | ||
|
||
pre.sourceCode code, | ||
pre.input code, | ||
pre.output code, | ||
pre.error code { | ||
display: block; | ||
margin-top: 1em; | ||
margin-left: 2em; | ||
} | ||
|
||
#github-ribbon { | ||
display: none; | ||
} | ||
|
||
.banner { | ||
display: none; | ||
} | ||
|
||
.footer { | ||
display: none; | ||
} | ||
} | ||
|
Oops, something went wrong.