sign.wxss 651 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* pages/sign/sign.wxss */
  2. page{
  3. width: 100%;
  4. height: 100%;
  5. }
  6. .sign-view{
  7. width: 100%;
  8. height: 100%;
  9. position: relative;
  10. }
  11. .sign-view input{
  12. width: 42%;
  13. height: 5%;
  14. position: absolute;
  15. background-color: white;
  16. left: 30%;
  17. top:60%;
  18. font-size: calc(100vw * 10/375);
  19. }
  20. .sign-view button{
  21. position: absolute;
  22. top: 68%;
  23. left: 40%;
  24. width: 22%;
  25. height: 5%;
  26. font-size: calc(100vw * 10/375);
  27. display: flex;
  28. align-items:center;
  29. justify-content:center;
  30. background-color: cornflowerblue;
  31. border:solid white 1px;
  32. color:white;
  33. }
  34. .sign-view button:active{
  35. box-shadow:cornflowerblue;
  36. transform: translateY(4px);
  37. }