UNPKG

avvo-styleguide

Version:
239 lines (211 loc) 10.2 kB
<!DOCTYPE html> <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <title>kss-node Style Guide</title> <meta name="description" content=""> <meta name="generator" content="kss-node"> <meta name="viewport" content="width=device-width"> <link rel="stylesheet" href="kss-assets/kss.css"> <link rel="stylesheet" href="styles.css"> </head> <body id="kss-node" class="kss-fullscreen-mode"> <div class="kss-sidebar kss-style"> <header class="kss-header"> <h1 class="kss-doc-title">kss-node Style Guide</h1> </header> <nav class="kss-nav"> <ul class="kss-nav__menu"> <li class="kss-nav__menu-item"> <a class="kss-nav__menu-link" href="./"> <span class="kss-nav__ref">0</span ><span class="kss-nav__name">Overview</span> </a> </li> <li class="kss-nav__menu-item"> <a class="kss-nav__menu-link" href="section-spec.html"> <span class="kss-nav__ref">1</span><span class="kss-nav__name">KSS Spec</span> </a> </li> <li class="kss-nav__menu-item"> <a class="kss-nav__menu-link" href="section-javascript-api.html"> <span class="kss-nav__ref">2</span><span class="kss-nav__name">JavaScript API</span> </a> </li> <li class="kss-nav__menu-item"> <a class="kss-nav__menu-link" href="section-demo.html"> <span class="kss-nav__ref">3</span><span class="kss-nav__name">Demo</span> </a> </li> </ul> </nav> </div> <article role="main" class="kss-main"> <div id="kssref-demo-components-buttons" class="kss-section kss-section--depth-3 is-fullscreen"> <div class="kss-style"> <h3 class="kss-title kss-title--level-3"> <a class="kss-title__permalink" href="#kssref-demo-components-buttons"> <span class="kss-title__ref"> 3.2.1 <span class="kss-title__permalink-hash"> #demo.components.buttons </span> </span> Buttons </a> </h3> <p class="kss-toolbar"> <a href="#kssref-demo-components-buttons" data-kss-guides="true"> <span class="kss-toolbar__tooltip">Toggle example guides</span> <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%" viewBox="0 0 64 64"> <rect class="kss-toolbar__icon-fill" x="5" y="35" width="5" height="9"/> <rect class="kss-toolbar__icon-fill" x="54" y="21" width="5" height="9"/> <rect class="kss-toolbar__icon-fill" x="54" y="35" width="5" height="9"/> <rect class="kss-toolbar__icon-fill" x="5" y="21" width="5" height="9"/> <rect class="kss-toolbar__icon-fill" x="5" y="0" width="5" height="15"/> <rect class="kss-toolbar__icon-fill" x="35" y="5" width="9" height="5"/> <rect class="kss-toolbar__icon-fill" x="20" y="5" width="9" height="5"/> <rect class="kss-toolbar__icon-fill" x="0" y="5" width="15" height="5"/> <rect class="kss-toolbar__icon-fill" x="54" y="0" width="5" height="15"/> <rect class="kss-toolbar__icon-fill" x="49" y="5" width="15" height="5"/> <rect class="kss-toolbar__icon-fill" x="54" y="49" width="5" height="15"/> <rect class="kss-toolbar__icon-fill" x="49" y="54" width="15" height="5"/> <rect class="kss-toolbar__icon-fill" x="5" y="49" width="5" height="15"/> <rect class="kss-toolbar__icon-fill" x="0" y="54" width="15" height="5"/> <rect class="kss-toolbar__icon-fill" x="35" y="54" width="9" height="5"/> <rect class="kss-toolbar__icon-fill" x="20" y="54" width="9" height="5"/> </svg> </a> <a href="#kssref-demo-components-buttons" data-kss-markup="true"> <span class="kss-toolbar__tooltip">Toggle HTML markup</span> <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%" viewBox="0 0 64 64"> <path class="kss-toolbar__icon-fill" d="M37.555,46.239l6.103,6.103l20.342,-20.342l-20.342,-20.342l-6.103,6.103l14.24,14.239l-14.24,14.239Z"/> <path class="kss-toolbar__icon-fill" d="M26.445,17.761l-6.103,-6.103l-20.342,20.342l20.342,20.342l6.103,-6.103l-14.24,-14.239l14.24,-14.239Z"/> </svg> </a> </p> <div class="kss-description"> <p>A majority of buttons in the site are built from the same base class.</p> </div> </div> <div class="kss-modifier__wrapper"> <div class="kss-modifier__heading kss-style"> Examples </div> <div class="kss-modifier__default-name kss-style"> Default styling </div> <div class="kss-modifier__example"> <a href="#" class="button ">Link Button</a> <button class="button ">Button Element</button> <input type="button" class="button " value="input[type='button']"/> <div class="kss-modifier__example-footer"></div> </div> <div class="kss-modifier__name kss-style"> .primary </div> <div class="kss-modifier__description kss-style"> Use this class to indicate that the button is the primary feature of this form. </div> <div class="kss-modifier__example"> <a href="#" class="button primary">Link Button</a> <button class="button primary">Button Element</button> <input type="button" class="button primary" value="input[type='button']"/> <div class="kss-modifier__example-footer"></div> </div> <div class="kss-modifier__name kss-style"> .remove </div> <div class="kss-modifier__description kss-style"> Use this class to indicate that the button will remove a feature, or other negative connotations. </div> <div class="kss-modifier__example"> <a href="#" class="button remove">Link Button</a> <button class="button remove">Button Element</button> <input type="button" class="button remove" value="input[type='button']"/> <div class="kss-modifier__example-footer"></div> </div> <div class="kss-modifier__name kss-style"> :hover </div> <div class="kss-modifier__description kss-style"> Highlight the button when hovered. </div> <div class="kss-modifier__example"> <a href="#" class="button pseudo-class-hover">Link Button</a> <button class="button pseudo-class-hover">Button Element</button> <input type="button" class="button pseudo-class-hover" value="input[type='button']"/> <div class="kss-modifier__example-footer"></div> </div> <div class="kss-modifier__name kss-style"> :disabled </div> <div class="kss-modifier__description kss-style"> Make the button change appearance to reflect it being disabled. </div> <div class="kss-modifier__example"> <a href="#" class="button pseudo-class-disabled">Link Button</a> <button class="button pseudo-class-disabled">Button Element</button> <input type="button" class="button pseudo-class-disabled" value="input[type='button']"/> <div class="kss-modifier__example-footer"></div> </div> <div class="kss-modifier__name kss-style"> :active </div> <div class="kss-modifier__description kss-style"> &quot;Press&quot; the button down when clicked. </div> <div class="kss-modifier__example"> <a href="#" class="button pseudo-class-active">Link Button</a> <button class="button pseudo-class-active">Button Element</button> <input type="button" class="button pseudo-class-active" value="input[type='button']"/> <div class="kss-modifier__example-footer"></div> </div> </div> <details class="kss-markup kss-style"> <summary> Markup: <code>components/buttons.hbs</code> </summary> <pre class="prettyprint linenums lang-html"><code data-language="html">&lt;a href&#x3D;&quot;#&quot; class&#x3D;&quot;button {{modifier_class}}&quot;&gt;Link Button&lt;/a&gt; &lt;button class&#x3D;&quot;button {{modifier_class}}&quot;&gt;Button Element&lt;/button&gt; &lt;input type&#x3D;&quot;button&quot; class&#x3D;&quot;button {{modifier_class}}&quot; value&#x3D;&quot;input[type&#x3D;&#x27;button&#x27;]&quot;/&gt; </code></pre> </details> <div class="kss-source kss-style"> Source: <code>components/buttons.less</code>, line 1 </div> </div> </article> <!-- SCRIPTS --> <script src="kss-assets/kss.js"></script> <script src="kss-assets/scrollspy.js"></script> <script src="kss-assets/prettify.js"></script> <script src="kss-assets/kss-fullscreen.js"></script> <script src="kss-assets/kss-guides.js"></script> <script src="kss-assets/kss-markup.js"></script> <script> prettyPrint(); var spy = new ScrollSpy('#kss-node', { nav: '.kss-nav__menu-child > li > a', className: 'is-in-viewport' }); var kssFullScreen = new KssFullScreen({ idPrefix: 'kss-fullscreen-', bodyClass: 'kss-fullscreen-mode', elementClass: 'is-fullscreen' }); var kssGuides = new KssGuides({ bodyClass: 'kss-guides-mode' }); var kssMarkup = new KssMarkup({ bodyClass: 'kss-markup-mode', detailsClass: 'kss-markup' }); </script> <footer class="kss-github"> <!-- https://github.com/blog/273-github-ribbons --> <a href="https://github.com/kss-node/kss-node"><img src="kss-assets/github-fork--black.png" alt="Fork me on GitHub"></a> </footer> <!-- Automatically built using <a href="https://github.com/kss-node/kss-node">kss-node</a>. --> </body> </html>