main.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. justify-content:center;
  5. /* margin-top: 128upx; */
  6. }
  7. /* 头部 logo */
  8. .header {
  9. text-align: center;
  10. width:161upx;
  11. height:161upx;
  12. box-shadow:0upx 0upx 60upx 0upx rgba(0,0,0,0.1);
  13. border-radius:50%;
  14. background: -moz-linear-gradient(left, #F15B6C, #e10a07 100%);
  15. background: -webkit-gradient(linear, left top, left right, color-stop(0, #F15B6C), color-stop(100%, #e10a07));
  16. background: -webkit-linear-gradient(left, #F15B6C 0, #e10a07 100%);
  17. background: -o-linear-gradient(left, #F15B6C 0, #e10a07 100%);
  18. background: -ms-linear-gradient(left, #F15B6C 0, #e10a07 100%);
  19. background: linear-gradient(to left, #F15B6C 0, #e10a07 100%);
  20. margin-top: 180upx;
  21. margin-bottom: 72upx;
  22. font-size: 60upx;
  23. color: white;
  24. font-weight: bold;
  25. padding-top: 32upx;
  26. margin-left: auto;
  27. margin-right: auto;
  28. }
  29. .header image{
  30. width:161upx;
  31. height:161upx;
  32. border-radius:50%;
  33. }
  34. /* 主体 */
  35. .main {
  36. display: flex;
  37. flex-direction: column;
  38. padding-left: 70upx;
  39. padding-right: 70upx;
  40. }
  41. .tips {
  42. color: #999999;
  43. font-size: 28upx;
  44. margin-top: 64upx;
  45. margin-left: 48upx;
  46. }
  47. /* 其他登录方式 */
  48. .other_login{
  49. display: flex;
  50. flex-direction: row;
  51. justify-content: center;
  52. align-items: center;
  53. margin-top: 256upx;
  54. text-align: center;
  55. }
  56. .login_icon{
  57. border: none;
  58. font-size: 64upx;
  59. margin: 0 64upx 0 64upx;
  60. color: rgba(0,0,0,0.7)
  61. }
  62. .wechat_color{
  63. color: #83DC42;
  64. }
  65. .weibo_color{
  66. color: #F9221D;
  67. }
  68. .github_color{
  69. color: #24292E;
  70. }
  71. /* 底部 */
  72. .footer{
  73. display: flex;
  74. flex-direction: row;
  75. justify-content: center;
  76. align-items: center;
  77. font-size: 28upx;
  78. margin-top: 64upx;
  79. color: rgba(0,0,0,0.7);
  80. text-align: center;
  81. height: 40upx;
  82. line-height: 40upx;
  83. }
  84. .footer text{
  85. font-size: 24upx;
  86. margin-left: 15upx;
  87. margin-right: 15upx;
  88. }