all.scss 911 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. * {
  2. font-weight: 500;
  3. font-family: 'Noto Sans TC', sans-serif !important;
  4. }
  5. /* Bootstrap Start */
  6. .form-control:focus,
  7. .btn-check:focus+.btn,
  8. .btn:focus {
  9. box-shadow: none !important;
  10. }
  11. .text-primary {
  12. color: #EE7800 !important;
  13. }
  14. .border-primary {
  15. border-color: #EE7800 !important;
  16. }
  17. .pagination {
  18. border-radius: 5px;
  19. overflow: hidden;
  20. a {
  21. color: #727679;
  22. transition: all .3s;
  23. &:hover {
  24. color: #fff;
  25. background-color: #EE7800;
  26. }
  27. }
  28. .page-link {
  29. padding: .75rem 1rem;
  30. border: none;
  31. &:focus {
  32. z-index: 3;
  33. color: #727679;
  34. background-color: #fff;
  35. box-shadow: none;
  36. }
  37. }
  38. }
  39. .list-pagination {
  40. .page-item.active .page-link {
  41. color: #fff;
  42. background-color: #EE7800;
  43. border-color: #EE7800;
  44. &:focus {
  45. box-shadow: none;
  46. }
  47. }
  48. .page-link.hidden {
  49. display: none;
  50. }
  51. }
  52. /* Bootstrap End */