Skip to content

Latest commit

 

History

History
82 lines (55 loc) · 1.19 KB

slides.md

File metadata and controls

82 lines (55 loc) · 1.19 KB

title: Slide Title subtitle: Subtitle class: image

CampusHash


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

CampusHash

source: place source info here

title: 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!