diff --git a/docs/card.html b/docs/card.html index d6f7e7c919bdf57117df791bd93d76c5e553d7a2..4ca4469dac7f78b3be3c9a9e0d689c48efc0b336 100644 --- a/docs/card.html +++ b/docs/card.html @@ -70,7 +70,7 @@
-
+
Introduction Modules Flavors diff --git a/docs/contextual.html b/docs/contextual.html index 1fb3cf42d6d194075d3f6a962807cbf6585aee86..8f3b8b4f318c0372084a5f6120eb7a3f4f17dd05 100644 --- a/docs/contextual.html +++ b/docs/contextual.html @@ -70,7 +70,7 @@
-
+
Introduction Modules Flavors diff --git a/docs/core.html b/docs/core.html index 0890852b459cc24427fca588e75d4087489cb575..3b13b80339f6b89850ff58e345d068139d655444 100644 --- a/docs/core.html +++ b/docs/core.html @@ -58,7 +58,7 @@
-
+
Introduction Modules Flavors diff --git a/docs/customization.html b/docs/customization.html index e843722825b3e808811410d392c8e05a064ff105..a45ea489bd8c280ab0e6c095ab2dfa9c0b9efe1c 100644 --- a/docs/customization.html +++ b/docs/customization.html @@ -49,7 +49,7 @@
-
+
Introduction Modules Flavors diff --git a/docs/flavors.html b/docs/flavors.html index 1bebc2ee291464868cbd31b087e032a32848167e..256adf42eb09a655d271a069ac633c2f11da8048 100644 --- a/docs/flavors.html +++ b/docs/flavors.html @@ -49,7 +49,7 @@
-
+
Introduction Modules Flavors diff --git a/docs/grid.html b/docs/grid.html index 7f49acb776589ab4921ceeef2a0220a6f0239a8d..bbc38a5bc9f423fdcecf1c6b88c5544779f468f4 100644 --- a/docs/grid.html +++ b/docs/grid.html @@ -70,7 +70,7 @@
-
+
Introduction Modules Flavors diff --git a/docs/index.html b/docs/index.html index 9f0d3dc754e227bf60f0f8aab55e5bc3414f4ed7..3f2c7afb45e2a3e17d791c1cd9a7760f20bdf822 100644 --- a/docs/index.html +++ b/docs/index.html @@ -53,7 +53,7 @@
-
+
Introduction Modules Flavors diff --git a/docs/input_control.html b/docs/input_control.html index 02641e6f98876568ca1cce2de814af373bab86ff..7335468d73a9fe3acb2dca105060379ffec7f441 100644 --- a/docs/input_control.html +++ b/docs/input_control.html @@ -70,7 +70,7 @@
-
+
Introduction Modules Flavors diff --git a/docs/modules.html b/docs/modules.html index 86c8e3480b9c3feba4c2ec76f3de07b3feeb5f68..32cd9a515a6d8043609651073d8bf9ec080e5c3f 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -46,7 +46,7 @@
-
+
Introduction Modules Flavors diff --git a/docs/navigation.html b/docs/navigation.html index 6bdabf110bc3ae6a8530c7d2ecb36ca4adf46ae9..d565820d0ec11f037be0e1729a31239e6ef864f6 100644 --- a/docs/navigation.html +++ b/docs/navigation.html @@ -70,7 +70,7 @@
-
+
Introduction Modules Flavors @@ -227,7 +227,7 @@

Notes

  • Subcategories and their links support a depth of 2 by default. If, however, you need more than that, we recommend you check the customization page for instructions on how to add more depth to the vertical navigation.
  • -
  • We strongly suggest you do not add irrelevant things inside your &nav; element, like images or text that are not part of the navigation menu.
  • +
  • We strongly suggest you do not add irrelevant things inside your <nav> element, like images or text that are not part of the navigation menu.

