project.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. .projects_page {
  2. height: 120vw;
  3. background-color: #dcb495;
  4. }
  5. .project_header {
  6. height: 25vw;
  7. width: 100%;
  8. display: flex;
  9. align-items: center;
  10. justify-content: space-around;
  11. }
  12. .project_logo {
  13. margin-top: 30px;
  14. width: 15vw;
  15. height: 15vw;
  16. border: 0.2vw solid #ffffff;
  17. border-radius: 2vw;
  18. }
  19. .brand_block {
  20. height: 25vw;
  21. display: flex;
  22. flex-direction: column;
  23. align-items: center;
  24. justify-content: space-between;
  25. color: #dcb495;
  26. }
  27. .name_project {
  28. font-size: 3vw !important;
  29. }
  30. .edit_block {
  31. display: flex;
  32. align-items: center;
  33. justify-content: center;
  34. }
  35. .edit_button {
  36. width: 4.5vw;
  37. height: 4.5vw;
  38. display: flex;
  39. align-items: center;
  40. justify-content: center;
  41. }
  42. .edit_button_image {
  43. height: 3vw;
  44. width: 3vw;
  45. }
  46. .collaborator_block {
  47. width: 95%;
  48. height: 25vw;
  49. background-color: #EDCBB0;
  50. border-radius: 2vw;
  51. overflow-y: auto;
  52. }
  53. .staff_block {
  54. margin: 20px;
  55. }
  56. .user {
  57. width: 24vw;
  58. height: 3.5vw;
  59. background-color: #ffffff;
  60. border: 2px solid #9E795A;
  61. border-radius: 3vw;
  62. margin-top: 5px;
  63. display: flex;
  64. align-items: center;
  65. justify-content: flex-start;
  66. flex-direction: row;
  67. flex-wrap: no-wrap;
  68. }
  69. .user_logo {
  70. margin-left: 3px;
  71. width: 3vw;
  72. height: 3vw;
  73. border-radius: 5vw;
  74. background-color: #000000;
  75. }
  76. .user_names {
  77. margin-left: 9px;
  78. margin-top: 10px;
  79. overflow-x: auto;
  80. color: #000000 !important;
  81. }
  82. .link_to_user {
  83. width: 26vw;
  84. height: 3.5vw;
  85. display: flex;
  86. align-items: center;
  87. justify-content: flex-start;
  88. flex-direction: row;
  89. flex-wrap: no-wrap;
  90. text-decoration: none;
  91. }
  92. .link_to_user:hover {
  93. text-decoration: none;
  94. }
  95. .head_staff_block {
  96. display: flex;
  97. width: 30vw;
  98. flex-direction: column;
  99. align-items: center;
  100. }
  101. .header_title, .header_title_2 {
  102. text-align: center;
  103. color: #000000;
  104. font-size: 3vw;
  105. margin-bottom: 15px;
  106. }
  107. .header_title {
  108. width: 100%;
  109. }
  110. .header_task_block {
  111. width: 60vw;
  112. height: 30vw;
  113. display: flex;
  114. flex-direction: column;
  115. align-items: center;
  116. }
  117. .task_block {
  118. background-color: #EDCBB0;
  119. width: 95%;
  120. height: 25vw;
  121. border-radius: 2vw;
  122. overflow-y: auto;
  123. }
  124. .task {
  125. margin: 20px;
  126. }
  127. .body_block {
  128. display: flex;
  129. justify-content: space-evenly;
  130. align-items: flex-start;
  131. flex-direction: row;
  132. }
  133. .new_task_block {
  134. width: 4.5vw;
  135. height: 4.5vw;
  136. }
  137. .new_task_link {
  138. width: 4.5vw;
  139. height: 4.5vw;
  140. }
  141. .new_task_image {
  142. width: 4.5vw;
  143. height: 4.5vw;
  144. }
  145. .head_task {
  146. display: flex;
  147. flex-direction: row;
  148. flex-wrap: nowrap;
  149. width: 60vw;
  150. }