delete_project.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .delete_project_page {
  2. height: 60vw;
  3. background-color: #dcb495;
  4. }
  5. .form_block {
  6. width: 100%;
  7. height: 60vw;
  8. display: flex;
  9. align-items: center;
  10. justify-content: center;
  11. flex-direction: column;
  12. }
  13. .form_data {
  14. display: flex;
  15. flex-direction: column;
  16. margin-left: 2%;
  17. }
  18. .input_data {
  19. color: #000000;
  20. border: 0.1vw solid #595008;
  21. height: 4.5vw;
  22. min-height: 4.5vw;
  23. width: 35vw;
  24. background-color: #dbc3af;
  25. border-radius: 4.5vw;
  26. font-size: 1.3vw;
  27. display: inline-flex;
  28. align-items: center;
  29. }
  30. .form_label {
  31. margin-top: 10px;
  32. font-size: 1.3vw;
  33. color: #ffffff;
  34. font-weight: bold;
  35. }
  36. .delete_project_button {
  37. margin-left: 15px;
  38. width: 25vw;
  39. height: 5vw;
  40. background-color: #000000;
  41. color: #ffffff;
  42. border-radius: 5vw;
  43. vertical-align: middle;
  44. font-size: 1.5vw;
  45. }
  46. form {
  47. display: flex;
  48. align-items: flex-end;
  49. justify-content: center;
  50. }
  51. .conf_text {
  52. color: #ff0000;
  53. }
  54. .header_title {
  55. text-align: center;
  56. color: #000000;
  57. font-size: 3.5vw;
  58. width: 100%;
  59. margin-bottom: 15px;
  60. }