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

Linha 330: Linha 330:
 
</div>
 
</div>
  
 +
== Pills ==
  
 +
<ul class="nav nav-pills">
 +
  <li class="nav-item">
 +
    <a class="nav-link active" href="#">Active</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>
 +
  <li class="nav-item">
 +
    <a class="nav-link" href="#">Link</a>
 +
  </li>
 +
  <li class="nav-item">
 +
    <a class="nav-link disabled" href="#">Disabled</a>
 +
  </li>
 +
</ul>
  
  
 +
== Breadcrumbs ==
  
 +
<ol class="breadcrumb">
 +
  <li class="breadcrumb-item active">Home</li>
 +
</ol>
 +
<ol class="breadcrumb">
 +
  <li class="breadcrumb-item"><a href="#">Home</a></li>
 +
  <li class="breadcrumb-item active">Library</li>
 +
</ol>
 +
<ol class="breadcrumb">
 +
  <li class="breadcrumb-item"><a href="#">Home</a></li>
 +
  <li class="breadcrumb-item"><a href="#">Library</a></li>
 +
  <li class="breadcrumb-item active">Data</li>
 +
</ol>
  
 +
== Patination ==
  
 +
<div>
 +
  <ul class="pagination">
 +
    <li class="page-item disabled">
 +
      <a class="page-link" href="#">&laquo;</a>
 +
    </li>
 +
    <li class="page-item active">
 +
      <a class="page-link" href="#">1</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">2</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">3</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">4</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">5</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">&raquo;</a>
 +
    </li>
 +
  </ul>
 +
</div>
  
 +
<div>
 +
  <ul class="pagination pagination-lg">
 +
    <li class="page-item disabled">
 +
      <a class="page-link" href="#">&laquo;</a>
 +
    </li>
 +
    <li class="page-item active">
 +
      <a class="page-link" href="#">1</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">2</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">3</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">4</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">5</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">&raquo;</a>
 +
    </li>
 +
  </ul>
 +
</div>
  
 +
<div>
 +
  <ul class="pagination pagination-sm">
 +
    <li class="page-item disabled">
 +
      <a class="page-link" href="#">&laquo;</a>
 +
    </li>
 +
    <li class="page-item active">
 +
      <a class="page-link" href="#">1</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">2</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">3</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">4</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">5</a>
 +
    </li>
 +
    <li class="page-item">
 +
      <a class="page-link" href="#">&raquo;</a>
 +
    </li>
 +
  </ul>
 +
</div>
 +
 +
 +
== Indicators ==
 +
 +
=== Alerts ===
 +
<div class="alert alert-dismissible alert-warning">
 +
  <button type="button" class="close" data-dismiss="alert">&times;</button>
 +
  <h4 class="alert-heading">Warning!</h4>
 +
  <p class="mb-0">Best check yo self, you're not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, <a href="#" class="alert-link">vel scelerisque nisl consectetur et</a>.</p>
 +
</div>
 +
 +
<div class="alert alert-dismissible alert-danger">
 +
  <button type="button" class="close" data-dismiss="alert">&times;</button>
 +
  <strong>Oh snap!</strong> <a href="#" class="alert-link">Change a few things up</a> and try submitting again.
 +
</div>
 +
 +
<div class="alert alert-dismissible alert-success">
 +
  <button type="button" class="close" data-dismiss="alert">&times;</button>
 +
  <strong>Well done!</strong> You successfully read <a href="#" class="alert-link">this important alert message</a>.
 +
</div>
 +
 +
<div class="alert alert-dismissible alert-info">
 +
  <button type="button" class="close" data-dismiss="alert">&times;</button>
 +
  <strong>Heads up!</strong> This <a href="#" class="alert-link">alert needs your attention</a>, but it's not super important.
 +
</div>
 +
 +
<div class="alert alert-dismissible alert-primary">
 +
  <button type="button" class="close" data-dismiss="alert">&times;</button>
 +
  <strong>Oh snap!</strong> <a href="#" class="alert-link">Change a few things up</a> and try submitting again.
 +
