index2.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. view {
  2. box-sizing: border-box;
  3. }
  4. .container {
  5. width: 100%;
  6. height: 100%;
  7. position: absolute;
  8. left: 0;
  9. bottom: 0;
  10. padding: 0 20px;
  11. box-sizing: border-box;
  12. display: flex;
  13. flex-direction: column;
  14. background-color: #fff;
  15. border-top-left-radius: 10px;
  16. border-top-right-radius: 10px;
  17. .title {
  18. width: 100%;
  19. height: 12%;
  20. font-size: 20px;
  21. font-weight: bold;
  22. padding-top: 20px;
  23. text:nth-child(2) {
  24. display: block;
  25. font-size: 14px;
  26. font-weight: normal;
  27. margin-top: 5px;
  28. }
  29. }
  30. .choose-avatar-row,
  31. .choose-nickname-row {
  32. width: 100%;
  33. height: 9%;
  34. display: flex;
  35. justify-content: flex-start;
  36. align-items: center;
  37. padding: 10px 2px;
  38. font-size: 14px;
  39. border-top: 1px solid #ccc;
  40. border-bottom: 1px solid #ccc;
  41. .avatar-wrapper {
  42. width: 40px;
  43. height: 40px;
  44. margin: 0;
  45. padding: 0;
  46. margin-right: 10px;
  47. .avatar {
  48. width: 100%;
  49. height: 100%;
  50. }
  51. }
  52. }
  53. .choose-nickname-row {
  54. border-top: none;
  55. text {
  56. width: 45px;
  57. margin-right: 10px;
  58. }
  59. }
  60. .login-row {
  61. width: 100%;
  62. height: 30%;
  63. padding-top: 20px;
  64. display: flex;
  65. button {
  66. font-size: 14px;
  67. width: 30%;
  68. height: 40px;
  69. display: flex;
  70. align-items: center;
  71. justify-content: center;
  72. border-color: transparent;
  73. color: #07c160;
  74. }
  75. .inactive {
  76. color: #ccc;
  77. }
  78. }
  79. }