new_project.css 739 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .new_project_page {
  2. height: 120vw;
  3. background-color: #dcb495;
  4. }
  5. .form_data, .form_data_button {
  6. display: flex;
  7. flex-direction: column;
  8. margin-left: 2%;
  9. }
  10. .form_data_button {
  11. display: flex;
  12. flex-direction: column;
  13. justify-content: center;
  14. align-items: center;
  15. }
  16. .input_data {
  17. color: #000000;
  18. border: 0.1vw solid #595008;
  19. height: 4.5vw;
  20. min-height: 4.5vw;
  21. width: 35vw;
  22. background-color: #dbc3af;
  23. border-radius: 4.5vw;
  24. font-size: 1.3vw;
  25. display: inline-flex;
  26. align-items: center;
  27. }
  28. .input_button {
  29. width: 10vw;
  30. height: 5vw;
  31. border-radius: 5vw;
  32. vertical-align: middle;
  33. }
  34. .form_label {
  35. font-size: 1.3vw;
  36. color: #ffffff;
  37. font-weight: bold;
  38. }