Created
November 6, 2013 06:02
-
-
Save bMinaise/7331641 to your computer and use it in GitHub Desktop.
Bootstrap 3 - Outlined Square Buttons
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="container"> | |
<div class="row"> | |
<div class="col-lg-3"> | |
<p><a href="#" class="btn btn-outlined btn-primary">Demo Primary Button</a></p> | |
<p><a href="#" class="btn btn-outlined btn-success">Demo Success Button</a></p> | |
<p><a href="#" class="btn btn-outlined btn-info">Demo Info Button</a></p> | |
<p><a href="#" class="btn btn-outlined btn-warning">Demo Warning Button</a></p> | |
<p><a href="#" class="btn btn-outlined btn-danger">Demo Danger Button</a></p> | |
</div> | |
<div class="col-lg-4"> | |
<p><a href="#" class="btn btn-outlined btn-block btn-primary">Demo Block Primary Button</a></p> | |
<p><a href="#" class="btn btn-outlined btn-block btn-success">Demo Block Success Button</a></p> | |
<p><a href="#" class="btn btn-outlined btn-block btn-info">Demo Block Info Button</a></p> | |
<p><a href="#" class="btn btn-outlined btn-block btn-warning">Demo Block Warning Button</a></p> | |
<p><a href="#" class="btn btn-outlined btn-block btn-danger">Demo Block Danger Button</a></p> | |
</div> | |
</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
body{padding-top:30px;} | |
.btn-outlined { | |
border-radius: 0; | |
-webkit-transition: all 0.3s; | |
-moz-transition: all 0.3s; | |
transition: all 0.3s; | |
} | |
.btn-outlined.btn-primary { | |
background: none; | |
border: 3px solid #428bca; | |
color: #428bca; | |
} | |
.btn-outlined.btn-primary:hover, | |
.btn-outlined.btn-primary:active { | |
color: #FFF; | |
background: #428bca; | |
border-color: #428bca: | |
} | |
.btn-outlined.btn-success { | |
background: none; | |
border: 3px solid #5cb85c; | |
color: #5cb85c; | |
} | |
.btn-outlined.btn-success:hover, | |
.btn-outlined.btn-success:active { | |
color: #FFF; | |
background: #47a447; | |
} | |
.btn-outlined.btn-info { | |
background: none; | |
border: 3px solid #5bc0de; | |
color: #5bc0de; | |
} | |
.btn-outlined.btn-info:hover, | |
.btn-outlined.btn-info:active { | |
color: #FFF; | |
background: #39b3d7; | |
} | |
.btn-outlined.btn-warning { | |
background: none; | |
border: 3px solid #f0ad4e; | |
color: #f0ad4e; | |
} | |
.btn-outlined.btn-warning:hover, | |
.btn-outlined.btn-warning:active { | |
color: #FFF; | |
background: #ed9c28; | |
} | |
.btn-outlined.btn-danger { | |
background: none; | |
border: 3px solid #d9534f; | |
color: #d9534f; | |
} | |
.btn-outlined.btn-danger:hover, | |
.btn-outlined.btn-danger:active { | |
color: #FFF; | |
background: #d2322d; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Line 18 theres an closing ":" which should be a ";".