projects.css 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. .projects_page {
  2. height: 120vw;
  3. background-color: #dcb495;
  4. }
  5. .header_block {
  6. width: 100%;
  7. height: 20vw;
  8. background-position: center;
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. justify-content: center;
  13. background: linear-gradient( rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85) ), url(../images/back_project_one.jpg);background-repeat: repeat; background-position: center;
  14. }
  15. .header_title {
  16. color: #ffffff;
  17. font-size: 7vw;
  18. }
  19. .header_title_2 {
  20. color: #ffffff;
  21. text-align: center;
  22. font-size: 1.5vw;
  23. width: 50vw;
  24. }
  25. .find_block {
  26. width: 100%;
  27. height: 15vw;
  28. background-color: #dcb495;
  29. display: flex;
  30. align-items: center;
  31. flex-direction: row;
  32. justify-content: center;
  33. }
  34. .find_input_text {
  35. margin-right: 12px;
  36. background-color: #EDCBB0;
  37. border: #EDCBB0;
  38. width: 45vw;
  39. height: 5vw;
  40. color: #776658;
  41. border-radius: 5vw;
  42. vertical-align: middle;
  43. font-size: 1.5vw;
  44. }
  45. .find_input_button {
  46. margin-left: 12px;
  47. background-color: #9E795A;
  48. border: #9E795A;
  49. width: 10vw;
  50. height: 5vw;
  51. color: #ffffff;
  52. border-radius: 5vw;
  53. vertical-align: middle;
  54. font-size: 1.5vw;
  55. }
  56. .list_project_block {
  57. margin-left: 3%;
  58. border: 0.2vw solid #694a2d;
  59. border-radius: 4.5vw;
  60. width: 94%;
  61. height: 45vw;
  62. overflow-y: auto;
  63. padding-top: 2vw;
  64. }
  65. .list_project_block::-webkit-scrollbar {
  66. width: 0.8vw; /* ширина scrollbar */
  67. }
  68. .list_project_block::-webkit-scrollbar-thumb {
  69. background-color: #d49d51; /* цвет плашки */
  70. border-radius: 5vw; /* закругления плашки */
  71. border: 0.25vw solid #ffffff;
  72. }
  73. .list_project {
  74. width: 95%;
  75. margin-left: 2.5%;
  76. margin-top: 0.5vw;
  77. overflow-y: hidden;
  78. overflow-x: hidden;
  79. }
  80. .project_header_button {
  81. height: 5.5vw;
  82. width: 100%;
  83. text-align: left;
  84. border-radius: 5vw;
  85. background-color: #9E795A;
  86. border-color: #9E795A;
  87. border-bottom-color: #9E795A;
  88. color: #ffffff;
  89. display: flex;
  90. align-items: center;
  91. }
  92. .project_description_block {
  93. background-color: #9E795A;
  94. width: 100%;
  95. height: 20vw;
  96. border-radius: 2vw;
  97. }
  98. .project_logo_block {
  99. width: 4.5vw;
  100. height: 4.5vw;
  101. border: 0.3vw solid #ffffff;
  102. background-color: #ffffff;
  103. border-radius: 2vw;
  104. display: flex;
  105. justify-content: center;
  106. align-items: center;
  107. }
  108. .project_logo {
  109. width: 4vw;
  110. height: 4vw;
  111. border-radius: 5vw;
  112. }
  113. .project_title_block {
  114. width: 70%;
  115. height: 4vw;
  116. }
  117. .project_title {
  118. font-size: 3.5vw;
  119. overflow-y: hidden;
  120. overflow-x: auto;
  121. white-space: nowrap
  122. }
  123. .project_title::-webkit-scrollbar {
  124. height: 0.8vw; /* ширина scrollbar */
  125. }
  126. .project_title::-webkit-scrollbar-thumb {
  127. background-color: #d49d51; /* цвет плашки */
  128. border-radius: 5vw; /* закругления плашки */
  129. border: 0.25vw solid #ffffff;
  130. }
  131. .project_button_block_one {
  132. width: 50%;
  133. display: flex;
  134. justify-content: space-evenly;
  135. align-items: flex-start;
  136. }
  137. .project_description {
  138. width: 98%;
  139. height: 100%;
  140. margin-left: 1%;
  141. display: flex;
  142. flex-direction: row;
  143. flex-wrap: nowrap;
  144. align-content: center;
  145. align-items: center;
  146. justify-content: space-evenly;
  147. }
  148. .collaborator_block {
  149. width: 22%;
  150. height: 90%;
  151. background-color: #EDCBB0;
  152. border-radius: 2vw;
  153. overflow-y: auto;
  154. }
  155. .collaborator_block::-webkit-scrollbar {
  156. width: 0.8vw; /* ширина scrollbar */
  157. }
  158. .collaborator_block::-webkit-scrollbar-thumb {
  159. background-color: #d49d51; /* цвет плашки */
  160. border-radius: 5vw; /* закругления плашки */
  161. border: 0.25vw solid #ffffff;
  162. }
  163. .description_block {
  164. width: 48%;
  165. height: 90%;
  166. display: flex;
  167. flex-direction: column;
  168. align-items: center;
  169. flex-wrap: nowrap;
  170. }
  171. .description_header_text {
  172. font-size: 2vw;
  173. }
  174. .description_block_text {
  175. overflow-y: auto;
  176. overflow-x: hidden;
  177. width: 90% !important;
  178. height: 80% !important;
  179. width: 50%;
  180. background-color: #dcb495;
  181. border-radius: 2vw;
  182. }
  183. .description_block_text::-webkit-scrollbar {
  184. width: 0.8vw; /* ширина scrollbar */
  185. }
  186. .description_block_text::-webkit-scrollbar-thumb {
  187. background-color: #d49d51; /* цвет плашки */
  188. border-radius: 5vw; /* закругления плашки */
  189. border: 0.25vw solid #ffffff;
  190. }
  191. .description_text {
  192. width: 100% !important;
  193. height: 100%;
  194. font-size: 1.5vw;
  195. overflow-wrap: normal; /* не поддерживает IE, Firefox; является копией word-wrap */
  196. word-wrap: normal;
  197. word-break: normal; /* не поддерживает Opera12.14, значение keep-all не поддерживается IE, Chrome */
  198. line-break: auto; /* нет поддержки для русского языка */
  199. hyphens: manual; /* значение auto не поддерживается Chrome */
  200. margin: 2vw;
  201. }
  202. .open_project_block {
  203. width: 20%;
  204. height: 90%;
  205. display: flex;
  206. align-items: center;
  207. justify-content: center;
  208. flex-direction: column;
  209. flex-wrap: nowrap;
  210. }
  211. .open_button {
  212. background-color: #ffffff;
  213. color: #000000;
  214. width: 15vw;
  215. height: 4.5vw;
  216. vertical-align: middle;
  217. border-radius: 5vw;
  218. display: flex;
  219. align-items: center;
  220. justify-content: center;
  221. }
  222. .open_button:hover {
  223. text-decoration: none;
  224. color: #000000;
  225. }
  226. .open_button_text {
  227. font-size: 1.5vw;
  228. margin-top: 15px;
  229. display: flex;
  230. align-items: center;
  231. justify-content: center;
  232. }
  233. .open_button, .open_button_link {
  234. display: flex;
  235. align-items: center;
  236. justify-content: center;
  237. width: 15vw;
  238. height: 4.5vw;
  239. color: #000000;
  240. }
  241. .open_button_link:hover {
  242. text-decoration: none;
  243. color: #000000;
  244. }
  245. .staff_block {
  246. margin: 20px;
  247. }
  248. .user {
  249. width: 16vw;
  250. height: 3.5vw;
  251. background-color: #ffffff;
  252. border: 2px solid #9E795A;
  253. border-radius: 3vw;
  254. margin-top: 5px;
  255. display: flex;
  256. align-items: center;
  257. justify-content: flex-start;
  258. flex-direction: row;
  259. flex-wrap: no-wrap;
  260. }
  261. .user_logo {
  262. margin-left: 3px;
  263. width: 3vw;
  264. height: 3vw;
  265. border-radius: 5vw;
  266. background-color: #000000;
  267. }
  268. .user_names {
  269. margin-left: 9px;
  270. margin-top: 10px;
  271. overflow-x: auto;
  272. color: #000000 !important;
  273. }
  274. .new_project_button, .find_project_button {
  275. width: 13vw;
  276. height: 5vw;
  277. background-color: #000000;
  278. border: 2px solid #ffffff;
  279. border-radius: 3vw;
  280. margin-left: 2vw;
  281. }
  282. .new_project_button_text, .find_project_button_text {
  283. width: 13vw;
  284. height: 5vw;
  285. text-align: center;
  286. font-size: 1.5vw;
  287. color: #ffffff;
  288. display: flex;
  289. align-items: center;
  290. justify-content: center;
  291. }
  292. .new_project_button_link, find_project_button_linkk {
  293. width: 13vw;
  294. height: 5vw;
  295. }
  296. .new_project_button_link:hover, .find_project_button_linkk:hover {
  297. text-decoration: none;
  298. color: #000000;
  299. }
  300. .form_project_block {
  301. display: flex;
  302. align-items: center;
  303. justify-content: center;
  304. }
  305. .link_to_user {
  306. width: 16vw;
  307. height: 3.5vw;
  308. display: flex;
  309. align-items: center;
  310. justify-content: flex-start;
  311. flex-direction: row;
  312. flex-wrap: no-wrap;
  313. text-decoration: none;
  314. }
  315. .link_to_user:hover {
  316. text-decoration: none;
  317. }