style.scss 816 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #loginLog {
  2. padding: 0 32px 32px 32px;
  3. h1 {
  4. font-size: 22px;
  5. margin-bottom: 10px;
  6. }
  7. table {
  8. border: 1px solid #ccc;
  9. caption {
  10. text-align: left;
  11. font-size: 16px;
  12. margin-bottom: 10px;
  13. #loginTypeTab {
  14. button {
  15. &:hover {
  16. color: #e47911;
  17. font-weight: bold;
  18. border-bottom: 2px solid #e47911;
  19. }
  20. }
  21. }
  22. }
  23. tr {
  24. th, td {
  25. font-size: 14px;
  26. text-align: center;
  27. border: 1px solid #ccc;
  28. padding: 6px 13px;
  29. }
  30. }
  31. thead {
  32. tr {
  33. th {
  34. background: #f9f9f9;
  35. font-weight: bold;
  36. }
  37. }
  38. }
  39. tbody {
  40. tr {
  41. td {
  42. font-weight: normal;
  43. }
  44. }
  45. }
  46. tfoot {
  47. background: #fbfbfb;
  48. tr {
  49. td {
  50. text-align: center;
  51. padding: 8px;
  52. button, a {
  53. padding: 6px 20px;
  54. }
  55. }
  56. }
  57. }
  58. }
  59. }