project.css 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. .projects_page {
  2. height: 120vw;
  3. background-color: #dcb495;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. }
  8. .project_header {
  9. height: 25vw;
  10. width: 100%;
  11. display: flex;
  12. align-items: center;
  13. justify-content: space-around;
  14. }
  15. .project_logo {
  16. margin-right: 4vw;
  17. margin-top: 30px;
  18. width: 15vw;
  19. height: 15vw;
  20. border: 0.2vw solid #ffffff;
  21. border-radius: 2vw;
  22. }
  23. .brand_block {
  24. height: 25vw;
  25. display: flex;
  26. flex-direction: column;
  27. align-items: center;
  28. justify-content: space-between;
  29. color: #dcb495;
  30. }
  31. .name_project {
  32. font-size: 3vw !important;
  33. margin-right: 4vw;
  34. }
  35. .edit_block {
  36. display: flex;
  37. align-items: center;
  38. justify-content: center;
  39. }
  40. .edit_button {
  41. width: 4.5vw;
  42. height: 4.5vw;
  43. display: flex;
  44. align-items: center;
  45. justify-content: center;
  46. }
  47. .edit_button_image {
  48. height: 3vw;
  49. width: 3vw;
  50. }
  51. .collaborator_block {
  52. width: 95%;
  53. height: 25vw;
  54. background-color: #EDCBB0;
  55. border-radius: 2vw;
  56. overflow-y: auto;
  57. }
  58. .staff_block {
  59. margin: 20px;
  60. }
  61. .user {
  62. width: 24vw;
  63. height: 3.5vw;
  64. background-color: #ffffff;
  65. border: 2px solid #9E795A;
  66. border-radius: 3vw;
  67. margin-top: 5px;
  68. display: flex;
  69. align-items: center;
  70. justify-content: flex-start;
  71. flex-direction: row;
  72. flex-wrap: no-wrap;
  73. }
  74. .user_logo {
  75. margin-left: 3px;
  76. width: 3vw;
  77. height: 3vw;
  78. border-radius: 5vw;
  79. background-color: #000000;
  80. }
  81. .user_names {
  82. margin-left: 9px;
  83. margin-top: 10px;
  84. overflow-x: auto;
  85. color: #000000 !important;
  86. font-size: 1.5vw;
  87. }
  88. .link_to_user {
  89. width: 26vw;
  90. height: 3.5vw;
  91. display: flex;
  92. align-items: center;
  93. justify-content: flex-start;
  94. flex-direction: row;
  95. flex-wrap: no-wrap;
  96. text-decoration: none;
  97. }
  98. .link_to_user:hover {
  99. text-decoration: none;
  100. }
  101. .head_staff_block {
  102. display: flex;
  103. width: 30vw;
  104. flex-direction: column;
  105. align-items: center;
  106. }
  107. .header_title, .header_title_2 {
  108. text-align: center;
  109. color: #000000;
  110. font-size: 3vw;
  111. margin-bottom: 15px;
  112. }
  113. .header_title_2 {
  114. width: 51vw !important;
  115. }
  116. .header_title {
  117. width: 100%;
  118. }
  119. .header_task_block {
  120. width: 60vw;
  121. height: 30vw;
  122. display: flex;
  123. flex-direction: column;
  124. align-items: center;
  125. }
  126. .task_block, .list_files_block {
  127. background-color: #EDCBB0;
  128. width: 95%;
  129. height: 25vw;
  130. border-radius: 2vw;
  131. overflow-y: auto;
  132. }
  133. .task {
  134. margin: 20px;
  135. }
  136. .body_block {
  137. display: flex;
  138. justify-content: space-evenly;
  139. align-items: flex-start;
  140. flex-direction: row;
  141. }
  142. .new_task_block {
  143. width: 4.5vw;
  144. height: 4.5vw;
  145. }
  146. .new_task_link {
  147. width: 4.5vw;
  148. height: 4.5vw;
  149. }
  150. .new_task_image {
  151. width: 4.5vw;
  152. height: 4.5vw;
  153. }
  154. .head_task {
  155. display: flex;
  156. flex-direction: row;
  157. flex-wrap: nowrap;
  158. width: 60vw;
  159. justify-content: center;
  160. align-items: flex-start;
  161. }
  162. .list_quests {
  163. width: 95%;
  164. margin-left: 2.5%;
  165. margin-top: 0.5vw;
  166. overflow-y: hidden;
  167. overflow-x: hidden;
  168. }
  169. .quest_header_button {
  170. height: 4.5vw;
  171. width: 100%;
  172. text-align: left;
  173. border-radius: 5vw;
  174. background-color: #9E795A;
  175. border-color: #9E795A;
  176. border-bottom-color: #9E795A;
  177. color: #ffffff;
  178. display: flex;
  179. align-items: center;
  180. }
  181. .quest_button_block_one {
  182. width: 50%;
  183. display: flex;
  184. justify-content: space-between;
  185. align-items: flex-start;
  186. }
  187. .quest_title_block {
  188. width: 90%;
  189. height: 4vw;
  190. display: flex;
  191. align-items: center;
  192. }
  193. .quest_title {
  194. overflow-y: hidden;
  195. overflow-x: hidden;
  196. max-height: 1.5vw;
  197. font-size: 1.5vw;
  198. display: flex;
  199. align-items: center;
  200. margin-top: 0.7vw;
  201. margin-left: 1.8vw;
  202. }
  203. .deadline_block {
  204. border-radius: 5vw !important;
  205. width: 15vw !important;
  206. height: 3vw !important;
  207. margin-top: 2%;
  208. font-size: 1vw;
  209. display: flex;
  210. color: #000000 !important;
  211. align-items: center;
  212. justify-content: center;
  213. flex-direction: row;
  214. }
  215. .quest_body_block {
  216. background-color: #9E795A;
  217. width: 100%;
  218. height: 20vw;
  219. border-radius: 2vw;
  220. display: flex;
  221. align-items: center;
  222. justify-content: center;
  223. }
  224. .quest_body {
  225. width: 94%;
  226. height: 94%;
  227. display: flex;
  228. align-items: center;
  229. justify-content: space-around;
  230. }
  231. .quest_description_block {
  232. width: 70%;
  233. height: 90%;
  234. display: flex;
  235. flex-direction: column;
  236. align-items: center;
  237. justify-content: center;
  238. }
  239. .quest_description {
  240. width: 100%;
  241. height: 100%;
  242. background-color: #dcb495;
  243. border-radius: 2vw;
  244. overflow-y: auto;
  245. }
  246. .quest_description::-webkit-scrollbar, .task_block::-webkit-scrollbar-thumb {
  247. width: 0.8vw !important;
  248. }
  249. .quest_description::-webkit-scrollbar-thumb, .task_block::-webkit-scrollbar-thumb {
  250. background-color: #d49d51 !important; /* цвет плашки */
  251. border-radius: 5vw !important; /* закругления плашки */
  252. border: 0.25vw solid #ffffff !important;
  253. }
  254. .quest_description_text {
  255. margin: 20px;
  256. }
  257. .quest_solve_button {
  258. width: 13vw;
  259. height: 5vw;
  260. background-color: #000000;
  261. border: 2px solid #ffffff;
  262. border-radius: 3vw;
  263. margin-left: 2vw;
  264. }
  265. .quest_solve_link:hover {
  266. text-decoration: none;
  267. color: #000000;
  268. }
  269. .quest_solve_text {
  270. width: 13vw;
  271. height: 5vw;
  272. text-align: center;
  273. font-size: 1.5vw;
  274. color: #ffffff;
  275. display: flex;
  276. align-items: center;
  277. justify-content: center;
  278. }
  279. #quest_solve_link_id {
  280. display: none;
  281. }
  282. .link_back_block {
  283. display: flex;
  284. align-items: center;
  285. justify-content: center;
  286. flex-direction: column;
  287. flex-wrap: nowrap;
  288. }
  289. .link_back {
  290. background-color: #ffffff;
  291. color: #000000;
  292. width: 15vw;
  293. height: 4.5vw;
  294. vertical-align: middle;
  295. border-radius: 5vw;
  296. display: flex;
  297. align-items: center;
  298. justify-content: center;
  299. }
  300. .link_back:hover {
  301. text-decoration: none;
  302. color: #000000;
  303. }
  304. .link_back_text {
  305. font-size: 1.5vw;
  306. margin-top: 15px;
  307. display: flex;
  308. align-items: center;
  309. justify-content: center;
  310. }
  311. .files_block {
  312. display: flex;
  313. flex-direction: column;
  314. align-items: center;
  315. width: 95%;
  316. height: 50vw;
  317. }
  318. .list_files {
  319. margin: 2vw;
  320. }
  321. .files_title {
  322. text-align: center;
  323. color: #000000;
  324. font-size: 4vw;
  325. }
  326. .file {
  327. width: 98%;
  328. display: flex;
  329. background-color: #9E795A;
  330. margin: 0.5vw;
  331. align-items: center;
  332. justify-content: space-between;
  333. flex-direction: row;
  334. height: 4.5vw;
  335. border-radius: 2vw;
  336. }
  337. .file_head {
  338. width: 30vw;
  339. margin-left: 1vw;
  340. height: 4vw;
  341. background-color: #9E795A !important;
  342. overflow-y: hidden;
  343. overflow-x: auto;
  344. }
  345. .file_head_path, .file_path {
  346. font-size: 1.5vw;
  347. color: #ffffff !important;
  348. font-weight: bold;
  349. height: 3vw;
  350. display: flex;
  351. align-items: flex-start;
  352. background-color: #9E795A !important;
  353. }
  354. .file_buttons {
  355. margin-right: 2vw;
  356. }
  357. .file_delete, .file_download, .upload_button {
  358. border-radius: 1vw !important;
  359. margin: 1vw;
  360. width: 8vw;
  361. height: 3vw;
  362. }
  363. .file_delete {
  364. background-color: hsla(0, 100%, 62%, 0.785) !important;
  365. border-color: hsla(0, 100%, 62%, 0.785) !important;
  366. }
  367. .button_text {
  368. font-size: 1.3vw;
  369. }