1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- * {
- font-weight: 500;
- font-family: 'Noto Sans TC', sans-serif !important;
- }
- /* Bootstrap Start */
- .form-control:focus,
- .btn-check:focus+.btn,
- .btn:focus {
- box-shadow: none !important;
- }
- .text-primary {
- color: #EE7800 !important;
- }
- .border-primary {
- border-color: #EE7800 !important;
- }
- .pagination {
- border-radius: 5px;
- overflow: hidden;
- a {
- color: #727679;
- transition: all .3s;
- &:hover {
- color: #fff;
- background-color: #EE7800;
- }
- }
- .page-link {
- padding: .75rem 1rem;
- border: none;
- &:focus {
- z-index: 3;
- color: #727679;
- background-color: #fff;
- box-shadow: none;
- }
- }
- }
- .list-pagination {
- .page-item.active .page-link {
- color: #fff;
- background-color: #EE7800;
- border-color: #EE7800;
- &:focus {
- box-shadow: none;
- }
- }
- .page-link.hidden {
- display: none;
- }
- }
- /* Bootstrap End */
|