2018-10-29 08:45:49 +01:00
|
|
|
.settings {
|
2018-10-27 19:37:28 +02:00
|
|
|
display: flex;
|
2018-10-29 08:45:49 +01:00
|
|
|
justify-content: flex-start;
|
2018-10-29 08:55:24 +01:00
|
|
|
flex-direction: row;
|
2018-10-29 08:45:49 +01:00
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
.pane {
|
2018-10-27 19:37:28 +02:00
|
|
|
border: 1px solid grey;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: #ddd;
|
2018-10-29 08:45:49 +01:00
|
|
|
margin: 1em;
|
|
|
|
min-width: max-content;
|
2018-10-29 08:55:24 +01:00
|
|
|
max-width: 45%;
|
2018-10-29 08:45:49 +01:00
|
|
|
}
|
|
|
|
.userprofile-pane {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
.userprofile {
|
|
|
|
width: 22em;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-10-27 19:37:28 +02:00
|
|
|
}
|
2018-10-29 08:55:24 +01:00
|
|
|
.userpassword-pane {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
.userpassword {
|
|
|
|
width: 22em;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2018-10-27 19:37:28 +02:00
|
|
|
.userprofile span {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2018-10-29 08:55:24 +01:00
|
|
|
.userpassword span {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2018-10-27 19:37:28 +02:00
|
|
|
.attribute {
|
2018-10-27 19:47:45 +02:00
|
|
|
width: 6em;
|
2018-10-27 19:37:28 +02:00
|
|
|
padding: 1em;
|
2018-10-27 19:47:45 +02:00
|
|
|
}
|
|
|
|
.change-attribute-input {
|
2018-10-29 08:45:49 +01:00
|
|
|
text-indent: 1em;
|
|
|
|
color: grey;
|
2018-10-27 19:37:28 +02:00
|
|
|
}
|
|
|
|
.value {
|
|
|
|
padding: 1em;
|
|
|
|
}
|
2018-10-29 08:22:38 +01:00
|
|
|
#saveButton {
|
2018-10-29 08:45:49 +01:00
|
|
|
align-self: flex-end;
|
2018-10-27 19:37:28 +02:00
|
|
|
margin: 1em;
|
|
|
|
}
|