app.wxss 680 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. view,navigator{
  2. box-sizing: border-box;
  3. font-size: 28rpx;
  4. color: #333;
  5. }
  6. .login{
  7. position: fixed;
  8. width: 100%;
  9. height: 100vh;
  10. z-index: 10;
  11. background: rgba(0, 0, 0, .5);
  12. left: 0;
  13. top: 0;
  14. }
  15. .login view{
  16. width: 80%;
  17. background: #fff;
  18. border-radius: 4px;
  19. text-align: center;
  20. position: absolute;
  21. top: 0;
  22. bottom: 0;
  23. left: 0;
  24. right: 0;
  25. margin: auto;
  26. height: 100px;
  27. }
  28. .login text{
  29. display: block;
  30. padding: 20px;
  31. }
  32. .login button{
  33. width: 100% !important;
  34. height: 48px;
  35. color: #fff;
  36. background-color: #fa5151;
  37. border-top-left-radius: 0;
  38. border-top-right-radius: 0;
  39. padding: 0;
  40. line-height: 48px;
  41. }
  42. image{
  43. max-height: 100%;
  44. }