profile.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. .profile_page {
  2. display: flex;
  3. flex-direction: column;
  4. height: auto;
  5. width: 100%;
  6. background: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8) ), url(../images/back_profile_one.jpg);background-repeat: repeat; background-position: center;
  7. }
  8. .profile_block {
  9. height: 57vw;
  10. width: 85%;
  11. margin-left: 7.5%;
  12. margin-bottom: 6%;
  13. background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url(../images/back_profile_two.jpg);background-repeat: repeat; background-position: center;
  14. display: flex;
  15. flex-direction: column;
  16. overflow-y: auto;
  17. }
  18. .header_profile {
  19. display: inline;
  20. flex-direction: column;
  21. width: 15vw;
  22. height: 15vw;
  23. margin-top: 50px;
  24. align-self: center;
  25. }
  26. .user_photo {
  27. width: 15vw;
  28. height: 15vw;
  29. border: 0.2vw solid #ffffff;
  30. border-radius: 2vw;
  31. }
  32. .edit_form {
  33. align-self: center;
  34. margin-top: 20px;
  35. width: 80%;
  36. }
  37. form {
  38. display: flex;
  39. flex-direction: column;
  40. }
  41. .form_data_button {
  42. align-self: center;
  43. }
  44. .form_blocks {
  45. width: 100%;
  46. margin-top: 50px;
  47. display: inline-flex;
  48. justify-content: space-evenly;
  49. }
  50. .form_data, .form_data_button {
  51. display: flex;
  52. flex-direction: column;
  53. margin-left: 2%;
  54. }
  55. .form_data_button {
  56. display: flex;
  57. flex-direction: column;
  58. justify-content: center;
  59. align-items: center;
  60. }
  61. .input_data {
  62. color: #000000;
  63. border: 0.1vw solid #595008;
  64. height: 4.5vw;
  65. min-height: 4.5vw;
  66. width: 20vw;
  67. background-color: #dbc3af;
  68. border-radius: 5vw;
  69. font-size: 1.3vw;
  70. display: inline-flex;
  71. align-items: center;
  72. }
  73. .input_button {
  74. width: 10vw;
  75. height: 5vw;
  76. border-radius: 5vw;
  77. vertical-align: middle;
  78. }
  79. .form-label {
  80. font-size: 1.3vw;
  81. color: #ffffff;
  82. font-weight: bold;
  83. }
  84. .profile_button {
  85. margin-top: 15px;
  86. width: 20vw;
  87. height: 5vw;
  88. background-color: #000000;
  89. color: #ffffff;
  90. border-radius: 5vw;
  91. vertical-align: middle;
  92. font-size: 1.5vw;
  93. }
  94. #delete_button {
  95. margin-top: 45px;
  96. }
  97. .dop_data {
  98. padding-top:15px;
  99. padding-left: 15px;
  100. }
  101. #logout_button {
  102. color: #000000;
  103. background-color:#f5d3b8;
  104. }
  105. #logout_button:hover {
  106. text-decoration: none;
  107. color: #000000;
  108. }
  109. .profile_button_text {
  110. width: 100%;
  111. height: 100%;
  112. text-align: center;
  113. font-size: 1.5vw;
  114. margin-top: 6%;
  115. }
  116. .open_button_block {
  117. height: 35vw;
  118. width: 85%;
  119. margin-left: 7.5%;
  120. margin-top: 3%;
  121. margin-bottom: 6%;
  122. background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url(../images/back_profile_two.jpg);background-repeat: repeat; background-position: center;
  123. display: flex;
  124. flex-direction: column;
  125. overflow-y: auto;
  126. }
  127. .open_button_content {
  128. display: flex;
  129. flex-direction: column;
  130. width: 100%;
  131. height: 100%;
  132. justify-content: center;
  133. align-items: center;
  134. }
  135. .open_button_title {
  136. margin-bottom: 3%;
  137. color: #ffffff;
  138. font: bold;
  139. font-size: 4.5vw;
  140. }
  141. .open_button_article {
  142. margin-bottom: 5%;
  143. color: #ffffff;
  144. font: bold;
  145. font-size: 2vw;
  146. }
  147. .open_button {
  148. background-color: #ffffff;
  149. color: #000000;
  150. width: 20vw;
  151. height: 5vw;
  152. vertical-align: middle;
  153. border-radius: 5vw;
  154. }
  155. .open_button:hover {
  156. text-decoration: none;
  157. color: #000000;
  158. }
  159. .open_button_text {
  160. width: 100%;
  161. height: 100%;
  162. text-align: center;
  163. font-size: 1.5vw;
  164. margin-top: 5%;
  165. }
  166. .about {
  167. border-radius: 2vw !important;
  168. }