mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-27 15:40:00 +01:00
26 lines
394 B
CSS
26 lines
394 B
CSS
.userprofile {
|
|
width: 30em;
|
|
max-width: 90%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: 1px solid grey;
|
|
border-radius: 5px;
|
|
background-color: #ddd;
|
|
}
|
|
.userprofile span {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
.attribute {
|
|
width: 10em;
|
|
padding: 1em;
|
|
}
|
|
.value {
|
|
padding: 1em;
|
|
}
|
|
#safeButton {
|
|
margin: 1em;
|
|
width: min-content;
|
|
float: right;
|
|
}
|