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="show">...</div> | |
| <div class="hidden">...</div> | |
| <style type="text/css"> | |
| /* Classes - These are included in bootstrap, just use above classes on elements. */ | |
| .show { | |
| display: block !important; | |
| } | |
| .hidden { | |
| display: none !important; |
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="row"> | |
| <div class="col-md-1"> | |
| .col-md-1 | |
| </div> | |
| <div class="col-md-1"> | |
| .col-md-1 | |
| </div> | |
| <div class="col-md-1"> | |
| .col-md-1 | |
| </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
| <span class="glyphicon glyphicon-search"></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
| <button type="button" class="btn btn-default btn-lg"> | |
| <span class="glyphicon glyphicon-star"></span> Star | |
| </button> |
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="dropdown"> | |
| <button class="btn dropdown-toggle sr-only" type="button" id="dropdownMenu1" data-toggle="dropdown"> | |
| Dropdown | |
| <span class="caret"></span> | |
| </button> | |
| <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1"> | |
| <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Action</a></li> | |
| <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Another action</a></li> | |
| <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Something else here</a></li> | |
| <li role="presentation" class="divider"></li> |
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="dropdown-menu pull-right" role="menu" aria-labelledby="dLabel"> | |
| ... | |
| </ul> |
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="dropdown-menu" role="menu" aria-labelledby="dropdownMenu2"> | |
| <li role="presentation" class="dropdown-header">Dropdown header</li> | |
| ... | |
| <li role="presentation" class="divider"></li> | |
| <li role="presentation" class="dropdown-header">Dropdown header</li> | |
| ... | |
| </ul> |
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="dropdown-menu" role="menu" aria-labelledby="dropdownMenu3"> | |
| <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Regular link</a></li> | |
| <li role="presentation" class="disabled"><a role="menuitem" tabindex="-1" href="#">Disabled link</a></li> | |
| <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Another link</a></li> | |
| </ul> |
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
| <form role="form"> | |
| <div class="form-group"> | |
| <label for="exampleInputEmail1">Email address</label> | |
| <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email"> | |
| </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"> |
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
| <form class="form-inline" role="form"> | |
| <div class="form-group"> | |
| <label class="sr-only" for="exampleInputEmail2">Email address</label> | |
| <input type="email" class="form-control" id="exampleInputEmail2" placeholder="Enter email"> | |
| </div> | |
| <div class="form-group"> | |
| <label class="sr-only" for="exampleInputPassword2">Password</label> | |
| <input type="password" class="form-control" id="exampleInputPassword2" placeholder="Password"> | |
| </div> | |
| <div class="checkbox"> |