projects.css 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  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. }
  120. .project_button_block_one {
  121. width: 50%;
  122. display: flex;
  123. justify-content: space-evenly;
  124. align-items: flex-start;
  125. }
  126. .project_description {
  127. width: 98%;
  128. height: 100%;
  129. margin-left: 1%;
  130. display: flex;
  131. flex-direction: row;
  132. flex-wrap: nowrap;
  133. align-content: center;
  134. align-items: center;
  135. justify-content: space-evenly;
  136. }
  137. .collaborator_block {
  138. width: 22%;
  139. height: 90%;
  140. background-color: #EDCBB0;
  141. border-radius: 2vw;
  142. overflow-y: auto;
  143. }
  144. .collaborator_block::-webkit-scrollbar {
  145. width: 0.8vw; /* ширина scrollbar */
  146. }
  147. .collaborator_block::-webkit-scrollbar-thumb {
  148. background-color: #d49d51; /* цвет плашки */
  149. border-radius: 5vw; /* закругления плашки */
  150. border: 0.25vw solid #ffffff;
  151. }
  152. .description_block {
  153. width: 48%;
  154. height: 90%;
  155. display: flex;
  156. flex-direction: column;
  157. align-items: center;
  158. flex-wrap: nowrap;
  159. }
  160. .description_header_text {
  161. font-size: 2vw;
  162. }
  163. .description_block_text {
  164. overflow-y: auto;
  165. overflow-x: hidden;
  166. width: 90% !important;
  167. height: 80% !important;
  168. width: 50%;
  169. background-color: #dcb495;
  170. border-radius: 2vw;
  171. }
  172. .description_block_text::-webkit-scrollbar {
  173. width: 0.8vw; /* ширина scrollbar */
  174. }
  175. .description_block_text::-webkit-scrollbar-thumb {
  176. background-color: #d49d51; /* цвет плашки */
  177. border-radius: 5vw; /* закругления плашки */
  178. border: 0.25vw solid #ffffff;
  179. }
  180. .description_text {
  181. width: 100% !important;
  182. height: 100%;
  183. font-size: 1.5vw;
  184. overflow-wrap: normal; /* не поддерживает IE, Firefox; является копией word-wrap */
  185. word-wrap: normal;
  186. word-break: normal; /* не поддерживает Opera12.14, значение keep-all не поддерживается IE, Chrome */
  187. line-break: auto; /* нет поддержки для русского языка */
  188. hyphens: manual; /* значение auto не поддерживается Chrome */
  189. margin: 2vw;
  190. }
  191. .open_project_block {
  192. width: 20%;
  193. height: 90%;
  194. display: flex;
  195. align-items: center;
  196. justify-content: center;
  197. flex-direction: column;
  198. flex-wrap: nowrap;
  199. }
  200. .open_button {
  201. background-color: #ffffff;
  202. color: #000000;
  203. width: 15vw;
  204. height: 4.5vw;
  205. vertical-align: middle;
  206. border-radius: 5vw;
  207. display: flex;
  208. align-items: center;
  209. justify-content: center;
  210. }
  211. .open_button:hover {
  212. text-decoration: none;
  213. color: #000000;
  214. }
  215. .open_button_text {
  216. font-size: 1.5vw;
  217. margin-top: 15px;
  218. display: flex;
  219. align-items: center;
  220. justify-content: center;
  221. }
  222. .open_button, .open_button_link {
  223. display: flex;
  224. align-items: center;
  225. justify-content: center;
  226. width: 15vw;
  227. height: 4.5vw;
  228. color: #000000;
  229. }
  230. .open_button_link:hover {
  231. text-decoration: none;
  232. color: #000000;
  233. }
  234. .staff_block {
  235. margin: 20px;
  236. }
  237. .user {
  238. width: 16vw;
  239. height: 3.5vw;
  240. background-color: #ffffff;
  241. border: 2px solid #9E795A;
  242. border-radius: 3vw;
  243. margin-top: 5px;
  244. display: flex;
  245. align-items: center;
  246. justify-content: flex-start;
  247. flex-direction: row;
  248. flex-wrap: no-wrap;
  249. }
  250. .user_logo {
  251. margin-left: 3px;
  252. width: 3vw;
  253. height: 3vw;
  254. border-radius: 5vw;
  255. background-color: #000000;
  256. }
  257. .user_names {
  258. margin-left: 9px;
  259. margin-top: 10px;
  260. overflow-x: auto;
  261. color: #000000 !important;
  262. }
  263. .new_project_button, .find_project_button {
  264. width: 13vw;
  265. height: 5vw;
  266. background-color: #000000;
  267. border: 2px solid #ffffff;
  268. border-radius: 3vw;
  269. margin-left: 2vw;
  270. }
  271. .new_project_button_text, .find_project_button_text {
  272. width: 13vw;
  273. height: 5vw;
  274. text-align: center;
  275. font-size: 1.5vw;
  276. color: #ffffff;
  277. display: flex;
  278. align-items: center;
  279. justify-content: center;
  280. }
  281. .new_project_button_link, find_project_button_linkk {
  282. width: 13vw;
  283. height: 5vw;
  284. }
  285. .new_project_button_link:hover, .find_project_button_linkk:hover {
  286. text-decoration: none;
  287. color: #000000;
  288. }
  289. .form_project_block {
  290. display: flex;
  291. align-items: center;
  292. justify-content: center;
  293. }
  294. .link_to_user {
  295. width: 16vw;
  296. height: 3.5vw;
  297. display: flex;
  298. align-items: center;
  299. justify-content: flex-start;
  300. flex-direction: row;
  301. flex-wrap: no-wrap;
  302. text-decoration: none;
  303. }
  304. .link_to_user:hover {
  305. text-decoration: none;
  306. }