test.wxss 530 B

12345678910111213141516171819202122232425262728293031323334
  1. /* components/test/test.wxss */
  2. .Add-Project{
  3. background-color:#f5f5f8;
  4. margin: 80px auto;
  5. width: 300px;
  6. height: 120px;
  7. position: relative;
  8. border-radius: 5px ;
  9. }
  10. .Add-Project text{
  11. position: absolute;
  12. top:5px;
  13. left: 120px;
  14. }
  15. .Add-Project input{
  16. width: 250px;
  17. height: 30px;
  18. position: absolute;
  19. top: 35px;
  20. left: 25px;
  21. background-color: white;
  22. }
  23. .Add-Project button{
  24. width: 130px;
  25. height: 30px;
  26. position: absolute;
  27. bottom: 5px;
  28. font-size: 12px;
  29. border:0px;
  30. background-color: #ffffff;
  31. }