Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
| Download
Project: KOB1
Views: 16994/* Default Print Stylesheet Template1by Rob Glazebrook of CSSnewbie.com2Last Updated: June 4, 200834Feel free (nay, compelled) to edit, append, and5manipulate this file as you see fit. */678@media print {910/* SECTION 1: Set default width, margin, float, and11background. This prevents elements from extending12beyond the edge of the printed page, and prevents13unnecessary background images from printing */14html {15background: #fff;16width: auto;17height: auto;18overflow: visible;19}20body {21background: #fff;22font-size: 20pt;23width: auto;24height: auto;25border: 0;26margin: 0 5%;27padding: 0;28overflow: visible;29float: none !important;30}3132/* SECTION 2: Remove any elements not needed in print.33This would include navigation, ads, sidebars, etc. */34.nestedarrow,35.controls,36.fork-reveal,37.share-reveal,38.state-background,39.reveal .progress,40.reveal .backgrounds,41.reveal .slide-number {42display: none !important;43}4445/* SECTION 3: Set body font face, size, and color.46Consider using a serif font for readability. */47body, p, td, li, div {48font-size: 20pt!important;49font-family: Georgia, "Times New Roman", Times, serif !important;50color: #000;51}5253/* SECTION 4: Set heading font face, sizes, and color.54Differentiate your headings from your body text.55Perhaps use a large sans-serif for distinction. */56h1,h2,h3,h4,h5,h6 {57color: #000!important;58height: auto;59line-height: normal;60font-family: Georgia, "Times New Roman", Times, serif !important;61text-shadow: 0 0 0 #000 !important;62text-align: left;63letter-spacing: normal;64}65/* Need to reduce the size of the fonts for printing */66h1 { font-size: 28pt !important; }67h2 { font-size: 24pt !important; }68h3 { font-size: 22pt !important; }69h4 { font-size: 22pt !important; font-variant: small-caps; }70h5 { font-size: 21pt !important; }71h6 { font-size: 20pt !important; font-style: italic; }7273/* SECTION 5: Make hyperlinks more usable.74Ensure links are underlined, and consider appending75the URL to the end of the link for usability. */76a:link,77a:visited {78color: #000 !important;79font-weight: bold;80text-decoration: underline;81}82/*83.reveal a:link:after,84.reveal a:visited:after {85content: " (" attr(href) ") ";86color: #222 !important;87font-size: 90%;88}89*/909192/* SECTION 6: more reveal.js specific additions by @skypanther */93ul, ol, div, p {94visibility: visible;95position: static;96width: auto;97height: auto;98display: block;99overflow: visible;100margin: 0;101text-align: left !important;102}103.reveal pre,104.reveal table {105margin-left: 0;106margin-right: 0;107}108.reveal pre code {109padding: 20px;110border: 1px solid #ddd;111}112.reveal blockquote {113margin: 20px 0;114}115.reveal .slides {116position: static !important;117width: auto !important;118height: auto !important;119120left: 0 !important;121top: 0 !important;122margin-left: 0 !important;123margin-top: 0 !important;124padding: 0 !important;125zoom: 1 !important;126127overflow: visible !important;128display: block !important;129130text-align: left !important;131-webkit-perspective: none;132-moz-perspective: none;133-ms-perspective: none;134perspective: none;135136-webkit-perspective-origin: 50% 50%;137-moz-perspective-origin: 50% 50%;138-ms-perspective-origin: 50% 50%;139perspective-origin: 50% 50%;140}141.reveal .slides section {142visibility: visible !important;143position: static !important;144width: auto !important;145height: auto !important;146display: block !important;147overflow: visible !important;148149left: 0 !important;150top: 0 !important;151margin-left: 0 !important;152margin-top: 0 !important;153padding: 60px 20px !important;154z-index: auto !important;155156opacity: 1 !important;157158page-break-after: always !important;159160-webkit-transform-style: flat !important;161-moz-transform-style: flat !important;162-ms-transform-style: flat !important;163transform-style: flat !important;164165-webkit-transform: none !important;166-moz-transform: none !important;167-ms-transform: none !important;168transform: none !important;169170-webkit-transition: none !important;171-moz-transition: none !important;172-ms-transition: none !important;173transition: none !important;174}175.reveal .slides section.stack {176padding: 0 !important;177}178.reveal section:last-of-type {179page-break-after: avoid !important;180}181.reveal section .fragment {182opacity: 1 !important;183visibility: visible !important;184185-webkit-transform: none !important;186-moz-transform: none !important;187-ms-transform: none !important;188transform: none !important;189}190.reveal section img {191display: block;192margin: 15px 0px;193background: rgba(255,255,255,1);194border: 1px solid #666;195box-shadow: none;196}197198.reveal section small {199font-size: 0.8em;200}201202}203204205