project.css 9.2 KB

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