| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- .profile_page {
- display: flex;
- flex-direction: column;
- height: 70vw;
- width: 100%;
- 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;
- }
- .profile_block {
- height: 83%;
- width: 85%;
- margin-left: 7.5%;
- margin-top: 10%;
- 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;
- display: flex;
- flex-direction: column;
- overflow-y: auto;
- }
- .header_profile {
- display: inline;
- flex-direction: column;
- width: 15vw;
- height: 15vw;
- margin-top: 50px;
- align-self: center;
- }
- .user_photo {
- width: 15vw;
- height: 15vw;
- border: 0.2vw solid #ffffff;
- border-radius: 2vw;
- }
- .edit_form {
- align-self: center;
- margin-top: 20px;
- width: 80%;
- }
- form {
- display: flex;
- flex-direction: column;
- }
- .form_data_button {
- align-self: center;
- }
- .form_blocks {
- width: 100%;
- margin-top: 50px;
- display: inline-flex;
- justify-content: space-evenly;
- }
- .form_data, .form_data_button {
- display: flex;
- flex-direction: column;
- margin-left: 2%;
- margin-left: 2%;
- }
- .form_data_button {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .input_data {
- color: #000000;
- border: 0.1vw solid #595008;
- height: 4.5vw;
- min-height: 4.5vw;
- width: 20vw;
- background-color: #dbc3af;
- border-radius: 5vw;
- font-size: 1.3vw;
- display: inline-flex;
- align-items: center;
- }
- .input_button {
- width: 10vw;
- height: 5vw;
- border-radius: 5vw;
- vertical-align: middle;
- }
- .form-label {
- font-size: 1.3vw;
- color: #ffffff;
- font-weight: bold;
- }
- .profile_button {
- margin-top: 15px;
- width: 20vw;
- height: 5vw;
- background-color: #000000;
- color: #ffffff;
- border-radius: 5vw;
- vertical-align: middle;
- font-size: 1.5vw;
- }
- #delete_button {
- margin-top: 45px;
- }
- .dop_data {
- padding-top:15px;
- padding-left: 15px;
- }
- #logout_button {
- color: #000000;
- background-color:#f5d3b8;
- }
- #logout_button:hover {
- text-decoration: none;
- color: #000000;
- }
- .profile_button_text {
- width: 100%;
- height: 100%;
- text-align: center;
- font-size: 1.5vw;
- margin-top: 6%;
- }
|