snort/packages/app/src/Element/Timeline.css

56 lines
1009 B
CSS
Raw Normal View History

2023-01-21 16:09:35 +00:00
.latest-notes {
cursor: pointer;
2023-02-12 19:02:55 +00:00
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 6px 24px;
gap: 8px;
position: absolute;
width: 261px;
left: calc(50% - 261px / 2 + 0.5px);
top: 0;
color: white;
background: var(--highlight);
box-shadow: 0px 0px 15px rgba(78, 0, 255, 0.6);
border-radius: 100px;
z-index: 42;
2023-02-13 23:11:51 +00:00
opacity: 0.9;
}
.latest-notes-fixed {
position: fixed;
left: calc(50% - 261px / 2 + 0.5px);
top: 12px;
2023-02-12 19:02:55 +00:00
}
@media (max-width: 520px) {
.latest-notes {
width: 200px;
left: calc(50% - 110px);
padding: 6px 12px;
}
2023-02-13 23:17:52 +00:00
.latest-notes-fixed {
2023-02-13 23:20:12 +00:00
width: 200px;
padding: 6px 12px;
2023-02-13 23:17:52 +00:00
position: fixed;
top: 12px;
2023-02-13 23:20:12 +00:00
left: calc(50% - 110px);
2023-02-13 23:17:52 +00:00
}
2023-02-12 19:02:55 +00:00
}
.latest-notes .pfp:not(:last-of-type) {
margin: 0;
margin-right: -26px;
}
.latest-notes .pfp:last-of-type {
margin-right: -8px;
}
.latest-notes .pfp .avatar-wrapper .avatar {
margin: 0;
width: 32px;
height: 32px;
border: 2px solid white;
2023-01-25 18:08:53 +00:00
}