profile.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. .profile_page {
  2. display: flex;
  3. flex-direction: column;
  4. height: 70vw;
  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: 83%;
  10. width: 85%;
  11. margin-left: 7.5%;
  12. margin-top: 10%;
  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. margin-left: 2%;
  55. }
  56. .form_data_button {
  57. display: flex;
  58. flex-direction: column;
  59. justify-content: center;
  60. align-items: center;
  61. }
  62. .input_data {
  63. color: #000000;
  64. border: 0.1vw solid #595008;
  65. height: 4.5vw;
  66. min-height: 4.5vw;
  67. width: 20vw;
  68. background-color: #dbc3af;
  69. border-radius: 5vw;
  70. font-size: 1.3vw;
  71. display: inline-flex;
  72. align-items: center;
  73. }
  74. .input_button {
  75. width: 10vw;
  76. height: 5vw;
  77. border-radius: 5vw;
  78. vertical-align: middle;
  79. }
  80. .form-label {
  81. font-size: 1.3vw;
  82. color: #ffffff;
  83. font-weight: bold;
  84. }
  85. .profile_button {
  86. margin-top: 15px;
  87. width: 20vw;
  88. height: 5vw;
  89. background-color: #000000;
  90. color: #ffffff;
  91. border-radius: 5vw;
  92. vertical-align: middle;
  93. font-size: 1.5vw;
  94. }
  95. #delete_button {
  96. margin-top: 45px;
  97. }
  98. .dop_data {
  99. padding-top:15px;
  100. padding-left: 15px;
  101. }
  102. #logout_button {
  103. color: #000000;
  104. background-color:#f5d3b8;
  105. }
  106. #logout_button:hover {
  107. text-decoration: none;
  108. color: #000000;
  109. }
  110. .profile_button_text {
  111. width: 100%;
  112. height: 100%;
  113. text-align: center;
  114. font-size: 1.5vw;
  115. margin-top: 6%;
  116. }