Mudanças entre as edições de "Ajuda:Guia de edição/Modelos"

Linha 23: Linha 23:
 
</h3>
 
</h3>
 
<p class="lead">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.</p>
 
<p class="lead">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.</p>
 +
 +
 +
 +
 +
<h2>Example body text</h2>
 +
<p>Nullam quis risus eget <a href="#">urna mollis ornare</a> vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.</p>
 +
<p><small>This line of text is meant to be treated as fine print.</small></p>
 +
<p>The following is <strong>rendered as bold text</strong>.</p>
 +
<p>The following is <em>rendered as italicized text</em>.</p>
 +
<p>An abbreviation of the word attribute is <abbr title="attribute">attr</abbr>.</p>
 +
 +
 +
 +
 +
<h2>Emphasis classes</h2>
 +
<p class="text-muted">Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.</p>
 +
<p class="text-primary">Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
 +
<p class="text-secondary">Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
 +
<p class="text-warning">Etiam porta sem malesuada magna mollis euismod.</p>
 +
<p class="text-danger">Donec ullamcorper nulla non metus auctor fringilla.</p>
 +
<p class="text-success">Duis mollis, est non commodo luctus, nisi erat porttitor ligula.</p>
 +
<p class="text-info">Maecenas sed diam eget risus varius blandit sit amet non magna.</p>
 +
 +
 +
<blockquote class="blockquote">
 +
  <p class="mb-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
 +
  <footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
 +
</blockquote>
 +
 +
<blockquote class="blockquote text-center">
 +
  <p class="mb-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
 +
  <footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
 +
</blockquote>
 +
 +
<blockquote class="blockquote text-right">
 +
  <p class="mb-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
 +
  <footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
 +
</blockquote>
 +
 +
 +
<table class="table table-hover">
 +
  <thead>
 +
    <tr>
 +
      <th scope="col">Type</th>
 +
      <th scope="col">Column heading</th>
 +
      <th scope="col">Column heading</th>
 +
      <th scope="col">Column heading</th>
 +
    </tr>
 +
  </thead>
 +
  <tbody>
 +
    <tr class="table-active">
 +
      <th scope="row">Active</th>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
    </tr>
 +
    <tr>
 +
      <th scope="row">Default</th>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
    </tr>
 +
    <tr class="table-primary">
 +
      <th scope="row">Primary</th>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
    </tr>
 +
    <tr class="table-secondary">
 +
      <th scope="row">Secondary</th>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
    </tr>
 +
    <tr class="table-success">
 +
      <th scope="row">Success</th>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
    </tr>
 +
    <tr class="table-danger">
 +
      <th scope="row">Danger</th>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
    </tr>
 +
    <tr class="table-warning">
 +
      <th scope="row">Warning</th>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
    </tr>
 +
    <tr class="table-info">
 +
      <th scope="row">Info</th>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
    </tr>
 +
    <tr class="table-light">
 +
      <th scope="row">Light</th>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
    </tr>
 +
    <tr class="table-dark">
 +
      <th scope="row">Dark</th>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
      <td>Column content</td>
 +
    </tr>
 +
  </tbody>
 +
</table>
 +
 +
== Forms ==
 +
 +
 +
