snort/src/element/Note.css

37 lines
604 B
CSS
Raw Normal View History

2022-12-18 14:51:47 +00:00
.note {
margin-bottom: 10px;
border-bottom: 1px solid #333;
}
2022-12-27 23:46:13 +00:00
.note > .header > .pfp {
2022-12-18 14:51:47 +00:00
flex-grow: 1;
}
2022-12-27 23:46:13 +00:00
.note > .header .reply {
2022-12-18 14:51:47 +00:00
font-size: small;
}
.note > .header > .info {
font-size: small;
}
.note > .body {
padding: 10px 5px;
white-space: pre-wrap;
overflow: hidden;
word-break: normal;
}
2023-01-04 11:52:16 +00:00
.note > .body > img, .note > .body > video {
max-width: 100%;
max-height: 500px;
2022-12-27 23:46:13 +00:00
}
2022-12-18 14:51:47 +00:00
.note > .header > img:hover, .note > .header > .name > .reply:hover, .note > .body:hover {
cursor: pointer;
}
2022-12-20 23:14:13 +00:00
.note > .footer {
padding: 10px 0;
text-align: right;
}