index.wxss 985 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* pages/sign-name/sign-name.wxss */
  2. .container {
  3. width: 100%;
  4. height: 100vh;
  5. padding: 20rpx 0;
  6. overflow: hidden;
  7. display: flex;
  8. align-content: center;
  9. flex-direction: row;
  10. justify-content: center;
  11. font-size: 28rpx;
  12. box-sizing: border-box;
  13. }
  14. .handleBtn {
  15. display: inline-flex;
  16. flex-direction: column;
  17. justify-content: space-between;
  18. align-content: space-between;
  19. flex: 1;
  20. padding-right: 20rpx;
  21. box-sizing: border-box;
  22. overflow: hidden;
  23. }
  24. .handleBtn button {
  25. text-align: center;
  26. transform: rotate(90deg);
  27. }
  28. .handleBtn button:not([size='mini']) {
  29. width: 160rpx;
  30. margin-top: 40rpx;
  31. margin-bottom: 40rpx;
  32. }
  33. .handCenter {
  34. border: 4rpx dashed #e9e9e9;
  35. flex: 5;
  36. overflow: hidden;
  37. box-sizing: border-box;
  38. }
  39. .handRight {
  40. display: inline-flex;
  41. align-items: center;
  42. }
  43. .handRight .handTitle {
  44. transform: rotate(90deg);
  45. flex: 1;
  46. color: #666;
  47. }
  48. .handWriting {
  49. background: #fff;
  50. width: 100%;
  51. height: 95vh;
  52. flex: 2;
  53. }