<form>
 +
  <fieldset>
 +
    <legend>Legend</legend>
 +
    <div class="form-group row">
 +
      <label for="staticEmail" class="col-sm-2 col-form-label">Email</label>
 +
      <div class="col-sm-10">
 +
        <input type="text" readonly="" class="form-control-plaintext" id="staticEmail" value="email@example.com">
 +
      </div>
 +
    </div>
 +
    <div class="form-group">
 +
      <label for="exampleInputEmail1">Email address</label>
 +
      <input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
 +
      <small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
 +
    </div>
 +
    <div class="form-group">
 +
      <label for="exampleInputPassword1">Password</label>
 +
      <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
 +
    </div>
 +
    <div class="form-group">
 +
      <label for="exampleSelect1">Example select</label>
 +
      <select class="form-control" id="exampleSelect1">
 +
        <option>1</option>
 +
        <option>2</option>
 +
        <option>3</option>
 +
        <option>4</option>
 +
        <option>5</option>
 +
      </select>
 +
    </div>
 +
    <div class="form-group">
 +
      <label for="exampleSelect2">Example multiple select</label>
 +
      <select multiple="" class="form-control" id="exampleSelect2">
 +
        <option>1</option>
 +
        <option>2</option>
 +
        <option>3</option>
 +
        <option>4</option>
 +
        <option>5</option>
 +
      </select>
 +
    </div>
 +
    <div class="form-group">
 +
      <label for="exampleTextarea">Example textarea</label>
 +
      <textarea class="form-control" id="exampleTextarea" rows="3"></textarea>
 +
    </div>
 +
    <div class="form-group">
 +
      <label for="exampleInputFile">File input</label>
 +
      <input type="file" class="form-control-file" id="exampleInputFile" aria-describedby="fileHelp">
 +
      <small id="fileHelp" class="form-text text-muted">This is some placeholder block-level help text for the above input. It's a bit lighter and easily wraps to a new line.</small>
 +
    </div>
 +
    <fieldset class="form-group">
 +
      <legend>Radio buttons</legend>
 +
      <div class="form-check">
 +
        <label class="form-check-label">
 +
          <input type="radio" class="form-check-input" name="optionsRadios" id="optionsRadios1" value="option1" checked="">
 +
          Option one is this and that—be sure to include why it's great
 +
        </label>
 +
      </div>
 +
      <div class="form-check">
 +
        <label class="form-check-label">
 +
          <input type="radio" class="form-check-input" name="optionsRadios" id="optionsRadios2" value="option2">
 +
          Option two can be something else and selecting it will deselect option one
 +
        </label>
 +
      </div>
 +
      <div class="form-check disabled">
 +
        <label class="form-check-label">
 +
          <input type="radio" class="form-check-input" name="optionsRadios" id="optionsRadios3" value="option3" disabled="">
 +
          Option three is disabled
 +
        </label>
 +
      </div>
 +
    </fieldset>
 +
    <fieldset class="form-group">
 +
      <legend>Checkboxes</legend>
 +
      <div class="form-check">
 +
        <label class="form-check-label">
 +
          <input class="form-check-input" type="checkbox" value="" checked="">
 +
          Option one is this and that—be sure to include why it's great
 +
        </label>
 +
      </div>
 +
      <div class="form-check disabled">
 +
        <label class="form-check-label">
 +
          <input class="form-check-input" type="checkbox" value="" disabled="">
 +
          Option two is disabled
 +
        </label>
 +
      </div>
 +
    </fieldset>
 +
    <fieldset class="form-group">
 +
      <legend>Sliders</legend>
 +
      <label for="customRange1">Example range</label>
 +
      <input type="range" class="custom-range" id="customRange1">
 +
    </fieldset>
 +
    <button type="submit" class="btn btn-primary">Submit</button>
 +
  </fieldset>
 +
</form>
 +
 +
 +
 +
 +
<div class="form-group">
 +
  <fieldset disabled="">
 +
    <label class="control-label" for="disabledInput">Disabled input</label>
 +
    <input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here..." disabled="">
 +
  </fieldset>
 +
</div>
 +
 +
<div class="form-group">
 +
  <fieldset>
 +
    <label class="control-label" for="readOnlyInput">Readonly input</label>
 +
    <input class="form-control" id="readOnlyInput" type="text" placeholder="Readonly input here..." readonly="">
 +
  </fieldset>
 +
</div>
 +
 +
<div class="form-group has-success">
 +
  <label class="form-control-label" for="inputValid">Valid input</label>
 +
  <input type="text" value="correct value" class="form-control is-valid" id="inputValid">
 +
  <div class="valid-feedback">Success! You've done it.</div>
 +
</div>
 +
 +
<div class="form-group has-danger">
 +
  <label class="form-control-label" for="inputInvalid">Invalid input</label>
 +
  <input type="text" value="wrong value" class="form-control is-invalid" id="inputInvalid">
 +
  <div class="invalid-feedback">Sorry, that username's taken. Try another?</div>
 +
</div>
 +
 +
<div class="form-group">
 +
  <label class="col-form-label col-form-label-lg" for="inputLarge">Large input</label>
 +
  <input class="form-control form-control-lg" type="text" placeholder=".form-control-lg" id="inputLarge">
 +
</div>
 +
 +
