| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- @CHARSET "UTF-8";
- .badge-success {
- padding: 3px 5px;
- background-color: #06bc80;
- margin-left: 8px;
- cursor: pointer;
- }
- .badge-title {
- cursor: pointer;
- width: 30px;
- height: 30px;
- -moz-border-radius: 15px;
- -webkit-border-radius: 15px;
- border-radius: 15px;
- line-height: 1.5;
- font-size: 16px;
- }
- .badge-title-none {
- background-color: #ffffff;
- color: #428bca;
- }
- .help-block {
- margin-left: 33.33%;
- padding-left: 13px;
- margin-top: 6px;
- }
- .nav-pills.nav-wizard {
- padding-left: 20px;
- padding-top: 3px;
- }
- .nav-pills.nav-wizard>li {
- position: relative;
- overflow: visible;
- border-right: 15px solid #fff;
- border-left: 15px solid #fff;
- }
- .nav-pills.nav-wizard>li:first-child {
- border-left: 0;
- }
- .nav-pills.nav-wizard>li:first-child a {
- border-radius: 0;
- }
- .nav-pills.nav-wizard>li:last-child {
- border-right: 0;
- }
- .nav-pills.nav-wizard>li:last-child a {
- border-radius: 0;
- }
- .nav-pills.nav-wizard>li a {
- border-radius: 0;
- background-color: #eee;
- font-size: 18px;
- height: 50px;
- font-weight: bolder;
- }
- .nav-pills.nav-wizard>li .nav-arrow {
- position: absolute;
- top: 0px;
- right: -25px;
- width: 0px;
- height: 0px;
- border-style: solid;
- border-width: 25px 0 25px 25px;
- border-color: transparent transparent transparent #eee;
- z-index: 150;
- }
- .nav-pills.nav-wizard>li .nav-wedge {
- position: absolute;
- top: 0px;
- left: -25px;
- width: 0px;
- height: 0px;
- border-style: solid;
- border-width: 25px 0 25px 25px;
- border-color: #eee #eee #eee transparent;
- z-index: 150;
- }
- .nav-pills.nav-wizard>li:hover .nav-arrow {
- border-color: transparent transparent transparent #aaa;
- }
- .nav-pills.nav-wizard>li:hover .nav-wedge {
- border-color: #aaa #aaa #aaa transparent;
- }
- .nav-pills.nav-wizard>li:hover a {
- background-color: #aaa;
- color: #fff;
- }
- .nav-pills.nav-wizard>li.active .nav-arrow {
- border-color: transparent transparent transparent #6495ED;
- }
- .nav-pills.nav-wizard>li.active .nav-wedge {
- border-color: #6495ED #6495ED #6495ED transparent;
- }
- .nav-pills.nav-wizard>li.active a {
- background-color: #6495ED;
- }
- .form-required {
- border-color: #87CEFA;
- border-width: 2px;
- }
- .table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td
- {
- padding: 8px;
- }
- .btn-sm{
- font-weight: 600;
- }
|