</div>
 +
 +
<div class="alert alert-dismissible alert-secondary">
 +
  <button type="button" class="close" data-dismiss="alert">&times;</button>
 +
  <strong>Well done!</strong> You successfully read <a href="#" class="alert-link">this important alert message</a>.
 +
</div>
 +
 +
<div class="alert alert-dismissible alert-light">
 +
  <button type="button" class="close" data-dismiss="alert">&times;</button>
 +
  <strong>Heads up!</strong> This <a href="#" class="alert-link">alert needs your attention</a>, but it's not super important.
 +
</div>
 +
 +
== Badges ==
 +
 +
<span class="badge badge-primary">Primary</span>
 +
<span class="badge badge-secondary">Secondary</span>
 +
<span class="badge badge-success">Success</span>
 +
<span class="badge badge-danger">Danger</span>
 +
<span class="badge badge-warning">Warning</span>
 +
<span class="badge badge-info">Info</span>
 +
<span class="badge badge-light">Light</span>
 +
<span class="badge badge-dark">Dark</span>
 +
 +
== Containers ==
 +
<div class="jumbotron">
 +
  <h1 class="display-3">Hello, world!</h1>
 +
  <p class="lead">This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
 +
  <hr class="my-4">
 +
  <p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
 +
  <p class="lead">
 +
    <a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a>
 +
  </p>
 +
</div>
  
  

Edição das 10h42min 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.

Pills[editar | editar código-fonte]


Breadcrumbs[editar | editar código-fonte]

Patination[editar | editar código-fonte]

  • <a class="page-link" href="#">«</a>
  • <a class="page-link" href="#">1</a>
  • <a class="page-link" href="#">2</a>
  • <a class="page-link" href="#">3</a>
  • <a class="page-link" href="#">4</a>
  • <a class="page-link" href="#">5</a>
  • <a class="page-link" href="#">»</a>
  • <a class="page-link" href="#">«</a>
  • <a class="page-link" href="#">1</a>
  • <a class="page-link" href="#">2</a>
  • <a class="page-link" href="#">3</a>
  • <a class="page-link" href="#">4</a>
  • <a class="page-link" href="#">5</a>
  • <a class="page-link" href="#">»</a>
  • <a class="page-link" href="#">«</a>
  • <a class="page-link" href="#">1</a>
  • <a class="page-link" href="#">2</a>
  • <a class="page-link" href="#">3</a>
  • <a class="page-link" href="#">4</a>
  • <a class="page-link" href="#">5</a>
  • <a class="page-link" href="#">»</a>


Indicators[editar | editar código-fonte]

Alerts[editar | editar código-fonte]

 <button type="button" class="close" data-dismiss="alert">×</button>

Warning!

Best check yo self, you're not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, <a href="#" class="alert-link">vel scelerisque nisl consectetur et</a>.

 <button type="button" class="close" data-dismiss="alert">×</button>
 Oh snap! <a href="#" class="alert-link">Change a few things up</a> and try submitting again.
 <button type="button" class="close" data-dismiss="alert">×</button>
 Well done! You successfully read <a href="#" class="alert-link">this important alert message</a>.
 <button type="button" class="close" data-dismiss="alert">×</button>
 Heads up! This <a href="#" class="alert-link">alert needs your attention</a>, but it's not super important.
 <button type="button" class="close" data-dismiss="alert">×</button>
 Oh snap! <a href="#" class="alert-link">Change a few things up</a> and try submitting again.
 <button type="button" class="close" data-dismiss="alert">×</button>
 Well done! You successfully read <a href="#" class="alert-link">this important alert message</a>.
 <button type="button" class="close" data-dismiss="alert">×</button>
 Heads up! This <a href="#" class="alert-link">alert needs your attention</a>, but it's not super important.

Badges[editar | editar código-fonte]

Primary Secondary Success Danger Warning Info Light Dark

Containers[editar | editar código-fonte]

Hello, world!

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.


It uses utility classes for typography and spacing to space content out within the larger container.

<a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a>