<div class="form-group">
 +
  <label class="col-form-label" for="inputDefault">Default input</label>
 +
  <input type="text" class="form-control" placeholder="Default input" id="inputDefault">
 +
</div>
 +
 +
<div class="form-group">
 +
  <label class="col-form-label col-form-label-sm" for="inputSmall">Small input</label>
 +
  <input class="form-control form-control-sm" type="text" placeholder=".form-control-sm" id="inputSmall">
 +
</div>
 +
 +
<div class="form-group">
 +
  <label class="control-label">Input addons</label>
 +
  <div class="form-group">
 +
    <div class="input-group mb-3">
 +
      <div class="input-group-prepend">
 +
        <span class="input-group-text">$</span>
 +
      </div>
 +
      <input type="text" class="form-control" aria-label="Amount (to the nearest dollar)">
 +
      <div class="input-group-append">
 +
        <span class="input-group-text">.00</span>
 +
      </div>
 +
    </div>
 +
  </div>
 +
</div>
 +
 +
 +
== Navs ==
 +
 +
 +
<ul class="nav nav-tabs">
 +
  <li class="nav-item">
 +
    <a class="nav-link active" data-toggle="tab" href="#home">Home</a>
 +
  </li>
 +
  <li class="nav-item">
 +
    <a class="nav-link" data-toggle="tab" href="#profile">Profile</a>
 +
  </li>
 +
  <li class="nav-item">
 +
    <a class="nav-link disabled" href="#">Disabled</a>
 +
  </li>
 +
  <li class="nav-item dropdown">
 +
    <a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Dropdown</a>
 +
    <div class="dropdown-menu">
 +
      <a class="dropdown-item" href="#">Action</a>
 +
      <a class="dropdown-item" href="#">Another action</a>
 +
      <a class="dropdown-item" href="#">Something else here</a>
 +
      <div class="dropdown-divider"></div>
 +
      <a class="dropdown-item" href="#">Separated link</a>
 +
    </div>
 +
  </li>
 +
</ul>
 +
<div id="myTabContent" class="tab-content">
 +
  <div class="tab-pane fade show active" id="home">
 +
    <p>Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</p>
 +
  </div>
 +
  <div class="tab-pane fade" id="profile">
 +
    <p>Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit.</p>
 +
  </div>
 +
  <div class="tab-pane fade" id="dropdown1">
 +
    <p>Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork.</p>
 +
  </div>
 +
  <div class="tab-pane fade" id="dropdown2">
 +
    <p>Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater.</p>
 +
  </div>
 +
</div>
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
__NOTOC__

Edição das 10h38min de 26 de outubro de 2021

<nav class="navbar navbar-expand-lg navbar-dark bg-primary"><a class="navbar-brand" href="#">Navbar</a><button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor01" aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation"></button>

</nav>


<button type="button" class="btn btn-primary">Primary</button> <button type="button" class="btn btn-secondary">Secondary</button> <button type="button" class="btn btn-success">Success</button> <button type="button" class="btn btn-info">Info</button> <button type="button" class="btn btn-warning">Warning</button> <button type="button" class="btn btn-danger">Danger</button> <button type="button" class="btn btn-link">Link</button>


Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Heading with muted text

Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.



Example body text

Nullam quis risus eget <a href="#">urna mollis ornare</a> vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.

This line of text is meant to be treated as fine print.

The following is rendered as bold text.

The following is rendered as italicized text.

An abbreviation of the word attribute is attr.



Emphasis classes

Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.

Nullam id dolor id nibh ultricies vehicula ut id elit.

Pellentesque ornare sem lacinia quam venenatis vestibulum.

Etiam porta sem malesuada magna mollis euismod.

Donec ullamcorper nulla non metus auctor fringilla.

Duis mollis, est non commodo luctus, nisi erat porttitor ligula.

Maecenas sed diam eget risus varius blandit sit amet non magna.


Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

<footer class="blockquote-footer">Someone famous in Source Title</footer>

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

<footer class="blockquote-footer">Someone famous in Source Title</footer>

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

<footer class="blockquote-footer">Someone famous in Source Title</footer>


<thead> </thead> <tbody> </tbody>
Type Column heading Column heading Column heading
Active Column content Column content Column content
Default Column content Column content Column content
Primary Column content Column content Column content
Secondary Column content Column content Column content
Success Column content Column content Column content
Danger Column content Column content Column content
Warning Column content Column content Column content
Info Column content Column content Column content
Light Column content Column content Column content
Dark Column content Column content Column content

