title: Slide Title subtitle: Subtitle class: image
title: Special Slide subtitle: Subtitle class: segue dark nobackground
title: Elements class: big build_lists: false
This is an unordered list:
- Bullet1
- Bullet2
- Bullet3
This is bold. This is italic.
title: No Background class: nobackground fill
source: place source info heretitle: Big Title Slide class: title-slide
This is a title with the event branding.
title: Code Example
Media Queries are sweet:
@media screen and (max-width: 640px) { #sidebar { display: none; } }
title: Once more, with JavaScript
function isSmall() { return window.matchMedia("(min-device-width: ???)").matches; } function hasTouch() { return Modernizr.touch; } function detectFormFactor() { var device = DESKTOP; if (hasTouch()) { device = isSmall() ? PHONE : TABLET; } return device; }
title: Centered content content_class: flexbox vcenter
This content should be centered!