123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- ---
- layout: documentation
- doc-tab: components
- doc-subtab: level
- ---
- {% include subnav-components.html %}
- <section class="section">
- <div class="container">
- <h1 class="title">Level</h1>
- <h2 class="subtitle">A multi-purpose <strong>horizontal level</strong>, which can contain almost any other element</h2>
- <hr>
- <div class="content">
- <p>The <strong>structure</strong> of a level is the following:</p>
- <ul>
- <li>
- <code>level</code>: main container
- <ul>
- <li><code>level-left</code> for the left side</li>
- <li>
- <code>level-right</code> for the right side
- <ul>
- <li><code>level-item</code> for each individual element</li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- <p>In a <code>level-item</code>, you can then insert almost <em>anything</em> you want: a title, a button, a text input, or just simple text. No matter what elements you put inside a Bulma <code>level</code>, they will always be <strong>vertically centered</strong>.</p>
- </div>
- <div class="structure">
- <nav class="level structure-item is-structure-container" title="level">
- <div class="level-left structure-item" title="level-left">
- <div class="level-item">
- <p class="subtitle is-5">
- <strong>123</strong> posts
- </p>
- </div>
- <div class="level-item">
- <div class="field has-addons">
- <p class="control">
- <input class="input" type="text" placeholder="Find a post">
- </p>
- <p class="control">
- <button class="button">
- Search
- </button>
- </p>
- </div>
- </div>
- </div>
- <div class="level-right structure-item" title="level-right">
- <p class="level-item">
- <strong>All</strong>
- </p>
- <p class="level-item">
- <a>Published</a>
- </p>
- <p class="level-item">
- <a>Drafts</a>
- </p>
- <p class="level-item">
- <a>Deleted</a>
- </p>
- <p class="level-item">
- <a class="button is-success">
- New
- </a>
- </p>
- </div>
- </nav>
- </div>
- {% capture nav_example %}
- <!-- Main container -->
- <nav class="level">
- <!-- Left side -->
- <div class="level-left">
- <div class="level-item">
- <p class="subtitle is-5">
- <strong>123</strong> posts
- </p>
- </div>
- <div class="level-item">
- <div class="field has-addons">
- <p class="control">
- <input class="input" type="text" placeholder="Find a post">
- </p>
- <p class="control">
- <button class="button">
- Search
- </button>
- </p>
- </div>
- </div>
- </div>
- <!-- Right side -->
- <div class="level-right">
- <p class="level-item"><strong>All</strong></p>
- <p class="level-item"><a>Published</a></p>
- <p class="level-item"><a>Drafts</a></p>
- <p class="level-item"><a>Deleted</a></p>
- <p class="level-item"><a class="button is-success">New</a></p>
- </div>
- </nav>
- {% endcapture %}
- <div class="example">
- {{nav_example}}
- </div>
- {% highlight html %}
- {{nav_example}}
- {% endhighlight %}
- <hr>
- <h3 class="title">Centered level</h3>
- <div class="content">
- If you want a <strong>centered level</strong>, you can use as many <code>level-item</code> as you want, as long as they are <strong>direct</strong> children of the <code>level</code> container.
- </div>
- {% capture nav_centered_example %}
- <nav class="level">
- <div class="level-item has-text-centered">
- <div>
- <p class="heading">Tweets</p>
- <p class="title">3,456</p>
- </div>
- </div>
- <div class="level-item has-text-centered">
- <div>
- <p class="heading">Following</p>
- <p class="title">123</p>
- </div>
- </div>
- <div class="level-item has-text-centered">
- <div>
- <p class="heading">Followers</p>
- <p class="title">456K</p>
- </div>
- </div>
- <div class="level-item has-text-centered">
- <div>
- <p class="heading">Likes</p>
- <p class="title">789</p>
- </div>
- </div>
- </nav>
- {% endcapture %}
- {% capture nav_centered_bis_example %}
- <nav class="level">
- <p class="level-item has-text-centered">
- <a class="link is-info">Home</a>
- </p>
- <p class="level-item has-text-centered">
- <a class="link is-info">Menu</a>
- </p>
- <p class="level-item has-text-centered">
- <img src="{{ site.url }}/images/bulma-type.png" alt="" style="height: 30px;">
- </p>
- <p class="level-item has-text-centered">
- <a class="link is-info">Reservations</a>
- </p>
- <p class="level-item has-text-centered">
- <a class="link is-info">Contact</a>
- </p>
- </nav>
- {% endcapture %}
- <div class="example">
- {{nav_centered_example}}
- </div>
- {% highlight html %}
- {{nav_centered_example}}
- {% endhighlight %}
- <div class="example">
- {{nav_centered_bis_example}}
- </div>
- {% highlight html %}
- {{nav_centered_bis_example}}
- {% endhighlight %}
- <hr>
- <h3 class="title">Mobile level</h3>
- <div class="content">
- By default, for space concerns, the level is vertical on mobile. If you want the level to be horizontal on mobile as well, add the <code>is-mobile</code> modifier on the <code>level</code> container.
- </div>
- {% capture nav_mobile_example %}
- <nav class="level is-mobile">
- <div class="level-item has-text-centered">
- <div>
- <p class="heading">Tweets</p>
- <p class="title">3,456</p>
- </div>
- </div>
- <div class="level-item has-text-centered">
- <div>
- <p class="heading">Following</p>
- <p class="title">123</p>
- </div>
- </div>
- <div class="level-item has-text-centered">
- <div>
- <p class="heading">Followers</p>
- <p class="title">456K</p>
- </div>
- </div>
- <div class="level-item has-text-centered">
- <div>
- <p class="heading">Likes</p>
- <p class="title">789</p>
- </div>
- </div>
- </nav>
- {% endcapture %}
- <div class="example">
- {{nav_mobile_example}}
- </div>
- {% highlight html %}
- {{nav_mobile_example}}
- {% endhighlight %}
- </div>
- </section>
|