todos-input.css 621 B

12345678910111213141516171819202122232425262728293031323334353637
  1. html,body {
  2. height: 100%;
  3. background-color: white;
  4. }
  5. .bg-scroll-view {
  6. height: 100%;
  7. background-color: white;
  8. }
  9. .textarea-bg {
  10. width: 700rpx;
  11. height: 500rpx;
  12. margin: 0 auto;
  13. display: flex;
  14. box-shadow: 0 12rpx 30rpx 0 rgba(0, 0, 0, 0.04);
  15. }
  16. .textarea {
  17. width: 660rpx;
  18. height: 450rpx;
  19. margin: 30rpx auto 20rpx;
  20. font-size: 32rpx;
  21. color: #222222;
  22. }
  23. .btn{
  24. width: 710rpx;
  25. height: 90rpx;
  26. position: fixed;
  27. bottom: 0;
  28. left: 20rpx;
  29. background: #3296FB;
  30. line-height: 90rpx;
  31. text-align: center;
  32. color: #ffffff;
  33. border-radius: 45rpx;
  34. }