profile.css 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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: 80%;
  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. }
  17. .header_profile {
  18. display: inline;
  19. flex-direction: column;
  20. width: 15vw;
  21. height: 15vw;
  22. margin-top: 50px;
  23. align-self: center;
  24. }
  25. .user_photo {
  26. width: 15vw;
  27. height: 15vw;
  28. border: 0.2vw solid #ffffff;
  29. border-radius: 2vw;
  30. }
  31. .edit_form {
  32. align-self: center;
  33. margin-top: 20px;
  34. width: 80%;
  35. }
  36. form {
  37. display: flex;
  38. flex-direction: column;
  39. }
  40. .form_data_button {
  41. align-self: center;
  42. }
  43. .form_blocks {
  44. width: 100%;
  45. margin-top: 50px;
  46. display: inline-flex;
  47. justify-content: space-evenly;
  48. }
  49. .form_data, .form_data_button {
  50. display: flex;
  51. flex-direction: column;
  52. margin-left: 2%;
  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. width: 20vw;
  66. background-color: #dbc3af;
  67. border-radius: 5vw;
  68. font-size: 1.3vw;
  69. display: inline-flex;
  70. align-items: center;
  71. }
  72. .input_button {
  73. width: 10vw;
  74. height: 5vw;
  75. border-radius: 5vw;
  76. vertical-align: middle;
  77. }
  78. .form-label {
  79. font-size: 1.3vw;
  80. color: #ffffff;
  81. font-weight: bold;
  82. }
  83. .profile_button {
  84. margin-top: 15px;
  85. width: 20vw;
  86. height: 5vw;
  87. background-color: #000000;
  88. color: #ffffff;
  89. border-radius: 5vw;
  90. vertical-align: middle;
  91. font-size: 1.5vw;
  92. }
  93. #delete_button {
  94. margin-top: 45px;
  95. }