/* Table of Contents ================================================== #Button #Button Sizes #Button Colors #Button Icons #Button Outlines #Button Group #Button Toolbar #Close Button */ /* #Button ================================================== */ .btn { -webkit-appearance: none; -moz-appearance: none; background: rgba(236,238,241,1); border: none; border-bottom: 1px solid rgba(196,198,201,1); border-radius: 3px; color: rgba(71,74,84,1); display: inline-block; font-size: 13px; -webkit-font-smoothing: antialiased; font-weight: bold; line-height: 13px; margin: 0; padding: 13px 20px 12px 20px; text-align: center; text-decoration: none; text-rendering: geometricPrecision; vertical-align: middle; } .btn:hover { background: rgba(226,228,231,1); text-decoration: none; -webkit-transition: all 0.1s linear; transition: all 0.1s linear; } /* #Button Sizes ================================================== */ .btn-large { font-size: 15px; line-height: 15px; padding: 17px 30px 15px 30px; } .btn-small { border-radius: 2px; font-size: 11px; line-height: 11px; padding: 8px 15px 7px 15px; } .btn-mini { border-radius: 2px; 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-left: 0; padding-right: 0; width: 100%; } .btn-center { margin: 0 auto; } /* #Button Colors ================================================== */ .btn-blue, .btn-green, .btn-red { color: rgba(255,255,255,1); } .btn-blue { background: rgba(85,115,194,1); border-color: rgba(25,55,134,1); } .btn-blue:hover { background: rgba(70,100,179,1); } .btn-green { background: rgba(75,180,122,1); border-color: rgba(25,130,72,1); } .btn-green:hover { background: rgba(65,170,112,1); } .btn-red { background: rgba(220,74,56,1); border-color: rgba(180,34,16,1); } .btn-red:hover { background: rgba(210,64,46,1); } /* #Button Icons ================================================== */ .btn-icon { font-size: 17px; line-height: 17px; padding: 12px 12px 10px 12px; } .btn-large.btn-icon { font-size: 23px; line-height: 23px; padding: 13px 14px 11px 14px; } .btn-small.btn-icon { font-size: 14px; line-height: 14px; padding: 7px 9px 5px 9px; } .btn-mini.btn-icon { font-size: 11px; line-height: 11px; padding: 6px 7px 4px 7px; } /* #Button Outlines ================================================== */ .btn-outline { background: transparent; border: 1px solid rgba(229,230,234,1); border-radius: 2px; color: rgba(174,182,192,1); padding: 12px 19px 11px 19px; } .btn-outline:hover { background: transparent; border-color: rgba(199,200,204,1); color: rgba(71,74,84,1); } .btn-large.btn-outline { padding: 16px 29px 14px 29px; } .btn-small.btn-outline { padding: 7px 14px 6px 14px; } .btn-mini.btn-outline { padding: 5px 9px; } .btn-outline.btn-icon { padding: 11px 11px 9px 11px; } .btn-large.btn-icon.btn-outline { padding: 12px 13px 10px 13px; } .btn-small.btn-icon.btn-outline { padding: 6px 8px 4px 8px; } .btn-mini.btn-icon.btn-outline { padding: 5px 6px 3px 6px; } /* #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 > .btn { border-right: 1px solid rgba(196,198,201,1); border-radius: 0; position: relative; } .btn-group > .btn-blue { border-color: rgba(25,55,134,1); } .btn-group > .btn-green { border-color: rgba(25,130,72,1); } .btn-group > .btn-red { border-color: rgba(180,34,16,1); } .btn-group > .btn:first-child { border-bottom-left-radius: 2px; border-top-left-radius: 2px; margin-left: 0; } .btn-group > .btn.dropdown-toggle { padding-bottom: 11px; } .btn-group > .btn-large.dropdown-toggle { padding-bottom: 14px; } .btn-group > .btn-small.dropdown-toggle { padding-bottom: 6px; } .btn-group > .btn-mini.dropdown-toggle { padding-bottom: 5px; } .btn-group > .btn:last-child, .btn-group > .dropdown-toggle { border-right: none; border-bottom-right-radius: 2px; border-top-right-radius: 2px; } .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active { z-index: 2; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } /* #Button Toolbar ================================================== */ .btn-toolbar { font-size: 0; margin-top: 10px; margin-bottom: 10px; } .btn-toolbar > .btn + .btn, .btn-toolbar > .btn-group + .btn, .btn-toolbar > .btn + .btn-group { margin-left: 5px; } /* #Close Button ================================================== */ .close { color: rgba(158,171,179,1); float: right; font-size: 18px; line-height: 18px; } .close:hover, .close:focus { color: rgba(71,74,84,1); text-decoration: none; }