index.less 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .oauth {
  2. .oauth-header {
  3. display: flex;
  4. align-items: center;
  5. justify-content: space-between;
  6. height: 60px;
  7. font-size: 26px;
  8. background-color: #fff;
  9. .oauth-header-left {
  10. margin-left: 10%;
  11. }
  12. .oauth-header-right {
  13. display: flex;
  14. width: 200px;
  15. margin-right: 10%;
  16. font-size: 14px;
  17. .oauth-header-right-text {
  18. color: rgb(0 0 0 / 70%);
  19. }
  20. // .oauth-header-right-connect {
  21. // padding: 0 10px;
  22. // }
  23. }
  24. }
  25. .oauth-content {
  26. display: flex;
  27. flex-direction: column;
  28. align-items: center;
  29. justify-content: space-evenly;
  30. width: 370px;
  31. height: 380px;
  32. margin: 0 auto;
  33. margin-top: 5%;
  34. background: #fff;
  35. box-shadow: 0 5px 5px #d4d4d4;
  36. .oauth-content-header {
  37. width: 60px;
  38. height: 60px;
  39. img {
  40. width: 100%;
  41. height: 100%;
  42. }
  43. }
  44. .oauth-content-content {
  45. height: 150px;
  46. .oauth-content-content-text {
  47. margin: 15px 15px;
  48. font-size: 16px;
  49. line-height: 22px;
  50. }
  51. ul {
  52. color: #00000085;
  53. list-style: inherit;
  54. li {
  55. padding-top: 10px;
  56. }
  57. }
  58. }
  59. .oauth-content-button {
  60. display: flex;
  61. justify-content: space-around;
  62. width: 200px;
  63. }
  64. .oauth-content-login {
  65. max-width: 300px;
  66. }
  67. }
  68. }