mirror of
https://git.sr.ht/~roxwize/mipilin
synced 2025-01-31 02:53:36 +00:00
63 lines
977 B
CSS
63 lines
977 B
CSS
|
form * {
|
||
|
display: block;
|
||
|
margin: 4px 0;
|
||
|
}
|
||
|
form *:first-child {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
form *:last-child {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
.feed-update {
|
||
|
background-color: #d5d4bb;
|
||
|
height: fit-content;
|
||
|
word-wrap: break-word;
|
||
|
}
|
||
|
.feed-update div:first-child {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
.feed-update div:last-child {
|
||
|
text-align: right;
|
||
|
color: #3f3f38;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
#dashboard-update-form * {
|
||
|
width: 50%;
|
||
|
min-width: 128px;
|
||
|
}
|
||
|
|
||
|
#dashboard-profile * {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
#dashboard-mood-history {
|
||
|
margin: 0;
|
||
|
list-style-type: none;
|
||
|
padding-inline-start: 0;
|
||
|
}
|
||
|
#dashboard-mood-history li {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
@media screen and (min-width: 900px) {
|
||
|
#dashboard-feed {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
gap: 12px;
|
||
|
}
|
||
|
.feed-update {
|
||
|
padding: 4px;
|
||
|
width: 280px;
|
||
|
}
|
||
|
}
|
||
|
@media screen and (max-width: 900px) {
|
||
|
.feed-update {
|
||
|
border-bottom: 1px solid #afa870;
|
||
|
padding: 8px;
|
||
|
}
|
||
|
}
|