picture-display/src/pictures/static/pictures/list.css

31 lines
497 B
CSS
Raw Normal View History

2021-01-24 16:01:36 +01:00
.message {
display: flex;
flex-direction: row;
margin-bottom: 2em;
}
.message .picture-preview {
flex-grow: 0;
}
.picture-preview > * {
height: 200px;
width: 200px;
object-fit: cover;
2021-01-24 16:31:13 +01:00
background-color: var(--background-3);
2021-01-24 16:01:36 +01:00
border-radius: 5px;
2021-01-24 16:31:13 +01:00
display: block ;
2021-01-24 16:01:36 +01:00
}
.message .content-block {
flex-grow: 1;
margin-left: 1em;
2021-01-24 16:31:13 +01:00
margin-top: 1em;
2021-01-24 16:01:36 +01:00
}
2021-01-24 16:07:14 +01:00
.message {
cursor: pointer;
2021-01-24 16:31:13 +01:00
background-color: var(--background-2);
border-radius: 5px;
2021-01-24 16:07:14 +01:00
}