user_view.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. .user_view_page {
  2. height: 120vw;
  3. background-color: #dcb495;
  4. }
  5. .user_data_block {
  6. width: 85%;
  7. height: 65vw;
  8. margin-left: 7.5%;
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. background-color:#a8886f;
  13. border-radius: 4vw;
  14. }
  15. .user_photo {
  16. margin-top: 30px;
  17. width: 15vw;
  18. height: 15vw;
  19. border: 0.2vw solid #ffffff;
  20. border-radius: 2vw;
  21. }
  22. .first_data_block {
  23. width: 100%;
  24. display: flex;
  25. align-items: center;
  26. justify-content: space-evenly;
  27. }
  28. .user_data {
  29. width: 95%;
  30. height: 30vw;
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. }
  35. .data_header {
  36. font-size: 2vw;
  37. color: #ffffff;
  38. font-weight: bold;
  39. }
  40. .data_block {
  41. background-color:#f5d3b8;
  42. width: 25vw;
  43. height: 5vw;
  44. border-radius: 5vw;
  45. display: flex;
  46. justify-content: center;
  47. align-items: center;
  48. }
  49. .data_text {
  50. width: 100%;
  51. height: 100%;
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. margin-top: 5px;
  56. font-size: 1.5vw;
  57. color: #000000;
  58. overflow-x: auto;
  59. }
  60. .surname_block, .about_block {
  61. width: 90%;
  62. }
  63. .about_bottom {
  64. border-radius: 3vw;
  65. height: 20vw !important;
  66. }
  67. .data_bottom {
  68. width: 100% !important;
  69. }
  70. .list_project {
  71. width: 95%;
  72. margin-left: 2.5%;
  73. margin-top: 2vw;
  74. overflow-y: hidden;
  75. overflow-x: hidden;
  76. }
  77. .project_header_button {
  78. height: 5.5vw;
  79. width: 100%;
  80. text-align: left;
  81. border-radius: 5vw;
  82. background-color: #9E795A;
  83. border-color: #9E795A;
  84. border-bottom-color: #9E795A;
  85. color: #ffffff;
  86. display: flex;
  87. align-items: center;
  88. }
  89. .project_description_block {
  90. background-color: #9E795A;
  91. width: 100%;
  92. height: 20vw;
  93. border-radius: 2vw;
  94. }
  95. .project_logo_block {
  96. width: 4.5vw;
  97. height: 4.5vw;
  98. border: 0.3vw solid #ffffff;
  99. background-color: #ffffff;
  100. border-radius: 2vw;
  101. display: flex;
  102. justify-content: center;
  103. align-items: center;
  104. }
  105. .project_logo {
  106. width: 4vw;
  107. height: 4vw;
  108. border-radius: 5vw;
  109. }
  110. .project_title_block {
  111. width: 70%;
  112. height: 4vw;
  113. }
  114. .project_title {
  115. font-size: 3.5vw;
  116. }
  117. .project_button_block_one {
  118. width: 50%;
  119. display: flex;
  120. justify-content: space-evenly;
  121. align-items: flex-start;
  122. }
  123. .project_description {
  124. width: 98%;
  125. height: 100%;
  126. margin-left: 1%;
  127. display: flex;
  128. flex-direction: row;
  129. flex-wrap: nowrap;
  130. align-content: center;
  131. align-items: center;
  132. justify-content: space-evenly;
  133. }
  134. .collaborator_block {
  135. width: 22%;
  136. height: 90%;
  137. background-color: #EDCBB0;
  138. border-radius: 2vw;
  139. overflow-y: auto;
  140. }
  141. .description_block {
  142. width: 48%;
  143. height: 90%;
  144. display: flex;
  145. flex-direction: column;
  146. align-items: center;
  147. flex-wrap: nowrap;
  148. }
  149. .description_header_text {
  150. font-size: 2vw;
  151. }
  152. .description_block_text {
  153. width: 90% !important;
  154. height: 80% !important;
  155. width: 50%;
  156. background-color: #dcb495;
  157. border-radius: 2vw;
  158. }
  159. .description_text {
  160. width: 100% !important;
  161. height: 100%;
  162. font-size: 1.5vw;
  163. overflow-wrap: normal; /* не поддерживает IE, Firefox; является копией word-wrap */
  164. word-wrap: normal;
  165. word-break: normal; /* не поддерживает Opera12.14, значение keep-all не поддерживается IE, Chrome */
  166. line-break: auto; /* нет поддержки для русского языка */
  167. hyphens: manual; /* значение auto не поддерживается Chrome */
  168. margin: 2vw;
  169. }
  170. .user_projects_block {
  171. margin-top: 35px;
  172. margin-left: 3%;
  173. border: 0.2vw solid #694a2d;
  174. border-radius: 4.5vw;
  175. width: 94%;
  176. height: 45vw;
  177. overflow-y: auto;
  178. }
  179. .user {
  180. width: 16vw;
  181. height: 3.5vw;
  182. background-color: #ffffff;
  183. border: 2px solid #9E795A;
  184. border-radius: 3vw;
  185. margin-top: 5px;
  186. display: flex;
  187. align-items: center;
  188. justify-content: flex-start;
  189. flex-direction: row;
  190. flex-wrap: no-wrap;
  191. }
  192. .user_logo {
  193. margin-left: 3px;
  194. width: 3vw;
  195. height: 3vw;
  196. border-radius: 5vw;
  197. background-color: #000000;
  198. }
  199. .user_names {
  200. margin-left: 9px;
  201. margin-top: 10px;
  202. overflow-x: auto;
  203. color: #000000 !important;
  204. }
  205. .link_to_user {
  206. width: 16vw;
  207. height: 3.5vw;
  208. display: flex;
  209. align-items: center;
  210. justify-content: flex-start;
  211. flex-direction: row;
  212. flex-wrap: no-wrap;
  213. text-decoration: none;
  214. }
  215. .link_to_user:hover {
  216. text-decoration: none;
  217. }