new_project.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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: 35vw;
  30. height: 5vw;
  31. border-radius: 5vw;
  32. vertical-align: middle;
  33. }
  34. .form_label {
  35. margin-top: 10px;
  36. font-size: 1.3vw;
  37. color: #ffffff;
  38. font-weight: bold;
  39. }
  40. .description {
  41. border-radius: 2vw !important;
  42. width: 50vw;
  43. }
  44. .padding_data {
  45. padding-top: 1vw;
  46. padding-left: 1vw;
  47. }
  48. .label_data {
  49. padding-left: 0.8vw;
  50. width: 50vw;
  51. }
  52. .project_button {
  53. margin-top: 15px;
  54. width: 35vw;
  55. height: 5vw;
  56. background-color: #000000;
  57. color: #ffffff;
  58. border-radius: 5vw;
  59. vertical-align: middle;
  60. font-size: 1.5vw;
  61. }
  62. .collaborator_block {
  63. width: 30%;
  64. height: 20vw;
  65. background-color: #EDCBB0;
  66. border-radius: 2vw;
  67. overflow-y: auto;
  68. }
  69. .user {
  70. width: 30vw;
  71. height: 3.5vw;
  72. background-color: #ffffff;
  73. border: 2px solid #9E795A;
  74. border-radius: 3vw;
  75. margin-top: 5px;
  76. display: inline-flex;
  77. justify-content: space-between;
  78. }
  79. .user_logo {
  80. margin-left: 3px;
  81. width: 3vw;
  82. height: 3vw;
  83. border-radius: 5vw;
  84. background-color: #000000;
  85. }
  86. .user_names {
  87. margin-left: 9px;
  88. margin-top: 10px;
  89. overflow-x: auto;
  90. }
  91. .name_form_block {
  92. width: 100%;
  93. display: flex;
  94. flex-direction: column;
  95. align-items: center;
  96. }
  97. .data_form_block {
  98. width: 100%;
  99. display: flex;
  100. align-items: center;
  101. justify-content: center;
  102. flex-direction: row;
  103. }
  104. .buttons_form_block {
  105. width: 45%;
  106. display: flex;
  107. flex-direction: column;
  108. align-items: center;
  109. }
  110. .staff_form_block, .collaborator_block {
  111. margin-top: 10px;
  112. width: 60%;
  113. height: 20vw;
  114. display: flex;
  115. align-items: center;
  116. justify-content: center;
  117. }
  118. .staff_block {
  119. margin: 5%;
  120. width: 90%;
  121. height: 20vw;
  122. }
  123. .choose_user {
  124. align-self: flex-end;
  125. margin-bottom: 1.1vw;
  126. width: 10%;
  127. }
  128. .user_data {
  129. display: inline-flex;
  130. align-items: center;
  131. justify-content: flex-start;
  132. flex-direction: row;
  133. }