projects.css 7.4 KB

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