diff --git a/docs/progress.html b/docs/progress.html index 56f38dcf41df07b8e52112e330ed16938af5d85a..70f572231feec53402200929f073c9180772074b 100644 --- a/docs/progress.html +++ b/docs/progress.html @@ -70,7 +70,7 @@
-
+
Introduction Modules Flavors diff --git a/docs/quick_reference.html b/docs/quick_reference.html index c37267c0c29d3fa0ad6adc8e27411816a9956c71..b73880daa538a9e4815eff5f7d0b0fbf292543d9 100644 --- a/docs/quick_reference.html +++ b/docs/quick_reference.html @@ -68,7 +68,7 @@
-
+
Introduction Modules Flavors @@ -383,37 +383,64 @@
-

Header  View on Codepen

-

+                

Header  View on Codepen

+
<header>
+  <a href="#" class="logo">Logo</a>
+  <button>Home</button>
+  <a href="#" class="button">News</a>
+  <span>|</span>
+  <button>About</button>
+  <button>Contact</button>
+</header>

Notes

    -
  • +
  • Use the .logo class for the first child (either textual element or image)
  • +
  • The rest of the elements inside the <header> must be <button>, <label class="button"> or <a class="button"> elements
  • +
  • Use <span> elements as separators
  • +
  • You can mix buttons, links and labels inside the header, as long as all of them are styled as buttons
  • +
  • The logo element should not be a <button> element or of the .button class
  • +
  • Header is not displayed as fixed by default
-

Navigation bar  View on Codepen

-

+                

Navigation bar  View on Codepen

+
<nav>
+  <a href="#">Home</a>
+  <span>News</span>
+  <a href="#" class="sublink-1">New Courses</a>
+  <a href="#" class="sublink-1">Certifications</a>
+  <span class="sublink-1">Events</span>
+  <a href="#" class="sublink-2">Course Showcase - 12th, Dec</a>
+  <a href="#" class="sublink-2">Staff AMA - 16th, Dec</a>
+  <a href="#" class="sublink-1">Policy Update</a>                
+  <a href="#">About</a>
+  <a href="#">Contact</a>
+</nav>

Notes

    -
  • +
  • Use <nav> element, populate it with links
  • +
  • Use .sublink-1 and .sublink-2 classes to create subcategories in your navigation menu
  • +
  • Combine the navigation bar with grid reordering to display aside from text on larger displays or at the bottom on smaller displays
-

Footer  View on Codepen

-

+                

Footer  View on Codepen

+
<footer>
+  <p>&copy; 2001-2016 Web Corporation | <a href="#">About</a> | <a href="#">Terms of use</a></p>
+</footer>

Notes

    -
  • +
  • Simple syntax and structure, add content as normal
diff --git a/docs/tab.html b/docs/tab.html index 5d5e27bab6afcc06c575333a14ea9887335453ed..421eae24ad21b75e378477e1b4a1abf8a76f20e1 100644 --- a/docs/tab.html +++ b/docs/tab.html @@ -70,7 +70,7 @@
-
+
Introduction Modules Flavors diff --git a/docs/table.html b/docs/table.html index a901abd2d67a477e5df39f99c8a5fe68e074e2ec..5e347d189933b23f2da3f0c8dac90a41b10779d5 100644 --- a/docs/table.html +++ b/docs/table.html @@ -103,7 +103,7 @@
-
+
Introduction Modules Flavors diff --git a/docs/utility.html b/docs/utility.html index 5a95bea1097830dc3cf56cfcd4e92c8613f1769c..cdd590cd80b0996fbb91f9613b1007a6a4fc3b62 100644 --- a/docs/utility.html +++ b/docs/utility.html @@ -70,7 +70,7 @@
-
+
Introduction Modules Flavors diff --git a/docs/v2/DEVLOG.md b/docs/v2/DEVLOG.md index af78fa23bfbd1fa7df33f8eb3fdee0043a5be497..0694364b7f268a9be19a74599fcbc18abfd81d81 100644 --- a/docs/v2/DEVLOG.md +++ b/docs/v2/DEVLOG.md @@ -664,3 +664,6 @@ - Documented `core`'s quick reference with codepens etc. - Updated link references to `v2.0.0` instead of `v2.0`. - Added documentation for `grid` module in the quick reference guide. +- Made logo redirect to `index` on all pages. +- Structured base of the whole `quick reference` page. +- Written documentation for `navigation` in quick reference.