rimgo/static/css/album.css

59 lines
660 B
CSS
Raw Normal View History

2022-01-17 22:11:33 +00:00
h1 {
margin: 0;
}
2022-01-18 00:21:43 +00:00
p {
margin: 0.5em 0;
}
2022-01-18 21:45:57 +00:00
video,
2022-01-17 22:11:33 +00:00
img {
max-width: 100%;
}
2022-01-18 23:05:06 +00:00
.pfp {
border-radius: 100%;
}
2022-01-17 22:11:33 +00:00
.imageMeta__wrapper,
2022-01-18 00:21:43 +00:00
.imageMeta__item,
2022-01-17 22:11:33 +00:00
.imageMeta {
display: flex;
gap: 12px;
2022-01-18 00:21:43 +00:00
align-items: center;
}
.imageMeta__item {
gap: 4px;
2022-01-17 22:11:33 +00:00
}
.imageMeta__wrapper {
2022-02-02 15:46:47 +00:00
gap: 1rem;
}
.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;
}
.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
}