爱简收旧衣按件回收前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.7 KiB

  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .img.data-v-df0e33a3 {
  27. width: 20%;
  28. height: 15%;
  29. margin-top: 10%;
  30. }
  31. .login.data-v-df0e33a3 {
  32. display: flex;
  33. flex-direction: column;
  34. justify-content: center;
  35. align-items: center;
  36. height: 80vh;
  37. }
  38. .login .title.data-v-df0e33a3 {
  39. line-height: 45rpx;
  40. font-weight: 900;
  41. }
  42. .login .line.data-v-df0e33a3 {
  43. display: flex;
  44. justify-content: space-between;
  45. align-items: center;
  46. width: 80%;
  47. border-bottom: 1px solid #00000023;
  48. padding: 30rpx 0;
  49. margin: 0 auto;
  50. }
  51. .login .chooseAvatar.data-v-df0e33a3 {
  52. width: 100%;
  53. padding: 0;
  54. margin: 0;
  55. margin-top: 10vh;
  56. border: none;
  57. }
  58. .login .btn.data-v-df0e33a3 {
  59. background: red;
  60. color: #fff;
  61. width: 80%;
  62. padding: 20rpx 0;
  63. text-align: center;
  64. border-radius: 15rpx;
  65. margin-top: 10vh;
  66. }