index.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* pages/upload/index.wxss */
  2. page{
  3. -webkit-user-select: none;
  4. user-select: none;
  5. width: 100%;
  6. height: 100%;
  7. background-color: #f8f8f8;
  8. font-family: Arial, Helvetica, sans-serif;
  9. overflow-x: hidden;
  10. }
  11. .flex{
  12. display: flex;
  13. justify-content: center;
  14. align-items: center;
  15. }
  16. .cropper-wrapper{
  17. position: relative;
  18. display: flex;
  19. flex-direction: row;
  20. justify-content: space-between;
  21. align-items: center;
  22. justify-content: center;
  23. height: 100%;
  24. background-color: #e5e5e5;
  25. }
  26. .cropper-buttons{
  27. display: flex;
  28. flex-direction: row;
  29. justify-content: space-between;
  30. align-items: center;
  31. position: absolute;
  32. bottom: 0;
  33. left: 0;
  34. width: 100%;
  35. height: 50px;
  36. padding: 0 20rpx;
  37. box-sizing: border-box;
  38. line-height: 50px;
  39. }
  40. .cropper-buttons .upload, .cropper-buttons .getCropperImage{
  41. text-align: center;
  42. }
  43. .cropper{
  44. position: absolute;
  45. top: 0;
  46. left: 0;
  47. }
  48. .cropper-buttons{
  49. background-color: rgba(0, 0, 0, 0.95);
  50. }
  51. .btn{
  52. height: 30px;
  53. line-height: 30px;
  54. padding: 0 24rpx;
  55. border-radius: 2px;
  56. color: #ffffff;
  57. }