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="#" class="btn btn-primary btn-lg active" role="button">Primary link</a> | |
| <a href="#" class="btn btn-default btn-lg active" role="button">Link</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
| <a href="#" class="btn btn-primary btn-lg disabled" role="button">Primary link</a> | |
| <a href="#" class="btn btn-default btn-lg disabled" role="button">Link</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
| <button type="button" class="close" aria-hidden="true">×</button> | |
| <span class="caret"></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="pull-left">...</div> | |
| <div class="pull-right">...</div> | |
| <!-- Classes --> | |
| <style type='text/css'> | |
| .pull-left { | |
| float: left !important; | |
| } | |
| .pull-right { |
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="center-block">...</div> | |
| <style type="text/css"> | |
| /* Classes */ | |
| .center-block { | |
| display: block; | |
| margin-left: auto; | |
| margin-right: auto; | |
| } |
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
| <!-- Usage as a class --> | |
| <div class="clearfix">...</div> | |
| <style type="text/css"> | |
| /* Mixin itself */ | |
| .clearfix() { | |
| &:before, | |
| &:after { | |
| content: " "; |