2020-03-26 11:25:16 +01:00
|
|
|
.settings-content {
|
|
|
|
.main-logo {
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
top:0;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
z-index: 12;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
display: flex;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.nav-item {
|
|
|
|
margin: 0 $size-6;
|
2020-04-14 10:15:39 +02:00
|
|
|
color: $color-gray-30;
|
2020-03-26 11:25:16 +01:00
|
|
|
text-transform: uppercase;
|
|
|
|
border-bottom: 1px solid transparent;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-black;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.current {
|
|
|
|
color: $color-black;
|
|
|
|
border-bottom: 1px solid $color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings-profile,
|
|
|
|
.settings-password {
|
2016-03-03 21:25:19 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 500px;
|
|
|
|
|
2020-03-26 11:25:16 +01:00
|
|
|
.settings-label {
|
2020-03-24 23:25:16 +01:00
|
|
|
color: $color-black;
|
|
|
|
font-size: $fs15;
|
|
|
|
margin: $x-big 0 $x-small 0;
|
|
|
|
padding: $medium 0;
|
2016-03-03 21:25:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.input-text {
|
2020-03-03 13:14:37 +01:00
|
|
|
color: $color-gray-60;
|
2016-03-03 21:25:19 +01:00
|
|
|
}
|
|
|
|
|
2016-03-06 12:14:44 +01:00
|
|
|
.btn-primary {
|
|
|
|
margin-top: $medium;
|
|
|
|
}
|
|
|
|
|
2020-03-24 23:25:16 +01:00
|
|
|
.profile-form,
|
|
|
|
.password-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2016-03-03 21:25:19 +01:00
|
|
|
|
2020-03-24 23:25:16 +01:00
|
|
|
.avatar-form {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2016-04-02 11:17:05 +03:00
|
|
|
|
2020-03-24 23:25:16 +01:00
|
|
|
img {
|
|
|
|
border-radius: 50%;
|
|
|
|
flex-shrink: 0;
|
|
|
|
height: 120px;
|
|
|
|
margin-right: $medium;
|
|
|
|
width: 120px;
|
|
|
|
}
|
2016-03-03 21:25:19 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2020-03-24 23:25:16 +01:00
|
|
|
|