Forms[editar | editar código-fonte]

<form>

 <fieldset>
   <legend>Legend</legend>
     <label for="staticEmail" class="col-sm-2 col-form-label">Email</label>
       <input type="text" readonly="" class="form-control-plaintext" id="staticEmail" value="email@example.com">
     <label for="exampleInputEmail1">Email address</label>
     <input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
     We'll never share your email with anyone else.
     <label for="exampleInputPassword1">Password</label>
     <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
     <label for="exampleSelect1">Example select</label>
     <select class="form-control" id="exampleSelect1">
       <option>1</option>
       <option>2</option>
       <option>3</option>
       <option>4</option>
       <option>5</option>
     </select>
     <label for="exampleSelect2">Example multiple select</label>
     <select multiple="" class="form-control" id="exampleSelect2">
       <option>1</option>
       <option>2</option>
       <option>3</option>
       <option>4</option>
       <option>5</option>
     </select>
     <label for="exampleTextarea">Example textarea</label>
     <textarea class="form-control" id="exampleTextarea" rows="3"></textarea>
     <label for="exampleInputFile">File input</label>
     <input type="file" class="form-control-file" id="exampleInputFile" aria-describedby="fileHelp">
     This is some placeholder block-level help text for the above input. It's a bit lighter and easily wraps to a new line.
   <fieldset class="form-group">
     <legend>Radio buttons</legend>
       <label class="form-check-label">
         <input type="radio" class="form-check-input" name="optionsRadios" id="optionsRadios1" value="option1" checked="">
         Option one is this and that—be sure to include why it's great
       </label>
       <label class="form-check-label">
         <input type="radio" class="form-check-input" name="optionsRadios" id="optionsRadios2" value="option2">
         Option two can be something else and selecting it will deselect option one
       </label>
       <label class="form-check-label">
         <input type="radio" class="form-check-input" name="optionsRadios" id="optionsRadios3" value="option3" disabled="">
         Option three is disabled
       </label>
   </fieldset>
   <fieldset class="form-group">
     <legend>Checkboxes</legend>
       <label class="form-check-label">
         <input class="form-check-input" type="checkbox" value="" checked="">
         Option one is this and that—be sure to include why it's great
       </label>
       <label class="form-check-label">
         <input class="form-check-input" type="checkbox" value="" disabled="">
         Option two is disabled
       </label>
   </fieldset>
   <fieldset class="form-group">
     <legend>Sliders</legend>
     <label for="customRange1">Example range</label>
     <input type="range" class="custom-range" id="customRange1">
   </fieldset>
   <button type="submit" class="btn btn-primary">Submit</button>
 </fieldset>

</form>



 <fieldset disabled="">
   <label class="control-label" for="disabledInput">Disabled input</label>
   <input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here..." disabled="">
 </fieldset>
 <fieldset>
   <label class="control-label" for="readOnlyInput">Readonly input</label>
   <input class="form-control" id="readOnlyInput" type="text" placeholder="Readonly input here..." readonly="">
 </fieldset>
 <label class="form-control-label" for="inputValid">Valid input</label>
 <input type="text" value="correct value" class="form-control is-valid" id="inputValid">
Success! You've done it.
 <label class="form-control-label" for="inputInvalid">Invalid input</label>
 <input type="text" value="wrong value" class="form-control is-invalid" id="inputInvalid">
Sorry, that username's taken. Try another?
 <label class="col-form-label col-form-label-lg" for="inputLarge">Large input</label>
 <input class="form-control form-control-lg" type="text" placeholder=".form-control-lg" id="inputLarge">
 <label class="col-form-label" for="inputDefault">Default input</label>
 <input type="text" class="form-control" placeholder="Default input" id="inputDefault">
 <label class="col-form-label col-form-label-sm" for="inputSmall">Small input</label>
 <input class="form-control form-control-sm" type="text" placeholder=".form-control-sm" id="inputSmall">
 <label class="control-label">Input addons</label>
       $
     <input type="text" class="form-control" aria-label="Amount (to the nearest dollar)">
       .00


Navs[editar | editar código-fonte]

Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.

Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit.