diff --git a/doc/kss/templates/default/index.hbs b/doc/kss/templates/default/index.hbs index 6850d4b..e02d323 100644 --- a/doc/kss/templates/default/index.hbs +++ b/doc/kss/templates/default/index.hbs @@ -17,7 +17,7 @@ @@ -36,7 +36,7 @@ {{#each menu}}
  • - + {{header}} {{#if isActive}} diff --git a/doc/kss/templates/default/kss-assets/arrow_down.svg b/doc/kss/templates/default/kss-assets/arrow_down.svg new file mode 100644 index 0000000..01aa8c9 --- /dev/null +++ b/doc/kss/templates/default/kss-assets/arrow_down.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/doc/kss/templates/default/kss-assets/arrow_up.svg b/doc/kss/templates/default/kss-assets/arrow_up.svg new file mode 100644 index 0000000..a552ff9 --- /dev/null +++ b/doc/kss/templates/default/kss-assets/arrow_up.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/doc/kss/templates/default/kss-assets/kss.css b/doc/kss/templates/default/kss-assets/kss.css index f310e70..706207f 100644 --- a/doc/kss/templates/default/kss-assets/kss.css +++ b/doc/kss/templates/default/kss-assets/kss.css @@ -213,9 +213,9 @@ #kss-node .kss-nav li { margin-left: 3.2rem; } #kss-node .kss-nav .kss-nav-has-children > a::before { - content: url("./images/down_arrow.svg"); } + content: url("./arrow_down.svg"); } #kss-node .kss-nav .kss-nav-has-children > a.kss-nav__menu-link-active::before { - content: url("./images/up_arrow.svg"); } + content: url("./arrow_up.svg"); } #kss-node .kss-nav__menu { list-style-type: none; margin-bottom: 12px; @@ -256,7 +256,8 @@ #kss-node .kss-nav__ref:after { content: ' '; } #kss-node .kss-nav__ref-child { - font-weight: normal; } + font-weight: normal; + padding-left: 1.2rem; } #kss-node .kss-section { padding-bottom: 2.4rem; padding-top: 2.4rem; } @@ -443,6 +444,15 @@ z-index: 0; } #kss-node .kss-modifier__example:last-child { margin-bottom: 0; } + #kss-node .kss-modifier__example .fullscreen { + border: 2px solid #e7e7e9; + border-radius: 6px; + padding-bottom: 50%; } + #kss-node .kss-modifier__example .fullscreen::before { + background-color: #f3f3f5; + content: ''; + display: block; + height: 20px; } #kss-node.kss-guides-mode .kss-modifier__example:before, #kss-node.kss-guides-mode .kss-modifier__example:after, #kss-node.kss-guides-mode .kss-modifier__example-footer:before, #kss-node.kss-guides-mode .kss-modifier__example-footer:after { @@ -495,9 +505,9 @@ margin: 24px 0; padding: 20px; } #kss-node .kss-markup[open] summary { - background: url("./images/up_arrow.svg") no-repeat right center; } + background: url("./arrow_up.svg") no-repeat right center; } #kss-node .kss-markup summary { - background: url("./images/down_arrow.svg") no-repeat right center; + background: url("./arrow_down.svg") no-repeat right center; cursor: pointer; } #kss-node .kss-markup pre { background: #1d1f20; @@ -545,6 +555,8 @@ color: #d1783e; font-size: 13.33333px; font-weight: bold; } + #kss-node .fullscreen > .embed { + position: relative; } .kss-container { display: grid; diff --git a/doc/kss/templates/default/kss-assets/kss.scss b/doc/kss/templates/default/kss-assets/kss.scss index 4f1275f..cce200e 100644 --- a/doc/kss/templates/default/kss-assets/kss.scss +++ b/doc/kss/templates/default/kss-assets/kss.scss @@ -365,11 +365,11 @@ $kss-vertical-rhythm: $kss-font-size * 1.5; } .kss-nav-has-children > a::before { - content: url('./images/down_arrow.svg'); + content: url('./arrow_down.svg'); } .kss-nav-has-children > a.kss-nav__menu-link-active::before { - content: url('./images/up_arrow.svg'); + content: url('./arrow_up.svg'); } } @@ -435,6 +435,7 @@ $kss-vertical-rhythm: $kss-font-size * 1.5; .kss-nav__ref-child { font-weight: normal; + padding-left: 1.2rem; } // ------------------------------------------------------------------------------ @@ -702,6 +703,7 @@ $kss-vertical-rhythm: $kss-font-size * 1.5; margin-bottom: ($kss-vertical-rhythm / 2); } + .is-fullscreen .kss-modifier__description { margin-right: 20px; } @@ -716,6 +718,19 @@ $kss-vertical-rhythm: $kss-font-size * 1.5; &:last-child { margin-bottom: 0; } + + .fullscreen { + border: 2px solid $kss-colors-subheader-border; + border-radius: 6px; + padding-bottom: 50%; + + &::before { + background-color: $kss-colors-subheader-bg; + content: ''; + display: block; + height: 20px; + } + } } &.kss-guides-mode .kss-modifier__example, @@ -801,11 +816,11 @@ $kss-vertical-rhythm: $kss-font-size * 1.5; padding: 20px; &[open] summary { - background: url('./images/up_arrow.svg') no-repeat right center; + background: url('./arrow_up.svg') no-repeat right center; } & summary { - background: url('./images/down_arrow.svg') no-repeat right center; + background: url('./arrow_down.svg') no-repeat right center; cursor: pointer; } @@ -879,6 +894,10 @@ $kss-vertical-rhythm: $kss-font-size * 1.5; font-weight: bold; } } + + .fullscreen > .embed { + position: relative; + } } .kss-container { diff --git a/doc/styleguide/index.html b/doc/styleguide/index.html index 15077f1..022fdbe 100644 --- a/doc/styleguide/index.html +++ b/doc/styleguide/index.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,25 +36,50 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • diff --git a/doc/styleguide/item-architecture-forms.html b/doc/styleguide/item-architecture-forms.html deleted file mode 100644 index 07f3da8..0000000 --- a/doc/styleguide/item-architecture-forms.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - WebSlides - Documentation 1.5.0 - - - - - - - - - - -
    -

    WebSlides - Documentation 1.5.0

    - -
    -
    -

    WebSlides - Documentation 1.5.0

    -
    -
    -
    - -
    -
    - -
    - - - - - - -
    -
    -
    - - - - - - - - - - - - - - - diff --git a/doc/styleguide/item-architecture-radius.html b/doc/styleguide/item-architecture-radius.html index 17fdaca..826e94f 100644 --- a/doc/styleguide/item-architecture-radius.html +++ b/doc/styleguide/item-architecture-radius.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,25 +36,50 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • diff --git a/doc/styleguide/item-architecture-tables.html b/doc/styleguide/item-architecture-tables.html deleted file mode 100644 index a082dc5..0000000 --- a/doc/styleguide/item-architecture-tables.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - WebSlides - Documentation 1.5.0 - - - - - - - - - - -
    -

    WebSlides - Documentation 1.5.0

    - -
    -
    -

    WebSlides - Documentation 1.5.0

    -
    -
    -
    - -
    -
    - -
    - -
    -

    - - Tables - -

    - - -
    - - -
    -
    - Example -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    PlansGoodBetterAwesome
    PriceFree$6$10
    Access to exclusive contentNoNoYes
    Screens you can watch on at the same time12Unlimited
    - -
    - -
    - -
    - - Markup - -
    <table>
    -  <thead>
    -   <tr>
    -     <th>Plans</th>
    -     <th>Good</th>
    -     <th>Better</th>
    -     <th>Awesome</th>
    -   </tr>
    -  </thead>
    -  <tbody>
    -    <tr>
    -      <td>Price</td>
    -      <td>Free</td>
    -      <td>$6</td>
    -      <td>$10</td>
    -    </tr>
    -    <tr>
    -      <td>Access to exclusive content</td>
    -      <td>No</td>
    -      <td>No</td>
    -      <td>Yes</td>
    -    </tr>
    -    <tr>
    -      <td>Screens you can watch on at the same time</td>
    -      <td>1</td>
    -      <td>2</td>
    -      <td>Unlimited</td>
    -    </tr>
    -  </tbody>
    -</table>
    -
    - -
    - Source: modules/_tables.scss, line 1 -
    - -
    -
    -
    - - - - - - - - - - - - - - - diff --git a/doc/styleguide/item-architecture-try.html b/doc/styleguide/item-architecture-try.html index 03cfb5a..13fea05 100644 --- a/doc/styleguide/item-architecture-try.html +++ b/doc/styleguide/item-architecture-try.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,25 +36,50 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • diff --git a/doc/styleguide/item-architecture.html b/doc/styleguide/item-architecture.html index f69090b..b3ade20 100644 --- a/doc/styleguide/item-architecture.html +++ b/doc/styleguide/item-architecture.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,212 +36,62 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • diff --git a/doc/styleguide/item-contents-resume.html b/doc/styleguide/item-contents-resume.html index 31dac4a..6eb377d 100644 --- a/doc/styleguide/item-contents-resume.html +++ b/doc/styleguide/item-contents-resume.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,25 +36,50 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • @@ -65,7 +90,7 @@

    - Work / ResumΓ© / CV + CV / ResumΓ©

    diff --git a/doc/styleguide/item-contents.html b/doc/styleguide/item-contents.html index 25422b6..2236d09 100644 --- a/doc/styleguide/item-contents.html +++ b/doc/styleguide/item-contents.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,87 +36,57 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • diff --git a/doc/styleguide/item-architecture-forms-user.html b/doc/styleguide/item-forms-login.html similarity index 65% rename from doc/styleguide/item-architecture-forms-user.html rename to doc/styleguide/item-forms-login.html index 639de60..9bb89cf 100644 --- a/doc/styleguide/item-architecture-forms-user.html +++ b/doc/styleguide/item-forms-login.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,38 +36,63 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +
    diff --git a/doc/styleguide/item-forms.html b/doc/styleguide/item-forms.html new file mode 100644 index 0000000..5cf0964 --- /dev/null +++ b/doc/styleguide/item-forms.html @@ -0,0 +1,145 @@ + + + + + WebSlides - Documentation 1.5.0 + + + + + + + + + + +
    +

    WebSlides - Documentation 1.5.0

    + +
    +
    +

    WebSlides - Documentation 1.5.0

    +
    + + + + + + + + + + + + + + + + diff --git a/doc/styleguide/item-media-badgets.html b/doc/styleguide/item-landings-and-portfolio-badgets.html similarity index 66% rename from doc/styleguide/item-media-badgets.html rename to doc/styleguide/item-landings-and-portfolio-badgets.html index 8058181..45a3e12 100644 --- a/doc/styleguide/item-media-badgets.html +++ b/doc/styleguide/item-landings-and-portfolio-badgets.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Badges

    diff --git a/doc/styleguide/item-architecture-buttons.html b/doc/styleguide/item-landings-and-portfolio-buttons.html similarity index 68% rename from doc/styleguide/item-architecture-buttons.html rename to doc/styleguide/item-landings-and-portfolio-buttons.html index 546f291..deaf293 100644 --- a/doc/styleguide/item-architecture-buttons.html +++ b/doc/styleguide/item-landings-and-portfolio-buttons.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Buttons

    diff --git a/doc/styleguide/item-landings-cards.html b/doc/styleguide/item-landings-and-portfolio-cards.html similarity index 71% rename from doc/styleguide/item-landings-cards.html rename to doc/styleguide/item-landings-and-portfolio-cards.html index 60bc856..7caeec3 100644 --- a/doc/styleguide/item-landings-cards.html +++ b/doc/styleguide/item-landings-and-portfolio-cards.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Cards

    diff --git a/doc/styleguide/item-landings-cta-cover.html b/doc/styleguide/item-landings-and-portfolio-cta-cover.html similarity index 70% rename from doc/styleguide/item-landings-cta-cover.html rename to doc/styleguide/item-landings-and-portfolio-cta-cover.html index 417a52c..da9e522 100644 --- a/doc/styleguide/item-landings-cta-cover.html +++ b/doc/styleguide/item-landings-and-portfolio-cta-cover.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,36 +36,61 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - - Headings + + Covers

    diff --git a/doc/styleguide/item-landings-cta.html b/doc/styleguide/item-landings-and-portfolio-cta.html similarity index 68% rename from doc/styleguide/item-landings-cta.html rename to doc/styleguide/item-landings-and-portfolio-cta.html index 6421231..0660c21 100644 --- a/doc/styleguide/item-landings-cta.html +++ b/doc/styleguide/item-landings-and-portfolio-cta.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Call to action

    diff --git a/doc/styleguide/item-landings-quotes.html b/doc/styleguide/item-landings-and-portfolio-quotes.html similarity index 61% rename from doc/styleguide/item-landings-quotes.html rename to doc/styleguide/item-landings-and-portfolio-quotes.html index 4d56248..de56279 100644 --- a/doc/styleguide/item-landings-quotes.html +++ b/doc/styleguide/item-landings-and-portfolio-quotes.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,36 +36,61 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - - Quotes + + Quotes & Cites

    @@ -83,6 +108,7 @@

    "I feel guilty as a web designer when I have to use PowerPoint and Keynote. So I made #WebSlides."

    + Avatar @jlantunez
    @@ -94,7 +120,8 @@
    <blockquote>
       <p>"I feel guilty as a web designer when I have to use PowerPoint and Keynote. So I made #WebSlides."</p>
    -</blockquote>
    +</blockquote> +<cite> <img class="avatar-40" src="http://webslides.tv/static/images/avatar.jpg" alt="Avatar"> <a href="http://twitter.com/jlantunez/">@jlantunez</a></cite>
    diff --git a/doc/styleguide/item-landings-toc.html b/doc/styleguide/item-landings-and-portfolio-toc.html similarity index 75% rename from doc/styleguide/item-landings-toc.html rename to doc/styleguide/item-landings-and-portfolio-toc.html index 6ae6329..ca68288 100644 --- a/doc/styleguide/item-landings-toc.html +++ b/doc/styleguide/item-landings-and-portfolio-toc.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Table of contents

    diff --git a/doc/styleguide/item-landings.html b/doc/styleguide/item-landings-and-portfolio.html similarity index 60% rename from doc/styleguide/item-landings.html rename to doc/styleguide/item-landings-and-portfolio.html index 6681129..1dc2c71 100644 --- a/doc/styleguide/item-landings.html +++ b/doc/styleguide/item-landings-and-portfolio.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,73 +36,98 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms + +
  • +
  • + + Landings and portfolio
  • - + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - - Landings + + Landings and portfolio

    diff --git a/doc/styleguide/item-landings-cites.html b/doc/styleguide/item-landings-cites.html deleted file mode 100644 index a971436..0000000 --- a/doc/styleguide/item-landings-cites.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - WebSlides - Documentation 1.5.0 - - - - - - - - - - -
    -

    WebSlides - Documentation 1.5.0

    - -
    -
    -

    WebSlides - Documentation 1.5.0

    -
    -
    - -
    - -
    - -
    -

    - - Cites - -

    - - -
    - - -
    -
    - Example -
    - - -
    - Avatar @jlantunez - -
    - -
    - -
    - - Markup - -
    <cite> <img class="avatar-40" src="http://webslides.tv/static/images/avatar.jpg" alt="Avatar"> <a href="http://twitter.com/jlantunez/">@jlantunez</a></cite>
    -
    - -
    - Source: modules/_quotes.scss, line 28 -
    - -
    -
    -
    - - - - - - - - - - - - - - - diff --git a/doc/styleguide/item-architecture-alignment.html b/doc/styleguide/item-layout-alignment.html similarity index 80% rename from doc/styleguide/item-architecture-alignment.html rename to doc/styleguide/item-layout-alignment.html index 16e229b..85baf27 100644 --- a/doc/styleguide/item-architecture-alignment.html +++ b/doc/styleguide/item-layout-alignment.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Align content

    diff --git a/doc/styleguide/item-media-background-anim.html b/doc/styleguide/item-layout-background-anim.html similarity index 66% rename from doc/styleguide/item-media-background-anim.html rename to doc/styleguide/item-layout-background-anim.html index d7f6e76..2111c90 100644 --- a/doc/styleguide/item-media-background-anim.html +++ b/doc/styleguide/item-layout-background-anim.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Animated

    diff --git a/doc/styleguide/item-media-background-video.html b/doc/styleguide/item-layout-background-video.html similarity index 69% rename from doc/styleguide/item-media-background-video.html rename to doc/styleguide/item-layout-background-video.html index 221c790..140f83a 100644 --- a/doc/styleguide/item-media-background-video.html +++ b/doc/styleguide/item-layout-background-video.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Video

    diff --git a/doc/styleguide/item-architecture-background.html b/doc/styleguide/item-layout-background.html similarity index 84% rename from doc/styleguide/item-architecture-background.html rename to doc/styleguide/item-layout-background.html index 593aef4..2e182b8 100644 --- a/doc/styleguide/item-architecture-background.html +++ b/doc/styleguide/item-layout-background.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Backgrounds

    diff --git a/doc/styleguide/item-architecture-backgrounds-gradient.html b/doc/styleguide/item-layout-backgrounds-gradient.html similarity index 66% rename from doc/styleguide/item-architecture-backgrounds-gradient.html rename to doc/styleguide/item-layout-backgrounds-gradient.html index bb4d87a..4569839 100644 --- a/doc/styleguide/item-architecture-backgrounds-gradient.html +++ b/doc/styleguide/item-layout-backgrounds-gradient.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Backgrounds - Gradient

    diff --git a/doc/styleguide/item-architecture-backgrounds-transparent.html b/doc/styleguide/item-layout-backgrounds-transparent.html similarity index 67% rename from doc/styleguide/item-architecture-backgrounds-transparent.html rename to doc/styleguide/item-layout-backgrounds-transparent.html index d730368..2a797d4 100644 --- a/doc/styleguide/item-architecture-backgrounds-transparent.html +++ b/doc/styleguide/item-layout-backgrounds-transparent.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Backgrounds - Transparent

    diff --git a/doc/styleguide/item-architecture-backgrounds.html b/doc/styleguide/item-layout-backgrounds.html similarity index 73% rename from doc/styleguide/item-architecture-backgrounds.html rename to doc/styleguide/item-layout-backgrounds.html index 130baa8..9357b1d 100644 --- a/doc/styleguide/item-architecture-backgrounds.html +++ b/doc/styleguide/item-layout-backgrounds.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Backgrounds

    diff --git a/doc/styleguide/item-architecture-grid.html b/doc/styleguide/item-layout-grid.html similarity index 78% rename from doc/styleguide/item-architecture-grid.html rename to doc/styleguide/item-layout-grid.html index a345593..d3bc9ec 100644 --- a/doc/styleguide/item-architecture-grid.html +++ b/doc/styleguide/item-layout-grid.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Grid

    diff --git a/doc/styleguide/item-layout-navbars.html b/doc/styleguide/item-layout-navbars.html new file mode 100644 index 0000000..4c99f52 --- /dev/null +++ b/doc/styleguide/item-layout-navbars.html @@ -0,0 +1,272 @@ + + + + + WebSlides - Documentation 1.5.0 + + + + + + + + + + +
    +

    WebSlides - Documentation 1.5.0

    + +
    +
    +

    WebSlides - Documentation 1.5.0

    +
    +
    + +
    + +
    + +
    +

    + + Navbars + +

    + +
    +

    Responsive Media (videos, iframe...)

    + +
    + +
    + + +
    +
    + Examples +
    + +
    + Default styling +
    + +
    + + +
    + +
    + .navbar +
    +
    + Navigation bar +
    +
    + + +
    +
    + .aligncenter +
    +
    + Center alignment +
    +
    + + +
    +
    + .alignright +
    +
    + Right alignment +
    +
    + + +
    +
    + +
    + + Markup + +
    <nav role="navigation" class="[modifier class]">
    +  <ul>
    +    <li><a href="">About</a></li>
    +    <li><a href="">Clients</a></li>
    +    <li class="facebook">
    +      <a rel="external" href="https://facebook.com/webslides" title="Facebook">
    +        Facebook
    +      </a>
    +    </li>
    +    <li class="twitter">
    +      <a rel="external" href="https://twitter.com/webslides" title="Twitter">
    +        @WebSlides
    +      </a>
    +    </li>
    +  </ul>
    +</nav>
    +
    + +
    + Source: modules/_navigation.scss, line 1 +
    + +
    +
    +
    + + + + + + + + + + + + + + + diff --git a/doc/styleguide/item-architecture-sizes.html b/doc/styleguide/item-layout-sizes.html similarity index 77% rename from doc/styleguide/item-architecture-sizes.html rename to doc/styleguide/item-layout-sizes.html index c050900..df6db8c 100644 --- a/doc/styleguide/item-architecture-sizes.html +++ b/doc/styleguide/item-layout-sizes.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,36 +36,61 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - - Resizing + + Sizes

    diff --git a/doc/styleguide/item-architecture-navigation.html b/doc/styleguide/item-layout-slide-navigation.html similarity index 60% rename from doc/styleguide/item-architecture-navigation.html rename to doc/styleguide/item-layout-slide-navigation.html index 9f487bd..5726d68 100644 --- a/doc/styleguide/item-architecture-navigation.html +++ b/doc/styleguide/item-layout-slide-navigation.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Slides navigation

    @@ -138,65 +163,6 @@ - - - -/a> - - 53 / 120 -
    - -
    -
    - -
    - - Markup - -
    <div id="navigation">
    -  <a id="next" href="#" title="Arrow Keys">β†’</a>
    -  <a id="previous" href="#" title="Arrow Keys">←</a>
    -  <span id="counter"><a href="#" title="View all slides">53 / 120</a></span>
    -</div>
    -
    - -
    - Source: modules/_navigation.scss, line 1 -
    - -
    -
    -
    - - - - - - - - - - - - diff --git a/doc/styleguide/item-architecture-slides-bottom.html b/doc/styleguide/item-layout-slides-bottom.html similarity index 68% rename from doc/styleguide/item-architecture-slides-bottom.html rename to doc/styleguide/item-layout-slides-bottom.html index 479f304..3d4967d 100644 --- a/doc/styleguide/item-architecture-slides-bottom.html +++ b/doc/styleguide/item-layout-slides-bottom.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Align bottom

    diff --git a/doc/styleguide/item-layout-slides-fullscreen.html b/doc/styleguide/item-layout-slides-fullscreen.html new file mode 100644 index 0000000..94d6ec4 --- /dev/null +++ b/doc/styleguide/item-layout-slides-fullscreen.html @@ -0,0 +1,168 @@ + + + + + WebSlides - Documentation 1.5.0 + + + + + + + + + + +
    +

    WebSlides - Documentation 1.5.0

    + +
    +
    +

    WebSlides - Documentation 1.5.0

    +
    +
    + +
    + +
    + +
    +

    + + Fullscreen + +

    + +
    +

    Slide with no padding (full card, .embed youtube video...)

    + +
    + +
    + + +
    +
    + Example +
    + + +
    +
    +

    Content

    +
    + +
    + +
    + +
    + + Markup + +
    <section class="fullscreen">
    +  <p>Content</p>
    +</section>
    +
    + +
    + Source: modules/_slides.scss, line 43 +
    + +
    +
    +
    + + + + + + + + + + + + + + + diff --git a/doc/styleguide/item-architecture-slides-top.html b/doc/styleguide/item-layout-slides-top.html similarity index 68% rename from doc/styleguide/item-architecture-slides-top.html rename to doc/styleguide/item-layout-slides-top.html index a62b923..8c57f95 100644 --- a/doc/styleguide/item-architecture-slides-top.html +++ b/doc/styleguide/item-layout-slides-top.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Align top

    diff --git a/doc/styleguide/item-architecture-slides.html b/doc/styleguide/item-layout-slides.html similarity index 66% rename from doc/styleguide/item-architecture-slides.html rename to doc/styleguide/item-layout-slides.html index a1628b5..9e22b49 100644 --- a/doc/styleguide/item-architecture-slides.html +++ b/doc/styleguide/item-layout-slides.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Slides

    diff --git a/doc/styleguide/item-layout.html b/doc/styleguide/item-layout.html new file mode 100644 index 0000000..e7d814a --- /dev/null +++ b/doc/styleguide/item-layout.html @@ -0,0 +1,220 @@ + + + + + WebSlides - Documentation 1.5.0 + + + + + + + + + + +
    +

    WebSlides - Documentation 1.5.0

    + +
    +
    +

    WebSlides - Documentation 1.5.0

    +
    + + + + + + + + + + + + + + + + diff --git a/doc/styleguide/item-architecture-interviews.html b/doc/styleguide/item-longforms-interviews.html similarity index 70% rename from doc/styleguide/item-architecture-interviews.html rename to doc/styleguide/item-longforms-interviews.html index 5ed4268..359670f 100644 --- a/doc/styleguide/item-architecture-interviews.html +++ b/doc/styleguide/item-longforms-interviews.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Interviews

    diff --git a/doc/styleguide/item-landings-longform.html b/doc/styleguide/item-longforms.html similarity index 60% rename from doc/styleguide/item-landings-longform.html rename to doc/styleguide/item-longforms.html index 9b4ca37..eacb3c2 100644 --- a/doc/styleguide/item-landings-longform.html +++ b/doc/styleguide/item-longforms.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,38 +36,70 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +
    diff --git a/doc/styleguide/item-media-avatars.html b/doc/styleguide/item-media-avatars.html index 2c5619a..d560018 100644 --- a/doc/styleguide/item-media-avatars.html +++ b/doc/styleguide/item-media-avatars.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,25 +36,50 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • diff --git a/doc/styleguide/item-media-background.html b/doc/styleguide/item-media-background.html deleted file mode 100644 index a80a78d..0000000 --- a/doc/styleguide/item-media-background.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - WebSlides - Documentation 1.5.0 - - - - - - - - - - -
    -

    WebSlides - Documentation 1.5.0

    - -
    -
    -

    WebSlides - Documentation 1.5.0

    -
    -
    - -
    - -
    - - - - - - -
    -
    -
    - - - - - - - - - - - - - - - diff --git a/doc/styleguide/item-media-embed.html b/doc/styleguide/item-media-embed.html index 3f9e17a..fea7518 100644 --- a/doc/styleguide/item-media-embed.html +++ b/doc/styleguide/item-media-embed.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,25 +36,50 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • diff --git a/doc/styleguide/item-media-fullscreen-embed.html b/doc/styleguide/item-media-fullscreen-embed.html index 7145354..df42dfa 100644 --- a/doc/styleguide/item-media-fullscreen-embed.html +++ b/doc/styleguide/item-media-fullscreen-embed.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,25 +36,50 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • diff --git a/doc/styleguide/item-media-fullscreen.html b/doc/styleguide/item-media-fullscreen.html index cfd71fd..280fad5 100644 --- a/doc/styleguide/item-media-fullscreen.html +++ b/doc/styleguide/item-media-fullscreen.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,25 +36,50 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • diff --git a/doc/styleguide/item-media-screenshots.html b/doc/styleguide/item-media-screenshots.html index 4c1727c..4ef0bb9 100644 --- a/doc/styleguide/item-media-screenshots.html +++ b/doc/styleguide/item-media-screenshots.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,25 +36,50 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • diff --git a/doc/styleguide/item-media.html b/doc/styleguide/item-media.html index 1e45590..4bc54a8 100644 --- a/doc/styleguide/item-media.html +++ b/doc/styleguide/item-media.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,22 +36,37 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • diff --git a/doc/styleguide/item-contents-activity.html b/doc/styleguide/item-multipurpose-blocks-activity.html similarity index 76% rename from doc/styleguide/item-contents-activity.html rename to doc/styleguide/item-multipurpose-blocks-activity.html index bad61bd..647c510 100644 --- a/doc/styleguide/item-contents-activity.html +++ b/doc/styleguide/item-multipurpose-blocks-activity.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + CVs, News ad Activity

    diff --git a/doc/styleguide/item-contents-clients.html b/doc/styleguide/item-multipurpose-blocks-clients.html similarity index 77% rename from doc/styleguide/item-contents-clients.html rename to doc/styleguide/item-multipurpose-blocks-clients.html index c260ddd..600c7f3 100644 --- a/doc/styleguide/item-contents-clients.html +++ b/doc/styleguide/item-multipurpose-blocks-clients.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Clients

    diff --git a/doc/styleguide/item-contents-features.html b/doc/styleguide/item-multipurpose-blocks-features.html similarity index 73% rename from doc/styleguide/item-contents-features.html rename to doc/styleguide/item-multipurpose-blocks-features.html index 84ed8da..d85849f 100644 --- a/doc/styleguide/item-contents-features.html +++ b/doc/styleguide/item-multipurpose-blocks-features.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -
    +

    - + Features

    diff --git a/doc/styleguide/item-contents-gallery-overlay.html b/doc/styleguide/item-multipurpose-blocks-gallery-overlay.html similarity index 73% rename from doc/styleguide/item-contents-gallery-overlay.html rename to doc/styleguide/item-multipurpose-blocks-gallery-overlay.html index 6b32cd8..209e5f2 100644 --- a/doc/styleguide/item-contents-gallery-overlay.html +++ b/doc/styleguide/item-multipurpose-blocks-gallery-overlay.html @@ -17,9 +17,9 @@

    WebSlides - Documentation 1.5.0

    @@ -36,35 +36,60 @@
  • - + Architecture
  • - + Contents
  • - - Landings + + Forms
  • - + + Landings and portfolio + +
  • +
  • + + Layout + +
  • +
  • + + Longform + +
  • +
  • + Media
  • +
  • + + Multipurpose blocks + +
  • +
  • + + Typography + +
  • -