Last active
October 5, 2016 20:21
-
-
Save jonathanpberger/6d565e5da95e7ff678f275a1fbbfdb8b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/* colors | |
NYCDA yellow: #FFCB04 | |
*/ | |
/* Header/Footer stuff */ | |
div.my-footer { | |
background-color: #FFCB04; | |
color: #333; | |
font-weight: 500; | |
position: absolute; | |
bottom: 0px; | |
left: 0px; | |
height: 40px; | |
width: 100%; | |
} | |
div.my-footer span { | |
font-size: 10pt; | |
position: absolute; | |
bottom: 10px; | |
} | |
div.my-footer span.left { | |
left: 15px; | |
} | |
div.my-footer span.right { | |
right: 15px; | |
} | |
/* ###### Deck Styles */ | |
.remark-slide-content { | |
background-size: cover; | |
background-color: #fafafa; | |
color: #333; | |
text-shadow: 1px 1px 1px #fff; | |
} | |
.meta { | |
color: #eee; | |
background-color: #333; | |
} | |
body { | |
font-family: 'Eczar', serif; | |
// font-family: 'Fruktur', cursive; | |
font-family: 'Work Sans', sans-serif; | |
} | |
h1, h2, h3, .f1, .f2, .f3 { | |
text-shadow: -2px -1px 2px #fff; | |
// font-family: 'Fruktur'; | |
font-family: 'Work Sans'; | |
font-weight: Black; | |
/*font-weight: 800;*/ | |
} | |
h2 { | |
font-family: 'Work Sans'; | |
font-weight: Extra-Bold; | |
} | |
h3 { | |
font-family: 'Work Sans'; | |
font-weight: Bold; | |
} | |
strong { | |
color: #ffcf37; | |
} | |
body .remark-slide-content h1, | |
body .remark-slide-content .f1 { | |
font-size: 80px; | |
line-height: 0.9em; | |
text-transform: uppercase; | |
// font-family: 'Fruktur'; | |
font-weight: Black; | |
} | |
.f2 { | |
font-size: 1.5em; | |
text-transform: initial; | |
-webkit-margin-before: 0.83em; | |
-webkit-margin-after: 0.83em; | |
-webkit-margin-start: 0px; | |
jo-webkit-margin-end: 0px; | |
font-family: 'Work Sans'; | |
} | |
.f3 { | |
font-size: 1.17em; | |
text-transform: initial; | |
} | |
body .remark-slide-content p, | |
body .remark-slide-content li { | |
font-size: 1.5em; | |
margin: 0 0.2em; | |
} | |
body. .remark-slide-content .longlist li { | |
font-size: 1em; | |
} | |
body .remark-slide-content blockquote { | |
padding-left: 2em; | |
border-left: 10px solid #ccc; | |
margin-left: 0; | |
} | |
body .remark-slide-content blockquote p { | |
font-style: italic; | |
font-family: courier; | |
font-size: 1.5em; | |
} | |
body .remark-slide-content p a { | |
font-weight: 500; | |
} | |
body .remark-slide-content strong { | |
font-weight: 500; | |
} | |
body .remark-slide-content a:hover { | |
text-decoration: underline; | |
} | |
body .remark-slide-content a, | |
body .remark-slide-content a:visited { | |
color: #eee; | |
text-decoration: none; | |
} | |
.imageslide img { | |
max-height: 500px; | |
} | |
.imagecell img { | |
max-height: 200px; | |
} | |
li { | |
line-height: 1em; | |
padding-bottom: 0.5em; | |
} | |
.contain { | |
background-size: contain; | |
background-color: white; | |
} | |
.remark-code { | |
font-size: 1.5em; | |
} | |
html body div .remark-slide-number { | |
top: 12px; | |
opacity: 0.5; | |
position: absolute; | |
right: 20px; | |
color: red; | |
font-weight: bold; | |
font-family: monospace; | |
} | |
table { | |
border-collapse: collapse; | |
} | |
table td, th { | |
border: 1px dotted #aaa; | |
min-width: 20rem; | |
} | |
.two-column { | |
column-count: 2; | |
} | |
.three-column { | |
column-count: 3; | |
} | |
.small { | |
font-size: 0.8rem; | |
} | |
.grey { | |
color: #ccc; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment