shopping-list/style/settings.css

45 lines
696 B
CSS
Raw Normal View History

2018-10-29 08:45:49 +01:00
.settings {
display: flex;
2018-10-29 08:45:49 +01:00
justify-content: flex-start;
flex-direction: column;
2018-10-29 08:45:49 +01:00
flex-wrap: wrap;
}
.pane {
border: 1px solid grey;
border-radius: 5px;
background-color: #ddd;
2018-10-29 08:45:49 +01:00
margin: 1em;
min-width: max-content;
max-width: 50%;
}
.userprofile-pane {
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.userprofile {
width: 22em;
display: flex;
flex-direction: column;
}
.userprofile span {
display: flex;
flex-direction: row;
align-items: center;
}
.attribute {
2018-10-27 19:47:45 +02:00
width: 6em;
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;
}
.value {
padding: 1em;
}
2018-10-29 08:22:38 +01:00
#saveButton {
2018-10-29 08:45:49 +01:00
align-self: flex-end;
margin: 1em;
}