This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="progress progress-striped"> | |
| <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%"> | |
| <span class="sr-only">40% Complete (success)</span> | |
| </div> | |
| </div> | |
| <div class="progress progress-striped"> | |
| <div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%"> | |
| <span class="sr-only">20% Complete</span> | |
| </div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="progress"> | |
| <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%"> | |
| <span class="sr-only">40% Complete (success)</span> | |
| </div> | |
| </div> | |
| <div class="progress"> | |
| <div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%"> | |
| <span class="sr-only">20% Complete</span> | |
| </div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="progress"> | |
| <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;"> | |
| <span class="sr-only">60% Complete</span> | |
| </div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="alert alert-success"> | |
| <strong>Well done!</strong> You successfully read <a href="#" class="alert-link">this important alert message</a>. | |
| </div> | |
| <div class="alert alert-info"> | |
| <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-warning"> | |
| <strong>Warning!</strong> Best check yo self, you're <a href="#" class="alert-link">not looking too good</a>. | |
| </div> | |
| <div class="alert alert-danger"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="alert alert-warning alert-dismissable"> | |
| <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> | |
| <strong>Warning!</strong> Best check yo self, you're not looking too good. | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="alert alert-success"> | |
| <strong>Well done!</strong> You successfully read this important alert message. | |
| </div> | |
| <div class="alert alert-info"> | |
| <strong>Heads up!</strong> This alert needs your attention, but it's not super important. | |
| </div> | |
| <div class="alert alert-warning"> | |
| <strong>Warning!</strong> Best check yo self, you're not looking too good. | |
| </div> | |
| <div class="alert alert-danger"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ul class="nav nav-pills"> | |
| <li class="active"><a href="#">Home <span class="badge">42</span></a></li> | |
| <li><a href="#">Profile</a></li> | |
| <li><a href="#">Messages <span class="badge">3</span></a></li> | |
| </ul> | |
| <br> | |
| <ul class="nav nav-pills nav-stacked" style="max-width: 260px;"> | |
| <li class="active"> | |
| <a href="#"> | |
| <span class="badge pull-right">42</span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <a href="#">Inbox <span class="badge">42</span></a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <span class="label label-default">Default</span> | |
| <span class="label label-primary">Primary</span> | |
| <span class="label label-success">Success</span> | |
| <span class="label label-info">Info</span> | |
| <span class="label label-warning">Warning</span> | |
| <span class="label label-danger">Danger</span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="bs-example ng-scope"> | |
| <h1>Example heading <span class="label label-default">New</span></h1> | |
| <h2>Example heading <span class="label label-default">New</span></h2> | |
| <h3>Example heading <span class="label label-default">New</span></h3> | |
| <h4>Example heading <span class="label label-default">New</span></h4> | |
| <h5>Example heading <span class="label label-default">New</span></h5> | |
| <h6>Example heading <span class="label label-default">New</span></h6> | |
| </div> |