/* Table of Contents ================================================== #Button #Button Sizes #Button Colors #Button Links #Button Icons #Button Outlines #Button Styles #Button Group #Button Toolbar #Button Data Toggles */ /* #Button ================================================== */ .btn { -webkit-appearance: none; -moz-appearance: none; background: rgba(246,247,249,1); border: 1px solid rgba(217,222,225,1); border-radius: 2px; -moz-box-sizing: border-box; box-sizing: border-box; color: rgba(71,74,84,1); cursor: pointer; display: inline-block; font-size: 13px; -webkit-font-smoothing: antialiased; font-weight: bold; line-height: 13px; margin: 0; padding: 12px 20px; text-align: center; text-decoration: none; text-rendering: geometricPrecision; -webkit-transition: all 0.3s linear; transition: all 0.3s linear; vertical-align: middle; } .btn:active, .btn.active, .btn:hover, .btn:focus, .btn[disabled], .btn[disabled]:hover, .open > .dropdown-toggle.btn { background: rgba(236,237,239,1); text-decoration: none; } .btn[disabled], .btn[disabled]:hover { color: rgba(71,74,84,1); cursor: not-allowed; } .btn:active, .btn[disabled]:active { -webkit-transition: all 0.1s linear; transition: all 0.1s linear; } /* #Button Sizes ================================================== */ .btn-large { border-radius: 3px; font-size: 15px; line-height: 15px; padding: 15px 30px; } .btn-small { font-size: 11px; line-height: 11px; padding: 7px 15px 8px 15px; } .btn-mini { font-size: 9px; line-height: 9px; padding: 6px 10px; } .btn-block, button.btn-block, input.btn-block { -moz-box-sizing: border-box; box-sizing: border-box; display: block; min-width: 100%; padding-right: 0; padding-left: 0; width: 100%; } /* #Button Colors ================================================== */ .btn-black, .btn-black[disabled], .btn-blue, .btn-blue[disabled], .btn-green, .btn-green[disabled], .btn-red, .btn-red[disabled] { color: rgba(255,255,255,1); } .btn-black { background: rgba(71,74,84,1); border-color: rgba(1,4,14,1); } .btn-black:active, .btn-black.active, .btn-black:hover, .btn-black:focus, .btn-black[disabled], .btn-black[disabled]:hover, .open > .dropdown-toggle.btn-black { background: rgba(61,64,74,1); } .btn-blue { background: rgba(58,144,216,1); border-color: rgba(8,94,166,1); } .btn-blue:active, .btn-blue.active, .btn-blue:hover, .btn-blue:focus, .btn-blue[disabled], .btn-blue[disabled]:hover, .open > .dropdown-toggle.btn-blue { background: rgba(48,134,206,1); } .btn-green { background: rgba(122,179,23,1); border-color: rgba(72,129,3,1); } .btn-green:active, .btn-green.active, .btn-green:hover, .btn-green:focus, .btn-green[disabled], .btn-green[disabled]:hover, .open > .dropdown-toggle.btn-green { background: rgba(112,169,13,1); } .btn-red { background: rgba(220,74,56,1); border-color: rgba(180,34,16,1); } .btn-red:active, .btn-red.active, .btn-red:hover, .btn-red:focus, .btn-red[disabled], .btn-red[disabled]:hover, .open > .dropdown-toggle.btn-red { background: rgba(210,64,46,1); } .btn-white { background: rgba(255,255,255,1); } .btn-white:active, .btn-white.active, .btn-white:hover, .btn-white:focus, .btn-white[disabled], .btn-white[disabled]:hover, .open > .dropdown-toggle.btn-white { background: rgba(246,247,249,1); } /* #Button Links ================================================== */ .btn-link { background: transparent; border-color: transparent; color: rgba(174,182,192,1); padding: 0; } .btn-link:active, .btn-link.active, .btn-link:hover, .btn-link:focus { background: transparent; color: rgba(71,74,84,1); } /* #Button Icons ================================================== */ .btn-icon { font-size: 17px; line-height: 17px; padding: 10px 13px; } .btn-large.btn-icon { font-size: 23px; line-height: 23px; padding: 11px 13px; } .btn-small.btn-icon { font-size: 14px; line-height: 14px; padding: 6px 7px 6px 6px; } .btn-mini.btn-icon { font-size: 11px; line-height: 11px; padding: 5px 6px; } /* #Button Outlines ================================================== */ .btn-outline { background: transparent; color: rgba(174,182,192,1); } .btn-outline:active, .btn-outline.active, .btn-outline:hover, .btn-outline:focus { background: transparent; color: rgba(71,74,84,1); } .btn-outline[disabled], .btn-outline[disabled]:hover { color: rgba(174,182,192,1); } .btn-outline.btn-black { border-color: rgba(71,74,84,1); color: rgba(71,74,84,1); } .btn-outline.btn-black:active, .btn-outline.btn-black.active, .btn-outline.btn-black:hover, .btn-outline.btn-black:focus { color: rgba(61,64,74,1); } .btn-outline.btn-blue { border-color: rgba(58,144,216,1); color: rgba(58,144,216,1); } .btn-outline.btn-blue:active, .btn-outline.btn-blue.active, .btn-outline.btn-blue:hover, .btn-outline.btn-blue:focus { color: rgba(48,134,206,1); } .btn-outline.btn-green { border-color: rgba(122,179,23,1); color: rgba(122,179,23,1); } .btn-outline.btn-green:active, .btn-outline.btn-green.active, .btn-outline.btn-green:hover, .btn-outline.btn-green:focus { color: rgba(102,159,3,1); } .btn-outline.btn-red { border-color: rgba(220,74,56,1); color: rgba(220,74,56,1); } .btn-outline.btn-red:active, .btn-outline.btn-red.active, .btn-outline.btn-red:hover, .btn-outline.btn-red:focus { color: rgba(210,64,46,1); } .btn-outline.btn-white { border-color: rgba(255,255,255,1); color: rgba(255,255,255,1); } .btn-outline.btn-white:active, .btn-outline.btn-white.active, .btn-outline.btn-white:hover, .btn-outline.btn-white:focus { color: rgba(71,74,84,1); } /* #Button Styles ================================================== */ .btn-circle { border-radius: 500px; } .btn-uppercase { text-transform: uppercase; } /* #Button Group ================================================== */ .btn-group { display: inline-block; font-size: 0; position: relative; white-space: nowrap; vertical-align: middle; } .btn-group + .btn-group { margin-left: 5px; } .btn-group.pull-right + .btn-group.pull-right { margin-right: 10px; margin-left: 0; } .btn-group > .btn { border-radius: 0; margin-left: -1px; position: relative; } .btn-group > .btn:first-child { border-bottom-left-radius: 2px; border-top-left-radius: 2px; margin-left: 0; } .btn-group > .btn:last-child, .btn-group > .dropdown-toggle { border-bottom-right-radius: 2px; border-top-right-radius: 2px; } .btn-group > .btn:active, .btn-group > .btn.active, .btn-group > .btn:hover, .btn-group > .btn:focus { z-index: 2; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn-group-justified { border-collapse: separate; display: table; table-layout: fixed; width: 100%; } .btn-group-justified > .btn, .btn-group-justified > .btn-group { display: table-cell; float: none; width: 1%; } .btn-group-justified > .btn-group .btn { width: 100%; } .btn-group-justified > .btn { border-right-width: 0; } .btn-group-justified > .btn:last-child { border-right-width: 1px; } /* #Button Toolbar ================================================== */ .btn-toolbar { font-size: 0; margin-bottom: 10px; margin-top: 10px; } .btn-toolbar > .btn + .btn, .btn-toolbar > .btn-group + .btn, .btn-toolbar > .btn + .btn-group { margin-left: 5px; } /* #Button Data Toggles ================================================== */ [data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .btn > input[type="checkbox"] { position: absolute; z-index: -1; opacity: 0; }