sign.wxss 763 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* pages/sign/sign.wxss */
  2. .canvas {
  3. width: 100%;
  4. height: calc(100% - 120rpx);
  5. position: fixed;
  6. box-sizing: border-box;
  7. border-bottom: 2rpx #2583c1 solid;
  8. }
  9. .imageCanvas{
  10. width: 100%;
  11. height: 100%;
  12. }
  13. .buttonBox{
  14. width: 100%;
  15. justify-content: center;
  16. display: flex;
  17. position: fixed;
  18. bottom: 20rpx;
  19. left: 0;
  20. }
  21. .buttonBox button{
  22. font-size: 32rpx;
  23. font-family: 'Lucida Sans',
  24. 'Lucida Sans Regular',
  25. 'Lucida Grande',
  26. 'Lucida Sans Unicode',
  27. Geneva,
  28. Verdana,
  29. sans-serif;
  30. color: #ffffff;
  31. text-overflow: ellipsis;
  32. white-space: nowrap;
  33. background-color: #2583c1;
  34. }
  35. .buttonBox button.button-hover{
  36. background-color: #1ca05e;
  37. }