rimgo/static/css/album.css

51 lines
655 B
CSS
Raw Normal View History

2022-12-21 00:35:48 +00:00
p {
margin: 0.4rem 0;
2022-01-17 22:11:33 +00:00
}
2022-10-13 21:29:05 +00:00
.pfp {
border-radius: 100%;
2022-01-18 00:21:43 +00:00
}
2022-10-13 21:29:05 +00:00
.post__media video,
.post__media img {
2022-08-05 00:14:17 +00:00
margin: 1em 0;
2022-01-17 22:11:33 +00:00
max-width: 100%;
2022-08-05 00:14:17 +00:00
max-height: 85vh;
2022-01-17 22:11:33 +00:00
}
2022-10-13 21:29:05 +00:00
.post__media p {
margin-left: 1rem;
align-self: flex-start;
2022-01-18 23:05:06 +00:00
}
2022-01-17 22:11:33 +00:00
.imageMeta__wrapper {
2022-10-13 21:29:05 +00:00
margin-top: 0.5em;
2022-02-02 15:46:47 +00:00
}
.user {
display: flex;
flex-direction: row;
align-items: center;
gap: 5px;
2022-02-21 17:14:00 +00:00
}
.tags {
display: flex;
gap: 10px;
flex-flow: wrap;
2022-10-13 21:29:05 +00:00
margin-top: 1em;
2022-02-21 17:14:00 +00:00
}
.tag {
border-radius: 10px;
padding: 7px;
background-color: rgba(0, 0, 0, 0.15);
background-blend-mode: multiply;
min-width: 110px;
}
.tag__display {
font-weight: 700;
color: #fff;
text-align: center;
2022-01-17 22:11:33 +00:00
}